:root{
  --canvas:#0C0D0F;
  --surface:#16181B;
  --gold:#E0B64A;
  --gold-deep:#c79a32;
  --steel:#8A9199;
  --light:#F4F5F6;
  --on-dark:#F5F6F7;
  --on-dark-2:#A8AEB4;
  --on-light:#16181B;
  --maxw:1240px;
}

*,*::before,*::after{box-sizing:border-box;}
html,body{max-width:100%;overflow-x:hidden;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--canvas);
  color:var(--on-dark);
  font-family:"Inter",system-ui,sans-serif;
  -webkit-font-smoothing:antialiased;
  line-height:1.6;
  overflow-wrap:break-word;
}
img,svg,video,iframe{max-width:100%;height:auto;display:block;}
a{color:inherit;text-decoration:none;}
.container{width:100%;max-width:var(--maxw);margin:0 auto;padding:0 24px;}

/* screen-reader only utility */
.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;
}

/* fonts */
h1,h2,h3{font-family:"Space Grotesk",sans-serif;line-height:1.04;margin:0;letter-spacing:-0.01em;}
.gold{color:var(--gold);}

/* buttons */
.btn-cta{
  display:inline-flex;align-items:center;justify-content:center;
  background:var(--gold);color:#16110A;
  font-family:"Space Grotesk",sans-serif;font-weight:600;
  text-transform:uppercase;letter-spacing:.08em;font-size:.82rem;
  padding:14px 26px;border-radius:2px;border:0;cursor:pointer;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
  box-shadow:0 6px 22px rgba(224,182,74,.22);
}
.btn-cta:hover{transform:translateY(-2px);background:#edc862;box-shadow:0 10px 30px rgba(224,182,74,.34);}
.btn-cta:focus-visible{outline:3px solid #fff;outline-offset:3px;}
.btn-lg{padding:17px 36px;font-size:.9rem;}
.btn-ghost{
  display:inline-flex;align-items:center;color:var(--on-dark);
  font-family:"Space Grotesk",sans-serif;font-weight:500;font-size:.9rem;
  letter-spacing:.02em;padding:14px 4px;
  border-bottom:1px solid transparent;transition:border-color .25s,color .25s;
}
.btn-ghost:hover{border-color:var(--gold);color:var(--gold);}
.btn-ghost:focus-visible{outline:2px solid var(--gold);outline-offset:3px;}

/* promo bar */
.promo-bar{background:#000;border-bottom:1px solid rgba(255,255,255,.07);overflow:hidden;}
.promo-track{
  display:flex;gap:0;white-space:nowrap;
  font-family:"Space Grotesk",sans-serif;font-size:.72rem;letter-spacing:.18em;
  text-transform:uppercase;color:var(--steel);
  padding:8px 0;width:max-content;
  animation:marquee 30s linear infinite;
}
.promo-track span{padding:0 14px;}
.promo-track .dot{color:var(--gold);padding:0 2px;}
@keyframes marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* header */
.site-header{
  position:sticky;top:0;z-index:60;
  background:rgba(12,13,15,.78);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.06);
  transition:background .3s, border-color .3s;
}
.site-header.scrolled{background:rgba(12,13,15,.96);}
.header-inner{display:flex;align-items:center;gap:18px;min-height:74px;}
.brand-mark{height:30px;width:auto;}
.nav-desktop{display:flex;align-items:center;gap:6px;margin-left:auto;}
.nav-link{
  font-family:"Space Grotesk",sans-serif;font-weight:500;
  text-transform:uppercase;letter-spacing:.13em;font-size:.74rem;
  color:var(--on-dark-2);padding:10px 14px;border-radius:2px;
  position:relative;transition:color .2s;background:none;border:0;cursor:pointer;
}
.nav-link:hover{color:var(--on-dark);}
.nav-link.active{color:var(--gold);}
.nav-link.active::after{
  content:"";position:absolute;left:14px;right:14px;bottom:2px;height:2px;background:var(--gold);
}
.nav-link:focus-visible{outline:2px solid var(--gold);outline-offset:2px;}
.nav-more{position:relative;}
.caret{font-size:.6rem;}
.more-menu{
  position:absolute;right:0;top:calc(100% + 8px);min-width:190px;
  background:var(--surface);border:1px solid rgba(255,255,255,.08);
  border-radius:4px;padding:6px;display:none;flex-direction:column;
  box-shadow:0 18px 40px rgba(0,0,0,.5);
}
.nav-more.open .more-menu{display:flex;}
.more-menu a{
  padding:10px 14px;font-size:.78rem;color:var(--on-dark-2);border-radius:3px;
  font-family:"Space Grotesk",sans-serif;letter-spacing:.04em;
}
.more-menu a:hover{background:rgba(255,255,255,.05);color:var(--gold);}
.header-cta{margin-left:10px;}

/* hamburger */
.hamburger{display:none;flex-direction:column;gap:5px;background:none;border:0;cursor:pointer;padding:10px;margin-left:auto;}
.hamburger span{display:block;width:24px;height:2px;background:var(--on-dark);transition:transform .3s,opacity .3s;}
.hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.hamburger.open span:nth-child(2){opacity:0;}
.hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

/* mobile menu */
.mobile-menu{
  position:fixed;top:0;right:0;height:100%;width:min(82%,330px);
  background:var(--surface);z-index:80;transform:translateX(100%);
  transition:transform .35s cubic-bezier(.4,0,.2,1);
  padding:90px 28px 40px;display:flex;flex-direction:column;
  border-left:1px solid rgba(255,255,255,.08);
}
.mobile-menu.open{transform:translateX(0);}
.mobile-menu nav{display:flex;flex-direction:column;gap:4px;}
.m-link{
  font-family:"Space Grotesk",sans-serif;text-transform:uppercase;
  letter-spacing:.1em;font-size:.9rem;padding:16px 4px;
  border-bottom:1px solid rgba(255,255,255,.07);color:var(--on-dark);
}
.m-link.active{color:var(--gold);}
.m-cta{margin-top:24px;}
.menu-overlay{
  position:fixed;inset:0;background:rgba(0,0,0,.55);z-index:70;
  opacity:0;visibility:hidden;transition:opacity .3s;
}
.menu-overlay.open{opacity:1;visibility:visible;}

/* HERO */
.hero{position:relative;min-height:92vh;display:flex;flex-direction:column;justify-content:flex-end;overflow:hidden;padding-bottom:0;}
.hero-media{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:50% 45%;z-index:0;}
.hero-scrim{
  position:absolute;inset:0;z-index:1;
  background:
    linear-gradient(180deg, rgba(12,13,15,.72) 0%, rgba(12,13,15,.30) 34%, rgba(12,13,15,.55) 72%, rgba(12,13,15,.97) 100%),
    linear-gradient(90deg, rgba(30,33,34,.5), rgba(12,13,15,0));
}
.hero-content{position:relative;z-index:2;padding-top:120px;padding-bottom:50px;}
.hero-eyebrow{
  display:inline-flex;align-items:center;gap:14px;
  font-family:"Space Grotesk",sans-serif;text-transform:uppercase;
  letter-spacing:.22em;font-size:.74rem;color:var(--gold);margin-bottom:26px;
}
.hero-eyebrow .rule{width:46px;height:2px;background:var(--gold);display:inline-block;flex-shrink:0;}
.hero-title{
  font-weight:700;text-transform:uppercase;
  font-size:clamp(2.4rem,7.2vw,5.6rem);letter-spacing:-0.02em;
  text-shadow:0 4px 40px rgba(0,0,0,.5);
}
.hero-sub{
  max-width:540px;margin:26px 0 32px;color:var(--on-dark);
  font-size:clamp(1rem,1.6vw,1.2rem);font-weight:400;
}
.hero-actions{display:flex;align-items:center;gap:22px;flex-wrap:wrap;}
.hero-meta{
  position:relative;z-index:2;
  display:flex;gap:0;border-top:1px solid rgba(255,255,255,.12);
  background:rgba(12,13,15,.5);backdrop-filter:blur(4px);-webkit-backdrop-filter:blur(4px);
}
.hm-item{
  flex:1;min-width:0;padding:22px 24px;border-right:1px solid rgba(255,255,255,.1);
  display:flex;flex-direction:column;gap:2px;
}
.hm-item:last-child{border-right:0;}
.hm-item strong{font-family:"Space Grotesk",sans-serif;font-size:1.5rem;color:var(--gold);}
.hm-item span{font-size:.74rem;text-transform:uppercase;letter-spacing:.12em;color:var(--on-dark-2);}

/* section tag */
.section-tag{
  display:inline-block;font-family:"Space Grotesk",sans-serif;
  text-transform:uppercase;letter-spacing:.22em;font-size:.72rem;
  color:var(--gold);margin-bottom:18px;
  padding-left:18px;position:relative;
}
.section-tag::before{content:"";position:absolute;left:0;top:50%;width:10px;height:2px;background:var(--gold);transform:translateY(-50%);}
.section-tag.dark{color:var(--gold-deep);}
.section-tag.dark::before{background:var(--gold-deep);}

/* positioning */
.positioning{padding:90px 0 70px;border-bottom:1px solid rgba(255,255,255,.06);}
.pos-inner{max-width:960px;}
.pos-headline{font-size:clamp(1.7rem,4vw,3.1rem);font-weight:600;line-height:1.12;letter-spacing:-0.01em;}

/* services */
.services{padding:80px 0 100px;}
.services-head{display:flex;flex-wrap:wrap;gap:30px;justify-content:space-between;align-items:flex-end;margin-bottom:46px;}
.services-head > div{min-width:0;}
.section-title{font-size:clamp(1.8rem,3.6vw,2.9rem);font-weight:700;text-transform:uppercase;letter-spacing:-0.01em;}
.section-title.dark{color:var(--on-light);}
.services-lead{max-width:380px;color:var(--on-dark-2);font-size:1rem;}

.bento{
  display:grid;grid-template-columns:repeat(4,1fr);gap:16px;
}
.tile{
  background:var(--surface);border:1px solid rgba(255,255,255,.06);
  border-radius:6px;padding:28px;min-width:0;
  display:flex;flex-direction:column;gap:12px;
  transition:transform .3s ease,border-color .3s ease,background .3s ease;
  position:relative;overflow:hidden;
}
.tile::after{content:"";position:absolute;left:0;top:0;width:100%;height:2px;background:var(--gold);transform:scaleX(0);transform-origin:left;transition:transform .35s ease;}
.tile:hover{transform:translateY(-6px);border-color:rgba(224,182,74,.4);background:#1b1e22;}
.tile:hover::after{transform:scaleX(1);}
.tile-wide{grid-column:span 2;}
.tile-accent{background:linear-gradient(145deg,#1c1d18,#181a15);border-color:rgba(224,182,74,.25);}
.tile h3{font-size:1.18rem;font-weight:600;text-transform:uppercase;letter-spacing:.01em;}
.tile p{color:var(--on-dark-2);font-size:.92rem;margin:0;}

/* tile icons via CSS mask — gold accent on dark tile */
.tile-icon{
  width:48px;height:48px;
  background:var(--gold);
  flex-shrink:0;
  -webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;
  -webkit-mask-position:center;mask-position:center;
  -webkit-mask-size:contain;mask-size:contain;
}
.tile-icon[data-icon="stadium"]{
  -webkit-mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><ellipse cx='12' cy='9' rx='9' ry='4'/><path d='M3 9v5c0 2.2 4 4 9 4s9-1.8 9-4V9'/><path d='M9 9l1.5-3M15 9l-1.5-3'/></svg>");
  mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><ellipse cx='12' cy='9' rx='9' ry='4'/><path d='M3 9v5c0 2.2 4 4 9 4s9-1.8 9-4V9'/><path d='M9 9l1.5-3M15 9l-1.5-3'/></svg>");
}
.tile-icon[data-icon="airport"]{
  -webkit-mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M2 16l9-2 4-9 2 1-2 8 6-1 1 2-19 4z'/><path d='M3 21h18'/></svg>");
  mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M2 16l9-2 4-9 2 1-2 8 6-1 1 2-19 4z'/><path d='M3 21h18'/></svg>");
}
.tile-icon[data-icon="events"]{
  -webkit-mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4' width='18' height='10' rx='1'/><path d='M3 14l4 6M21 14l-4 6'/><circle cx='9' cy='9' r='1.2'/><circle cx='15' cy='9' r='1.2'/></svg>");
  mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4' width='18' height='10' rx='1'/><path d='M3 14l4 6M21 14l-4 6'/><circle cx='9' cy='9' r='1.2'/><circle cx='15' cy='9' r='1.2'/></svg>");
}
.tile-icon[data-icon="operators"]{
  -webkit-mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='6' width='18' height='10' rx='2'/><circle cx='8' cy='18' r='1.6'/><circle cx='16' cy='18' r='1.6'/><path d='M3 11h18'/></svg>");
  mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='6' width='18' height='10' rx='2'/><circle cx='8' cy='18' r='1.6'/><circle cx='16' cy='18' r='1.6'/><path d='M3 11h18'/></svg>");
}
.tile-icon[data-icon="cities"]{
  -webkit-mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M3 21V8l5-3v16M8 9l6-3v15M14 11l5-2v12'/><path d='M3 21h18'/></svg>");
  mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M3 21V8l5-3v16M8 9l6-3v15M14 11l5-2v12'/><path d='M3 21h18'/></svg>");
}
.tile-icon[data-icon="hotels"]{
  -webkit-mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><rect x='4' y='3' width='16' height='18' rx='1'/><path d='M9 21v-4h6v4'/><path d='M8 7h2M14 7h2M8 11h2M14 11h2'/></svg>");
  mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><rect x='4' y='3' width='16' height='18' rx='1'/><path d='M9 21v-4h6v4'/><path d='M8 7h2M14 7h2M8 11h2M14 11h2'/></svg>");
}
.tile-icon[data-icon="tech"]{
  -webkit-mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><rect x='6' y='2' width='12' height='20' rx='2'/><circle cx='12' cy='18' r='1'/><path d='M10 8.5a2 2 0 1 1 3 1.7c-.6.4-1 .7-1 1.3'/></svg>");
  mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><rect x='6' y='2' width='12' height='20' rx='2'/><circle cx='12' cy='18' r='1'/><path d='M10 8.5a2 2 0 1 1 3 1.7c-.6.4-1 .7-1 1.3'/></svg>");
}
.tile-accent .tile-icon{background:var(--gold);}
.services-cta{display:flex;justify-content:center;margin-top:46px;}

/* projects */
.projects{background:var(--light);color:var(--on-light);padding:90px 0 100px;}
.projects-head{text-align:center;margin-bottom:46px;}
.projects-head .section-tag{color:var(--gold-deep);}
.projects-head .section-tag::before{background:var(--gold-deep);}
.projects-lead{color:#5b6066;font-size:1.05rem;margin-top:14px;}
.logo-tile{
  background:#fff;border:1px solid #e3e5e8;border-radius:10px;
  padding:36px 32px;box-shadow:0 18px 50px rgba(20,24,28,.1);
}
.logo-tile img{margin:0 auto;width:100%;}
.client-names{
  list-style:none;display:flex;flex-wrap:wrap;justify-content:center;gap:10px 0;
  margin:32px 0 0;padding:0;
}
.client-names li{
  font-family:"Space Grotesk",sans-serif;font-size:.74rem;text-transform:uppercase;
  letter-spacing:.1em;color:#5b6066;padding:0 16px;border-right:1px solid #cfd3d7;
}
.client-names li:last-child{border-right:0;}

/* final cta */
.final-cta{padding:110px 0;position:relative;overflow:hidden;}
.final-cta::before{
  content:"";position:absolute;inset:0;
  background:radial-gradient(circle at 50% 120%, rgba(224,182,74,.14), transparent 55%);
}
.fc-inner{position:relative;text-align:center;max-width:760px;}
.fc-rule{width:60px;height:3px;background:var(--gold);margin:0 auto 28px;}
.fc-title{font-size:clamp(2.2rem,6vw,4.4rem);font-weight:700;text-transform:uppercase;}
.fc-sub{color:var(--on-dark-2);font-size:1.1rem;margin:18px auto 34px;max-width:520px;}

/* footer */
.site-footer{background:#08090A;border-top:1px solid rgba(255,255,255,.07);padding:64px 0 28px;}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:40px;}
.footer-mark{height:46px;width:auto;margin-bottom:18px;}
.footer-tag{color:var(--on-dark-2);max-width:300px;font-size:.95rem;margin:0 0 16px;}
.footer-line{font-size:.9rem;color:var(--on-dark-2);}
.footer-line a{color:var(--gold);}
.footer-nav{display:flex;flex-direction:column;gap:12px;min-width:0;}
.fn-label{font-family:"Space Grotesk",sans-serif;text-transform:uppercase;letter-spacing:.18em;font-size:.68rem;color:var(--steel);margin-bottom:6px;}
.footer-nav a{font-size:.9rem;color:var(--on-dark-2);transition:color .2s;}
.footer-nav a:hover{color:var(--gold);}
.map-card{position:relative;background:var(--surface);border:1px solid rgba(255,255,255,.08);border-radius:8px;padding:22px;overflow:hidden;min-width:0;}
.map-addr{font-size:.95rem;color:var(--on-dark);margin:0 0 12px;line-height:1.5;}
.map-link{color:var(--gold);font-family:"Space Grotesk",sans-serif;font-size:.82rem;letter-spacing:.04em;font-weight:600;}
.map-grid{
  position:absolute;inset:0;z-index:0;opacity:.06;pointer-events:none;
  background-image:linear-gradient(rgba(255,255,255,.6) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.6) 1px,transparent 1px);
  background-size:26px 26px;
}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px;margin-top:50px;padding-top:22px;border-top:1px solid rgba(255,255,255,.07);font-size:.8rem;color:var(--steel);}
.footer-bottom a{color:var(--steel);transition:color .2s;}
.footer-bottom a:hover{color:var(--gold);}

/* scroll reveal — gated on .js class so no-JS sees content immediately */
.js .reveal{opacity:0;transform:translateY(28px);transition:opacity .7s ease,transform .7s ease;}
.js .reveal.in{opacity:1;transform:none;}

/* responsive */
@media (max-width:980px){
  .nav-desktop,.header-cta{display:none;}
  .hamburger{display:flex;}
  .bento{grid-template-columns:repeat(2,1fr);}
  .tile-wide{grid-column:span 2;}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .footer-brand{grid-column:1 / -1;}
}
@media (max-width:620px){
  .container{padding:0 18px;}
  .hero{min-height:88vh;}
  .hero-content{padding-top:90px;}
  .hero-actions{gap:14px;}
  .hero-meta{flex-direction:column;}
  .hm-item{border-right:0;border-bottom:1px solid rgba(255,255,255,.1);flex-direction:row;align-items:baseline;gap:12px;}
  .hm-item:last-child{border-bottom:0;}
  .bento{grid-template-columns:1fr;}
  .tile-wide{grid-column:span 1;}
  .footer-grid{grid-template-columns:1fr;}
  .client-names li{border-right:0;padding:4px 0;width:100%;text-align:center;}
  .logo-tile{padding:24px 16px;}
}
@media (prefers-reduced-motion:reduce){
  *{animation-duration:.001ms!important;animation-iteration-count:1!important;transition-duration:.001ms!important;scroll-behavior:auto!important;}
  .js .reveal{opacity:1;transform:none;}
}