:root {
  --ink: #0a1620;
  --ink-2: #122433;
  --steel: #8fa3b0;
  --mist: #e8eef1;
  --paper: #f4f7f8;
  --line: #cfd9df;
  --accent: #d9772f;
  --accent-2: #f0a35a;
  --cyan: #1aa7c2;
  --cyan-2: #7ad4e6;
  --white: #fff;
  --max: 1200px;
  --header: 78px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(26, 167, 194, .12), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(217, 119, 47, .10), transparent 55%),
    linear-gradient(180deg, #f7fafb 0%, var(--paper) 40%, #eef3f5 100%);
  font-family: Sora, system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.site-header {
  height: var(--header);
  padding: 0 max(20px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(207, 217, 223, .7);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  font: 700 2.1rem/1 "Archivo Narrow", sans-serif;
  letter-spacing: .04em;
  color: var(--ink);
  border-right: 3px solid var(--accent);
  padding-right: 12px;
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-copy strong {
  font: 600 .95rem "Archivo Narrow", sans-serif;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.brand-copy small {
  font-size: .65rem;
  color: #667985;
  letter-spacing: .08em;
  margin-top: 3px;
}
.header-right { display: flex; align-items: center; gap: 18px; }
.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  background: #fff;
}
.lang-switch button {
  border: 0;
  background: transparent;
  font: 600 .72rem Sora, sans-serif;
  letter-spacing: .08em;
  padding: 8px 11px;
  cursor: pointer;
  color: #6a7c88;
}
.lang-switch button.is-active {
  background: var(--ink);
  color: #fff;
}
#site-nav { display: flex; align-items: center; gap: 22px; }
#site-nav a {
  font-size: .84rem;
  font-weight: 600;
  opacity: .88;
}
#site-nav a:hover { opacity: 1; color: #0c7f96; }
.nav-cta {
  border: 1px solid var(--ink);
  padding: 9px 15px !important;
}
.menu-button {
  display: none;
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 12px;
  font: 600 .8rem Sora, sans-serif;
}

.hero {
  min-height: calc(100vh - var(--header));
  max-height: 920px;
  position: relative;
  color: #fff;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: hero ken 18s ease-in-out infinite alternate;
}
@keyframes ken {
  from { transform: scale(1.04) translate3d(0,0,0); }
  to { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(6,16,26,.94) 0%, rgba(6,16,26,.72) 38%, rgba(6,16,26,.28) 68%, rgba(6,16,26,.12) 100%),
    linear-gradient(0deg, rgba(6,16,26,.55), transparent 40%);
}
.hero-scan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(122, 212, 230, .03) 3px,
    rgba(122, 212, 230, .03) 4px
  );
  mix-blend-mode: screen;
  animation: scanPulse 5s ease-in-out infinite;
}
@keyframes scanPulse {
  0%, 100% { opacity: .35; }
  50% { opacity: .7; }
}
.hero-content {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 120px;
  padding-top: 80px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--accent-2);
  margin: 0 0 18px;
}
.eyebrow.dark { color: #b86420; }
.hero h1,
.section-pad h2 {
  font-family: "Archivo Narrow", sans-serif;
  text-transform: uppercase;
  line-height: .95;
  margin: 0;
  letter-spacing: -.01em;
}
.hero h1 {
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  max-width: 920px;
  animation: rise .9s var(--ease) both;
}
.hero h1 > span:not(.hero-rule) { color: var(--cyan-2); }
.hero h1 .hero-rule {
  display: block;
  width: 3.2rem;
  height: 1px;
  margin: .28em 0 .32em;
  background: rgba(255, 255, 255, .18);
  border: 0;
  padding: 0;
}
.hero-lead {
  font-size: 1.08rem;
  max-width: 680px;
  color: #d5e1e7;
  margin: 26px 0 30px;
  animation: rise .9s var(--ease) .12s both;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: rise .9s var(--ease) .2s both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: .88rem;
  padding: 13px 20px;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--accent); color: #1a1008; }
.button.primary:hover { background: #f08a3e; }
.button.secondary { border-color: rgba(255,255,255,.45); color: #fff; }
.button.secondary:hover { background: #fff; color: var(--ink); }

.hero-facts {
  position: absolute;
  bottom: 0;
  right: max(20px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(720px, calc(100% - 40px));
  background: rgba(8, 18, 28, .92);
  border-top: 2px solid var(--accent);
  padding: 18px 22px;
  backdrop-filter: blur(8px);
}
.hero-facts div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border-right: 1px solid #314554;
}
.hero-facts div:last-child { border: 0; }
.hero-facts strong {
  font: 600 2rem "Archivo Narrow", sans-serif;
  color: var(--accent-2);
}
.hero-facts span { font-size: .7rem; line-height: 1.35; color: #c5d3da; }

.section-pad { padding: 100px max(20px, calc((100vw - var(--max)) / 2)); }
.section-label {
  text-transform: uppercase;
  font: 600 .76rem "Archivo Narrow", sans-serif;
  letter-spacing: .16em;
  color: #6d7e88;
  padding-top: 8px;
}
.section-label.light { color: #87a0ae; }
.intro {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 48px;
}
.intro h2,
.section-heading h2,
.geo-head h2,
.gallery-head h2 {
  font-size: clamp(2.4rem, 4.8vw, 4.4rem);
  max-width: 900px;
}
.intro-copy > p:last-child {
  font-size: 1.05rem;
  color: #5d707b;
  max-width: 760px;
  margin-top: 26px;
}

.dark-section { background: var(--ink); color: #fff; }
.section-heading,
.geo-head {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 48px;
  margin-bottom: 52px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #2a4050;
}
.service-grid article {
  padding: 38px 40px 38px 0;
  border-bottom: 1px solid #2a4050;
  transition: background .3s;
}
.service-grid article:nth-child(odd) {
  border-right: 1px solid #2a4050;
  padding-right: 44px;
}
.service-grid article:nth-child(even) { padding-left: 44px; }
.service-grid article:hover { background: rgba(255,255,255,.03); }
.service-grid article > span {
  color: var(--accent-2);
  font: 600 1rem "Archivo Narrow", sans-serif;
}
.service-grid h3 {
  font: 600 1.75rem "Archivo Narrow", sans-serif;
  text-transform: uppercase;
  margin: 10px 0;
}
.service-grid p { color: #a9bcc6; max-width: 500px; margin: 0; }

.geo { background: linear-gradient(180deg, #e7eef1, #dde7eb); }
.geo-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; }
.geo-statement {
  background: linear-gradient(160deg, #102231, #0a1824);
  color: #fff;
  padding: 40px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.geo-statement::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -60px;
  bottom: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,119,47,.35), transparent 70%);
}
.geo-statement p {
  position: relative;
  font: 500 clamp(1.8rem, 3.5vw, 3rem)/1.08 "Archivo Narrow", sans-serif;
  text-transform: uppercase;
  margin: 0;
}
.data-line {
  position: relative;
  display: flex;
  align-items: end;
  gap: 8px;
  height: 64px;
}
.data-line i {
  display: block;
  width: 10px;
  background: linear-gradient(180deg, var(--accent-2), var(--cyan));
  animation: bars 2.4s ease-in-out infinite;
}
.data-line i:nth-child(1) { height: 22%; animation-delay: 0s; }
.data-line i:nth-child(2) { height: 54%; animation-delay: .1s; }
.data-line i:nth-child(3) { height: 36%; animation-delay: .2s; }
.data-line i:nth-child(4) { height: 88%; animation-delay: .3s; }
.data-line i:nth-child(5) { height: 62%; animation-delay: .4s; }
.data-line i:nth-child(6) { height: 100%; animation-delay: .5s; }
@keyframes bars {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(.72); }
}
.geo-list article {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid #c5d2d8;
}
.geo-list b {
  font: 600 1.2rem "Archivo Narrow", sans-serif;
  text-transform: uppercase;
}
.geo-list span { font-size: .9rem; color: #5d707b; }

/* Gallery */
.gallery {
  background: #08131c;
  color: #fff;
  position: relative;
}
.gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 300px at 20% 10%, rgba(217,119,47,.18), transparent 60%),
    radial-gradient(800px 360px at 90% 30%, rgba(26,167,194,.14), transparent 55%);
  pointer-events: none;
}
.gallery > * { position: relative; }
.gallery-lead {
  color: #9eb2bd;
  max-width: 720px;
  margin: 18px 0 0;
  font-size: .98rem;
}
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
}
.gallery-filters button {
  border: 1px solid #314552;
  background: rgba(255,255,255,.03);
  color: #c5d4dc;
  font: 600 .74rem Sora, sans-serif;
  letter-spacing: .04em;
  padding: 9px 14px;
  cursor: pointer;
  transition: .25s var(--ease);
}
.gallery-filters button:hover,
.gallery-filters button.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #1a1008;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.g-item {
  position: relative;
  overflow: hidden;
  background: #12202b;
  cursor: pointer;
  grid-column: span 3;
  min-height: 220px;
  opacity: 0;
  transform: translateY(24px) scale(.98);
  animation: cardIn .7s var(--ease) forwards;
  border: 1px solid transparent;
}
.g-item:nth-child(6n+1),
.g-item:nth-child(6n+4) {
  grid-column: span 4;
  min-height: 280px;
}
.g-item:nth-child(6n+2) {
  grid-column: span 5;
  min-height: 280px;
}
.g-item.is-hidden {
  display: none;
}
@keyframes cardIn {
  to { opacity: 1; transform: none; }
}
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .5s;
  filter: saturate(.92) contrast(1.04);
}
.g-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(5,12,18,.55) 62%, rgba(5,12,18,.92));
  opacity: .95;
  transition: opacity .35s;
}
.g-item:hover img { transform: scale(1.08); filter: saturate(1.05) contrast(1.08); }
.g-item:hover::after { opacity: 1; }
.g-item:hover { border-color: rgba(240,163,90,.45); }
.g-meta {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  transform: translateY(8px);
  transition: transform .35s var(--ease);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,.75), 0 6px 18px rgba(0,0,0,.45);
}
.g-item:hover .g-meta { transform: none; }
.g-cat {
  display: inline-block;
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
}
.g-meta strong {
  display: block;
  font: 600 1.15rem/1.15 "Archivo Narrow", sans-serif;
  text-transform: uppercase;
  color: #fff;
}
.g-meta p {
  margin: 6px 0 0;
  font-size: .78rem;
  color: #fff;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: .35s var(--ease);
}
.g-item:hover .g-meta p {
  max-height: 80px;
  opacity: 1;
}

.workflow ol {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.workflow li {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 48px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.workflow li > span {
  font: 600 1.25rem "Archivo Narrow", sans-serif;
  color: #c36a1f;
}
.workflow li div {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 28px;
}
.workflow li b {
  font: 600 1.5rem "Archivo Narrow", sans-serif;
  text-transform: uppercase;
}
.workflow li p { margin: 0; color: #5d707b; }

.contact {
  background: linear-gradient(135deg, #102231, #0a1824 55%, #143041);
  color: #fff;
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 70px;
}
.contact h2 {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  max-width: 780px;
}
.contact-card {
  border-top: 2px solid var(--accent);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.contact-card strong {
  font: 600 1.45rem "Archivo Narrow", sans-serif;
  text-transform: uppercase;
}
.contact-card address { font-style: normal; color: #b7c7d0; }
.contact-card > a:not(.button) { color: var(--cyan-2); font-weight: 600; }
.contact-card .button { margin-top: 8px; }

footer {
  min-height: 120px;
  padding: 32px max(20px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  background: #050c12;
  color: #8ea2ad;
  font-size: .74rem;
}
footer .brand-mark { color: #fff; font-size: 1.7rem; }
footer .brand-copy strong { color: #fff; }
.compact { gap: 8px; }

/* Lightbox */
.lightbox[hidden] { display: none; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 14, .88);
  backdrop-filter: blur(10px);
}
.lightbox-figure {
  position: relative;
  z-index: 2;
  width: min(1100px, 96vw);
  margin: 0;
  animation: lbIn .45s var(--ease);
}
@keyframes lbIn {
  from { opacity: 0; transform: scale(.92) translateY(18px); filter: blur(8px); }
  to { opacity: 1; transform: none; filter: none; }
}
.lightbox-frame {
  position: relative;
  overflow: hidden;
  background: #0b1620;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}
.lightbox-frame img {
  width: 100%;
  max-height: min(72vh, 820px);
  object-fit: contain;
  margin: 0 auto;
  background: #000;
}
.lightbox-scanline {
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  height: 28%;
  top: -30%;
  background: linear-gradient(180deg, transparent, rgba(122,212,230,.18), transparent);
  animation: sweep 1.2s var(--ease);
}
@keyframes sweep {
  from { top: -30%; }
  to { top: 110%; }
}
.lightbox-figure figcaption {
  margin-top: 16px;
  color: #fff;
  max-width: 760px;
}
.lightbox-cat {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 6px;
}
.lightbox-figure strong {
  display: block;
  font: 600 1.6rem "Archivo Narrow", sans-serif;
  text-transform: uppercase;
}
.lightbox-figure p {
  margin: 8px 0 0;
  color: #b7c7d0;
  font-size: .92rem;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(10,20,30,.7);
  color: #fff;
  cursor: pointer;
  width: 46px;
  height: 46px;
  font-size: 1.5rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: .2s;
}
.lightbox-close:hover,
.lightbox-nav:hover { background: var(--accent); color: #1a1008; border-color: var(--accent); }
.lightbox-close { top: 18px; right: 18px; font-size: 1.8rem; }
.lightbox-nav.prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: 18px; top: 50%; transform: translateY(-50%); }

@media (max-width: 980px) {
  .g-item,
  .g-item:nth-child(6n+1),
  .g-item:nth-child(6n+2),
  .g-item:nth-child(6n+4) {
    grid-column: span 6;
    min-height: 220px;
  }
}
@media (max-width: 850px) {
  .menu-button { display: block; }
  #site-nav {
    display: none;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    border-bottom: 1px solid var(--line);
  }
  #site-nav.open { display: flex; }
  .brand-copy small { display: none; }
  .hero { max-height: none; min-height: 680px; }
  .hero-content { margin-bottom: 180px; }
  .hero-facts {
    grid-template-columns: 1fr;
    right: 20px;
    padding: 10px 16px;
  }
  .hero-facts div {
    border-right: 0;
    border-bottom: 1px solid #314554;
    padding: 8px 0;
  }
  .hero-facts div:last-child { border: 0; }
  .intro, .section-heading, .geo-head, .geo-layout, .contact, .workflow li {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .workflow li div { grid-template-columns: 1fr; gap: 6px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid article,
  .service-grid article:nth-child(odd),
  .service-grid article:nth-child(even) {
    padding: 28px 0;
    border-right: 0;
  }
  .geo-list article { grid-template-columns: 1fr; gap: 4px; }
  footer { grid-template-columns: 1fr; gap: 10px; }
  .lightbox-nav { display: none; }
}
@media (max-width: 560px) {
  .g-item,
  .g-item:nth-child(6n+1),
  .g-item:nth-child(6n+2),
  .g-item:nth-child(6n+4) {
    grid-column: span 12;
  }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.4rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
