/* ===================================================================
   V SQUARE INFRA — Premium dark-navy industrial UI
   ===================================================================
   Palette (per brief):
     --ink            #0B1F4D  primary background (deep royal navy)
     --ink-2          #111827  secondary background (charcoal blue-black)
     --orange         #FF6B00  accent (construction orange from logo)
     --orange-2       #FF8B33  hover / soft orange
     --text           #F5F7FA  main text (soft white)
     --text-soft      #C7D2E0  paragraph
     --glow-blue      rgba(29,63,175,.35)  subtle glow / borders
     --glass          rgba(255,255,255,.06)
     --glass-line     rgba(255,255,255,.10)
   =================================================================== */
:root {
  --ink:        #163677;
  --ink-2:      #1B2A44;
  --ink-3:      #112047;
  --orange:     #FF6B00;
  --orange-2:   #FF8B33;
  --text:       #F5F7FA;
  --text-soft:  #C7D2E0;
  --text-mute:  rgba(199,210,224,.6);
  --glow-blue:  rgba(29,63,175,.35);
  --glass:      rgba(255,255,255,.06);
  --glass-line: rgba(255,255,255,.10);
  --glass-line-hi: rgba(255,255,255,.18);
  --shadow:     0 18px 40px -16px rgba(0,0,0,.55);
  --shadow-lg:  0 40px 80px -28px rgba(0,0,0,.65);
  --radius:     14px;
  --radius-lg:  22px;
  --nav-h:      78px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--ink);
  color: var(--text-soft);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

/* === Buttons ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .95rem 1.6rem;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 10px;
  transition: transform .2s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn--cta {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 28px -10px rgba(255,107,0,.55), inset 0 0 0 1px rgba(255,255,255,.08);
}
.btn--cta:hover, .btn--cta:focus {
  background: var(--orange-2);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -12px rgba(255,107,0,.7), 0 0 0 1px rgba(255,138,51,.5), 0 0 32px -4px rgba(255,107,0,.35);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--glass-line-hi);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: var(--glass);
  border-color: rgba(255,255,255,.35);
}
.btn--block { width: 100%; justify-content: center; }

/* === Nav ================================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.nav.is-scrolled {
  background: rgba(22,54,119,.82);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--glass-line);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.6);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  gap: 24px;
}
.nav__cta { margin-left: auto; }
/* === Standalone brand mark — floats top-left, sized independently of the nav ===
   Big at the top (home view), shrinks slightly when user scrolls. */
.brand-mark {
  position: fixed;
  top: 14px;
  left: 40px;
  z-index: 101;
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  background: rgba(245,247,250,.94);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 14px;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 10px 28px -14px rgba(0,0,0,.45), inset 0 0 0 1px rgba(255,255,255,.4);
  transition: padding .3s ease, top .3s ease, background .3s ease, box-shadow .3s ease, transform .2s ease;
}
.brand-mark:hover { transform: translateY(-1px); }
.brand-mark img {
  height: 72px;
  width: auto;
  display: block;
  transition: height .3s ease;
}
.brand-mark.is-scrolled {
  top: 10px;
  padding: 7px 14px;
  background: rgba(245,247,250,.98);
  box-shadow: 0 14px 34px -16px rgba(0,0,0,.55), inset 0 0 0 1px rgba(255,255,255,.5);
}
.brand-mark.is-scrolled img { height: 48px; }
.nav__links {
  display: flex;
  gap: 6px;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav__links a {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-soft);
  padding: 10px 18px;
  position: relative;
  transition: color .2s ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 50%; right: 50%;
  bottom: 4px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: left .25s ease, right .25s ease;
}
.nav__links a:hover,
.nav__links a:focus,
.nav__links a.is-active {
  color: var(--text);
}
.nav__links a:hover::after,
.nav__links a:focus::after,
.nav__links a.is-active::after {
  left: 18px; right: 18px;
}
.nav__cta { padding: .7rem 1.2rem; font-size: .76rem; }
.nav__burger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--glass-line);
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: var(--glass);
  backdrop-filter: blur(8px);
}
.nav__burger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--text);
  transition: transform .25s ease, opacity .25s ease;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === Typography helpers ================================================= */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 16px;
}
.eyebrow__bar {
  display: inline-block;
  width: 38px; height: 2px;
  background: var(--orange);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(255,107,0,.6);
}
.eyebrow--orange { color: var(--orange-2); }

.display {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -.014em;
  color: var(--text);
  margin-bottom: 18px;
}
.display .accent { color: var(--orange); }
.display .nowrap { white-space: nowrap; }

/* === Sections =========================================================== */
.section {
  padding: 130px 0;
  position: relative;
  background: var(--ink);
}
.section--alt {
  background: var(--ink-2);
}
.section--alt::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 10%, var(--glow-blue), transparent 50%);
  pointer-events: none;
}
.section > .container { position: relative; z-index: 1; }
.section__head {
  margin-bottom: 70px;
  max-width: 760px;
}
.section__head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section__head--center .eyebrow { justify-content: center; }
.section__sub {
  font-size: 1.02rem;
  color: var(--text-mute);
  margin-top: 14px;
}

/* === About / Story ====================================================== */
.about {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__copy p { color: var(--text-soft); margin-bottom: 16px; }
.about__copy p strong { color: var(--text); font-weight: 600; }
.about__points {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 26px;
}
.about__points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: var(--glass);
  border: 1px solid var(--glass-line);
  border-radius: 12px;
  backdrop-filter: blur(6px);
  color: var(--text);
  font-size: .92rem;
  transition: background .2s ease, border-color .2s ease, transform .15s ease;
}
.about__points li:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,107,0,.4);
  transform: translateY(-2px);
}
.about__points li i { color: var(--orange); margin-top: 4px; }

.about__media { position: relative; }
.about__frame {
  background: var(--glass);
  border: 1px solid var(--glass-line);
  border-radius: var(--radius-lg);
  padding: 14px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  animation: aboutFloat 7s ease-in-out infinite;
  transition: transform .5s ease, box-shadow .5s ease;
}
.about__frame:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px -20px rgba(255,107,0,.35), var(--shadow-lg);
}
.about__frame::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,107,0,.4), transparent 35%, var(--glow-blue) 70%, transparent);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.about__frame img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: contain;
  border-radius: 14px;
  filter: saturate(.95) contrast(1.02);
  background: rgba(255,255,255,.02);
  animation: aboutKenBurns 14s ease-in-out infinite alternate;
  transform-origin: center center;
  transition: filter .5s ease;
}
.about__frame:hover img {
  filter: saturate(1.05) contrast(1.05);
}
@keyframes aboutKenBurns {
  0%   { transform: scale(1)    translate(0, 0); }
  50%  { transform: scale(1.05) translate(-1%, .5%); }
  100% { transform: scale(1.08) translate(1%, -.5%); }
}
@keyframes aboutFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes aboutStampSpin {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .about__frame, .about__frame img, .about__stamp::before { animation: none !important; }
}
.about__stamp {
  position: absolute;
  right: -24px; top: -24px;
  width: 132px; height: 132px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  text-align: center;
  box-shadow: 0 18px 40px -12px rgba(255,107,0,.55);
}
.about__stamp::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,.35);
  animation: aboutStampSpin 18s linear infinite;
}
.about__stamp strong { font-size: 1.6rem; font-weight: 700; line-height: 1; }
.about__stamp span { font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; margin-top: 6px; }

/* === Today ============================================================== */
.today {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: start;
}
.today__copy p { color: var(--text-soft); margin-top: 8px; }
.today__sub {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .16em;
  color: var(--orange);
  text-transform: uppercase;
  margin: 28px 0 14px;
}
.today__list { list-style: none; display: grid; gap: 12px; }
.today__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--glass);
  border: 1px solid var(--glass-line);
  border-left: 3px solid var(--orange);
  border-radius: 10px;
  backdrop-filter: blur(6px);
  color: var(--text);
  transition: background .2s, transform .15s;
}
.today__list li:hover {
  background: rgba(255,255,255,.10);
  transform: translateX(4px);
}
.today__list li i { color: var(--orange); margin-top: 4px; flex-shrink: 0; }
.quote-card {
  background: var(--glass);
  border: 1px solid var(--glass-line);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.quote-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--orange), transparent);
}
.quote-card__mark {
  color: var(--orange);
  font-size: 2.4rem;
  margin-bottom: 14px;
  opacity: .7;
}
.quote-card__text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 14px;
}
.quote-card__sub { color: var(--text-soft); font-size: .94rem; }
.today__side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.today__media {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-line);
  background: var(--glass);
  padding: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
  animation: aboutFloat 8s ease-in-out infinite;
  transition: transform .5s ease, box-shadow .5s ease;
}
.today__media::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, var(--glow-blue), transparent 40%, rgba(255,107,0,.4) 80%, transparent);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.today__media img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255,255,255,.02);
  filter: saturate(.95) contrast(1.02);
  animation: aboutKenBurns 16s ease-in-out infinite alternate;
  transform-origin: center center;
  transition: filter .5s ease;
}
.today__media:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px -20px rgba(0,148,255,.30), var(--shadow-lg);
}
.today__media:hover img { filter: saturate(1.05) contrast(1.05); }
@media (prefers-reduced-motion: reduce) {
  .today__media, .today__media img { animation: none !important; }
}

/* === Strengths ========================================================== */
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.strength {
  background: var(--glass);
  border: 1px solid var(--glass-line);
  border-radius: var(--radius);
  padding: 26px 22px;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.strength::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.strength:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.09);
  border-color: rgba(255,107,0,.35);
  box-shadow: var(--shadow);
}
.strength:hover::after { transform: scaleX(1); }
.strength__icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: rgba(255,107,0,.12);
  color: var(--orange);
  border: 1px solid rgba(255,107,0,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 18px;
  transition: background .2s, transform .25s;
}
.strength:hover .strength__icon {
  background: var(--orange);
  color: #fff;
  transform: rotate(-5deg);
}
.strength h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .02em;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 6px;
}
.strength p { color: var(--text-mute); font-size: .85rem; line-height: 1.55; }

/* === Directors ========================================================== */
.directors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.director {
  background: var(--glass);
  border: 1px solid var(--glass-line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 30px;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.director::before {
  content: "";
  position: absolute;
  left: 0; top: 0; right: 0;
  height: 4px;
  background: var(--orange);
  box-shadow: 0 0 14px rgba(255,107,0,.6);
  z-index: 2;
}
.director:hover {
  transform: translateY(-4px);
  border-color: rgba(255,107,0,.35);
  box-shadow: var(--shadow-lg);
}
.director > * { position: relative; z-index: 1; }

.director__main {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.director__bio {
  color: var(--text-soft);
  font-size: .95rem;
  line-height: 1.65;
  flex: 1;
}
.director__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--glass-line);
}
.director__meta span {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.director__meta i { color: var(--orange); }

.director__side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding-left: 24px;
  border-left: 1px solid var(--glass-line);
  text-align: center;
}
.director__avatar {
  width: 150px; height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, #cc5500 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: .04em;
  box-shadow: 0 18px 36px -12px rgba(255,107,0,.55), inset 0 0 0 4px rgba(255,255,255,.1);
  position: relative;
}
.director__avatar::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(255,107,0,.35);
}
.director__avatar--alt {
  background: linear-gradient(135deg, #2A3A6A 0%, var(--ink) 100%);
  color: var(--orange);
  box-shadow: 0 18px 36px -12px rgba(11,31,77,.6), inset 0 0 0 4px var(--glass-line);
}
.director__avatar--alt::after {
  border-color: rgba(29,63,175,.35);
}
.director__id { display: flex; flex-direction: column; gap: 6px; }
.director__name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text);
  letter-spacing: -.005em;
  margin: 0;
}
.director__role {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0;
}

/* === Expertise ========================================================== */
.expertise {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service {
  background: var(--glass);
  border: none;
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  background-clip: padding-box;
  transition: transform .35s ease, box-shadow .35s ease;
}
.service__corner {
  position: absolute;
  right: -20px; top: -20px;
  width: 80px; height: 80px;
  background: var(--glow-blue);
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0;
  transition: opacity .35s;
}
.service:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -20px rgba(255,107,0,.45), var(--shadow-lg);
}
.service:hover .service__corner { opacity: 1; }
.service__icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,107,0,.18), rgba(255,107,0,.04));
  color: var(--orange);
  border: 1px solid rgba(255,107,0,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 22px;
}
.service h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 6px;
}
.service__tag {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.service p:last-of-type { color: var(--text-mute); font-size: .92rem; }

/* Service card with full-cover background image */
.service--bg {
  background-image: none;
  isolation: isolate;
}
.service--bg::after {
  content: "";
  position: absolute;
  inset: -12px;
  background-image: var(--service-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(2px);
  z-index: -2;
  pointer-events: none;
}

/* Tighter spacing + bigger cards for the Services section */
#services { padding: 70px 0 70px; }
#services .section__head { margin-bottom: 32px; }
.expertise .service { min-height: 280px; }
.service--bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8,18,46,.32);
  z-index: -1;
  transition: background .3s ease;
}
.service--bg > * { position: relative; }
.service--bg .service__tag { color: #ffb070; }
.service--bg p:last-of-type { color: rgba(255,255,255,.85); }
.service--bg .service__icon {
  background: linear-gradient(135deg, rgba(255,107,0,.35), rgba(255,107,0,.12));
  border-color: rgba(255,107,0,.55);
  color: #fff;
  box-shadow: 0 8px 22px -8px rgba(255,107,0,.55);
}
.service--bg:hover::before {
  background: rgba(8,18,46,.18);
}
.service--bg .service__icon,
.service--bg h3,
.service--bg .service__tag,
.service--bg p:last-of-type {
  text-shadow: 0 2px 12px rgba(0,0,0,.65);
}

/* === Projects / Work Ledger ============================================ */
.work__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 36px;
}
.work__filter {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--glass-line);
  color: var(--text-soft);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 11px 18px 11px 16px;
  border-radius: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(8px);
  transition: color .25s ease, border-color .25s ease, background .25s ease,
              transform .25s ease, box-shadow .25s ease;
}
.work__filter::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.work__filter[data-filter="all"]::before      { background: var(--orange); box-shadow: 0 0 10px rgba(255,107,0,.6); }
.work__filter[data-filter="completed"]::before { background: #4ade80; box-shadow: 0 0 10px rgba(74,222,128,.55); }
.work__filter[data-filter="ongoing"]::before   { background: #fbbf24; box-shadow: 0 0 10px rgba(251,191,36,.6); animation: workPulseAmber 1.6s ease-in-out infinite; }
.work__filter:hover {
  color: var(--text);
  border-color: rgba(255,255,255,.22);
  transform: translateY(-2px);
}
.work__filter.is-active {
  color: #fff;
  transform: translateY(-2px);
}
.work__filter.is-active[data-filter="all"] {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  border-color: transparent;
  box-shadow: 0 14px 32px -10px rgba(255,107,0,.6);
}
.work__filter.is-active[data-filter="completed"] {
  background: linear-gradient(135deg, #4ade80, #22c97a);
  border-color: transparent;
  box-shadow: 0 14px 32px -10px rgba(74,222,128,.55);
}
.work__filter.is-active[data-filter="ongoing"] {
  background: linear-gradient(135deg, #fbbf24, #d97706);
  border-color: transparent;
  box-shadow: 0 14px 32px -10px rgba(245,158,11,.6);
}
.work__filter.is-active::before {
  background: #fff !important;
  box-shadow: 0 0 0 4px rgba(255,255,255,.22) !important;
}
.work__count {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .72rem;
  letter-spacing: .04em;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: var(--text-soft);
  min-width: 30px;
  text-align: center;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}
.work__filter.is-active .work__count {
  background: rgba(255,255,255,.25);
  color: #fff;
  font-weight: 700;
}

.work__ledger {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 32px;
  border-top: 1px solid var(--glass-line);
}
.work__row {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 14px 14px;
  border-bottom: 1px solid var(--glass-line);
  transition: background .3s ease, padding .3s ease;
  overflow: hidden;
}
.work__row::before {
  content: "";
  position: absolute;
  left: 0; top: 18%;
  width: 2px; height: 64%;
  background: var(--orange);
  border-radius: 3px;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform .3s ease;
}
.work__row:hover {
  background: rgba(255,255,255,.035);
  padding-left: 18px;
}
.work__row:hover::before { transform: scaleY(1); }

.work__num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: -.02em;
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(255,255,255,.22);
  transition: color .25s ease, -webkit-text-stroke-color .25s ease;
  min-width: 36px;
}
.work__row:hover .work__num {
  color: var(--orange);
  -webkit-text-stroke-color: var(--orange);
}

.work__body { min-width: 0; }
.work__title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
  margin: 0 0 3px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.work__meta {
  color: var(--text-mute);
  font-size: .78rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.work__client {
  color: var(--text-soft);
  font-weight: 600;
  letter-spacing: .03em;
  flex-shrink: 0;
}
.work__dot {
  width: 3px; height: 3px;
  background: var(--text-mute);
  border-radius: 50%;
  opacity: .55;
  display: inline-block;
  flex-shrink: 0;
}

.work__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid;
  white-space: nowrap;
}
.work__status i.fa-circle-check { font-size: .7rem; }
.work__status--done {
  color: #4ade80;
  border-color: rgba(74,222,128,.35);
  background: rgba(74,222,128,.08);
}
.work__status--ongoing {
  color: #2a1a00;
  border-color: #f59e0b;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  box-shadow: 0 8px 22px -6px rgba(245,158,11,.55);
  padding: 5px 11px;
}
.work__status--ongoing i {
  width: 7px; height: 7px;
  background: #2a1a00;
  border-radius: 50%;
  display: inline-block;
  animation: workPulseAmberDark 1.6s ease-in-out infinite;
}
@keyframes workPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,158,11,.7); transform: scale(1); }
  50%      { box-shadow: 0 0 0 6px rgba(245,158,11,0); transform: scale(1.15); }
}
@keyframes workPulseAmber {
  0%, 100% { box-shadow: 0 0 0 0 rgba(251,191,36,.7), 0 0 10px rgba(251,191,36,.6); transform: scale(1); }
  50%      { box-shadow: 0 0 0 6px rgba(251,191,36,0), 0 0 10px rgba(251,191,36,.6); transform: scale(1.15); }
}
@keyframes workPulseAmberDark {
  0%, 100% { box-shadow: 0 0 0 0 rgba(42,26,0,.6); transform: scale(1); }
  50%      { box-shadow: 0 0 0 5px rgba(42,26,0,0); transform: scale(1.2); }
}
@keyframes workPulseLight {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,.85); transform: scale(1); }
  50%      { box-shadow: 0 0 0 6px rgba(255,255,255,0);  transform: scale(1.2); }
}

.work__arrow {
  color: var(--text-mute);
  font-size: .9rem;
  transform: translateX(-6px);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease, color .3s ease;
}
.work__row:hover .work__arrow {
  transform: translateX(0);
  opacity: 1;
  color: var(--orange);
}

.work__row.is-hidden { display: none; }
.work__row.is-enter { animation: workRowEnter .45s ease both; }
@keyframes workRowEnter {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.work__empty {
  padding: 60px 20px;
  text-align: center;
  color: var(--text-mute);
  border: 1px dashed var(--glass-line);
  border-radius: var(--radius);
}

@media (prefers-reduced-motion: reduce) {
  .work__row, .work__row::before, .work__num, .work__arrow,
  .work__status--ongoing i, .work__row.is-enter {
    transition: none !important;
    animation: none !important;
  }
}

/* === Contact ============================================================ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 36px;
  margin-top: 20px;
}
.contact__info {
  background: linear-gradient(135deg, var(--ink-2) 0%, var(--ink) 100%);
  border: 1px solid var(--glass-line);
  color: var(--text);
  border-radius: var(--radius-lg);
  padding: 42px 36px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.contact__info::after {
  content: "";
  position: absolute;
  right: -60px; bottom: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,0,.35), transparent 65%);
  filter: blur(20px);
}
.contact__info h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.contact__lead { color: var(--text-soft); margin-bottom: 28px; }
.contact__item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--glass-line);
  position: relative;
  z-index: 1;
}
.contact__item:last-child { border-bottom: 0; }
.contact__item > i {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,107,0,.15);
  color: var(--orange);
  border: 1px solid rgba(255,107,0,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.contact__item strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.contact__item p { color: var(--text-soft); font-size: .94rem; line-height: 1.55; }
.contact__item a { color: var(--text); }
.contact__item a:hover { color: var(--orange-2); }

.contact__form {
  background: var(--glass);
  border: 1px solid var(--glass-line);
  border-radius: var(--radius-lg);
  padding: 42px 36px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
.contact__form h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--text);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 8px;
}
.field input, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--glass-line);
  border-radius: 10px;
  background: rgba(8,15,35,.5);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-mute); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(8,15,35,.7);
  box-shadow: 0 0 0 4px rgba(255,107,0,.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-status {
  margin-top: 14px;
  font-size: .9rem;
  color: var(--orange-2);
  min-height: 1.2em;
  font-weight: 600;
}

/* === Footer ============================================================= */
.footer {
  background: var(--ink-3);
  color: var(--text-mute);
  padding: 38px 0;
  border-top: 1px solid var(--glass-line);
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: .6;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__brand { display: flex; align-items: center; gap: 16px; }
.footer__brand img { height: 42px; }
.footer__brand p {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.footer__copy { font-size: .86rem; }
.footer__copy a { color: var(--orange-2); }
.footer__copy a:hover { color: var(--orange); }

/* === Back to top ======================================================== */
.back-to-top {
  position: fixed;
  right: 26px; bottom: 26px;
  z-index: 60;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 32px -10px rgba(255,107,0,.6);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .25s, transform .25s, background .2s;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.back-to-top:hover { background: var(--orange-2); }

/* === Reveal animations ================================================== */
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.js-reveal .reveal.is-visible,
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* === Responsive ========================================================= */
@media (max-width: 1100px) {
  .strengths-grid { grid-template-columns: repeat(3,1fr); }
  .expertise { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 980px) {
  .about, .today, .contact { grid-template-columns: 1fr; gap: 48px; }
  .directors { grid-template-columns: 1fr; }
  .section { padding: 90px 0; }
  .work__ledger { grid-template-columns: 1fr; column-gap: 0; }
}
@media (max-width: 760px) {
  .nav__links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    background: rgba(22,54,119,.96);
    backdrop-filter: blur(16px);
    padding: 14px 24px 20px;
    transform: translateX(0) translateY(-130%);
    border-bottom: 1px solid var(--glass-line);
    transition: transform .25s ease;
    left: 0 !important;
    transform: translateY(-130%) !important;
  }
  .nav__links.is-open { transform: translateY(0) !important; }
  .nav__links a { padding: 14px 0; border-bottom: 1px solid var(--glass-line); }
  .nav__links a:last-child { border-bottom: 0; }
  .nav__links a::after { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .strengths-grid { grid-template-columns: repeat(2,1fr); }
  .expertise { grid-template-columns: 1fr; }
  .about__points { grid-template-columns: 1fr; }
  /* Work ledger: 1 column on mobile, stacked rows */
  .work__ledger { grid-template-columns: 1fr; column-gap: 0; }
  .work__row {
    grid-template-columns: auto 1fr auto;
    gap: 12px 14px;
    padding: 14px 12px;
  }
  .work__row:hover { padding-left: 16px; }
  .work__title { white-space: normal; }
  .work__meta { white-space: normal; }
  .work__arrow { display: none; }
  .work__filters { width: 100%; justify-content: space-between; }
  .work__filter { flex: 1 1 0; justify-content: center; padding: 10px 12px; font-size: .76rem; }
  .footer__inner { flex-direction: column; text-align: center; }
  /* Stack director's two halves on mobile */
  .director { grid-template-columns: 1fr; }
  .director__side {
    padding-left: 0;
    padding-top: 24px;
    border-left: 0;
    border-top: 1px solid var(--glass-line);
  }
}
@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .strengths-grid { grid-template-columns: 1fr; }
  .about__stamp { width: 100px; height: 100px; right: -10px; top: -10px; }
  .about__stamp strong { font-size: 1.3rem; }
  .section { padding: 70px 0; }
}
