
:root {
  color-scheme: dark;
  --bg: #030507;
  --panel: #090e14;
  --panel-2: #101823;
  --line: rgba(255,255,255,.12);
  --text: #f5f8fb;
  --muted: #9aa8b8;
  --blue: #35b8ff;
  --red: #ed1c24;
  --silver: #d6dee8;
  --max: 1180px;
  --wide-max: 2920px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body { margin: 0; overflow-x: clip; font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Arial, sans-serif; background: linear-gradient(180deg, #05070a 0%, #0a1118 42%, #030507 100%); color: var(--text); letter-spacing: 0; }
body::before { content: ""; position: fixed; inset: 0; pointer-events: none; z-index: -1; background-image: linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px), linear-gradient(135deg, rgba(53,184,255,.08), transparent 38%, rgba(237,28,36,.07)); background-size: 54px 54px, 54px 54px, auto; opacity: .72; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.site-header { position: fixed; z-index: 50; inset: 0 0 auto 0; height: 78px; display: flex; align-items: center; justify-content: space-between; padding: 0 clamp(16px, 4vw, 44px); background: rgba(5,7,10,.78); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); }
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand img { width: 58px; height: 58px; object-fit: contain; }
.brand strong, .brand small { display: block; line-height: 1; }
.brand strong { font-size: 15px; text-transform: uppercase; }
.brand small { color: var(--muted); margin-top: 5px; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link { display: inline-flex; align-items: center; padding: 12px 14px; color: var(--muted); border: 1px solid transparent; border-radius: 6px; }
.nav-link:hover, .nav-link.is-active { color: var(--text); border-color: var(--line); background: rgba(255,255,255,.04); }
.nav-submenu-toggle { display: none; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 60;
  width: min(360px, 90vw);
  max-height: min(70vh, 620px);
  overflow-y: auto;
  padding: 10px;
  border: 1px solid rgba(237,28,36,.22);
  border-radius: 8px;
  background: rgba(5,8,12,.98);
  box-shadow: 0 22px 60px rgba(0,0,0,.46);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 9px 10px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
}
.nav-dropdown a:hover,
.nav-dropdown a.is-active {
  color: var(--text);
  background: rgba(255,255,255,.06);
}
@media (min-width: 981px) {
  .nav-item:has(.nav-dropdown)::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: min(360px, 90vw);
    height: 12px;
  }
}
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: rgba(255,255,255,.04); border-radius: 6px; }
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--text); }
.mobile-tabs { display: none; }
.hero { min-height: 92vh; display: grid; align-items: end; padding: 120px 24px 64px; position: relative; background-image: linear-gradient(90deg, rgba(5,7,10,.94) 0%, rgba(5,7,10,.74) 42%, rgba(5,7,10,.32) 100%), var(--hero-image); background-size: cover; background-position: center; }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 1px; background: linear-gradient(90deg, transparent, var(--blue), var(--red), transparent); }
.hero-inner, .section, .cta-band, .page-shell, .project-detail { width: min(var(--max), 100%); margin: 0 auto; }
.hero-inner { position: relative; z-index: 1; }
.eyebrow { color: var(--blue); text-transform: uppercase; font-weight: 800; font-size: 12px; letter-spacing: 0; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(42px, 7vw, 88px); line-height: .94; max-width: 920px; margin-bottom: 22px; text-wrap: balance; }
h2 { font-size: clamp(27px, 4vw, 46px); line-height: 1.02; }
h3 { font-size: 20px; line-height: 1.15; }
p { color: var(--muted); line-height: 1.7; }
.subtitle { font-size: clamp(18px, 2vw, 26px); max-width: 720px; color: var(--silver); }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 20px; border-radius: 6px; border: 1px solid rgba(255,255,255,.18); background: linear-gradient(135deg, #f1473b, #b80d16); color: #fff; font-weight: 800; box-shadow: 0 14px 34px rgba(237,28,36,.24); }
.btn:hover { transform: translateY(-1px); }
.btn-ghost { background: rgba(255,255,255,.04); color: var(--text); border-color: var(--line); }
.btn-small { min-height: 38px; padding-inline: 14px; font-size: 14px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 28px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 48px; }
.hero-stats span, .card-meta span, .page-tags span { border: 1px solid var(--line); border-radius: 6px; padding: 10px 12px; background: rgba(0,0,0,.34); color: var(--muted); }
.hero-stats strong { color: var(--text); font-size: 22px; margin-right: 6px; }
.section { padding: 82px 24px; }
.intro-band { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 520px); gap: 44px; align-items: end; }
.section-head.row { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 28px; }
.wide-copy { font-size: 18px; color: var(--silver); }
.services-grid, .project-grid, .service-panels { display: grid; gap: 16px; }
.services-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.service-tile, .service-panel, .project-card, .aside-box, .report-grid article, .legal-content, .contact-form, .contact-copy { border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025)); border-radius: 8px; }
.service-tile, .service-panel { padding: 24px; min-height: 190px; }
.service-tile,
.service-panel {
  display: block;
  color: inherit;
}
.service-tile span, .service-panel span { color: var(--red); font-weight: 900; }
.service-tile:hover,
.service-panel:hover {
  border-color: rgba(237,28,36,.36);
  transform: translateY(-2px);
}
.project-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.project-card { overflow: hidden; min-width: 0; }
.project-media { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: #070b11; }
.project-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.project-media-fallback { display: grid; place-items: center; background: linear-gradient(135deg, #090e14, #111b28); }
.project-media-fallback img { width: 100%; height: 100%; object-fit: cover; opacity: .96; }
.project-media-fallback:has(img[src*="pac-logo"]) img { width: 56%; height: 56%; object-fit: contain; opacity: .72; }
.project-card:hover .project-media img { transform: scale(1.035); }
.project-card-body { padding: 18px; }
.card-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.card-meta span { padding: 6px 8px; font-size: 12px; }
.text-link { color: var(--blue); font-weight: 800; }
.cta-band { margin-block: 60px 90px; padding: 34px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; align-items: center; border: 1px solid rgba(26,167,255,.35); border-radius: 8px; background: #07101a; }
.cta-band > div { flex: 1 1 560px; min-width: 0; }
.cta-band .btn { white-space: nowrap; padding-inline: 36px; }
.experience-ticker { width: 100vw; width: 100dvw; max-width: none; margin: -1px calc(50% - 50vw) 34px; margin-left: calc(50% - 50dvw); margin-right: calc(50% - 50dvw); overflow: hidden; border-block: 1px solid rgba(237,28,36,.46); background: linear-gradient(90deg, rgba(28,0,5,.84), rgba(6,10,15,.95) 36%, rgba(6,10,15,.95) 64%, rgba(28,0,5,.84)); box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 18px 54px rgba(0,0,0,.30); position: relative; z-index: 3; }
.experience-ticker__track { display: flex; width: max-content; min-width: 200%; animation: experience-ticker-scroll 30s linear infinite; will-change: transform; }
.experience-ticker__track span { flex: 0 0 auto; padding: 16px clamp(44px, 7vw, 116px); color: #fff; font-size: clamp(17px, 1.7vw, 29px); line-height: 1.2; font-weight: 900; letter-spacing: 0; white-space: nowrap; text-shadow: 0 10px 30px rgba(0,0,0,.52); }
.experience-ticker__track span::before { content: ""; display: inline-block; width: 8px; height: 8px; margin-right: 24px; border-radius: 999px; background: var(--red); vertical-align: middle; box-shadow: 0 0 18px rgba(237,28,36,.82); }
.hero.has-hero-slider:has(+ .experience-ticker),
.project-hero.has-hero-slider:has(+ .experience-ticker),
.company-hero.has-hero-slider:has(+ .experience-ticker),
.page-hero.compact.has-hero-slider:has(+ .experience-ticker) { margin-bottom: 0; }
.experience-ticker + .home-scroll-cue { margin-top: 14px; }
@keyframes experience-ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}
@media (prefers-reduced-motion: reduce) {
  .experience-ticker__track { animation: none; transform: none; }
}
.page-shell { padding: 118px 24px 90px; }
.page-hero.compact { padding: 54px 0 34px; max-width: 920px; }
.toolbar { margin: 0 auto 28px; display: grid; gap: 14px; }
.search-input, input, textarea, select { width: 100%; min-height: 48px; border: 1px solid var(--line); border-radius: 6px; background: #080d13; color: var(--text); padding: 12px 14px; font: inherit; }
textarea { resize: vertical; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { min-height: 38px; padding: 0 13px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.04); color: var(--muted); cursor: pointer; }
.chip.is-active, .chip:hover { color: var(--text); border-color: var(--blue); }
.all-projects { grid-template-columns: repeat(4, minmax(0,1fr)); }
.project-hero { min-height: 74vh; padding: 118px 24px 54px; display: flex; flex-direction: column; justify-content: space-between; background-image: linear-gradient(90deg, rgba(5,7,10,.95), rgba(5,7,10,.55)), var(--project-image); background-size: cover; background-position: center; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 10px; color: var(--muted); font-size: 14px; }
.breadcrumb a { color: var(--silver); }
.project-hero-copy { max-width: 820px; }
.project-detail { padding: 68px 24px; display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 28px; }
.detail-main h2 { margin-top: 34px; }
.detail-gallery { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.detail-gallery figure, .masonry-gallery figure { margin: 0; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: var(--panel); }
.detail-gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.page-layout-gallery { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; margin: 10px 0 34px; }
.page-layout-gallery figure { margin: 0; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: #fff; box-shadow: 0 18px 54px rgba(20,40,65,.09); }
.page-layout-gallery img { width: 100%; height: auto; }
.project-copy p { color: var(--silver); font-size: 17px; }
figcaption { padding: 10px 12px; color: var(--muted); font-size: 13px; }
.detail-aside { display: grid; gap: 16px; align-content: start; position: sticky; top: 98px; }
.aside-box { padding: 20px; }
.equipment-list { padding-left: 18px; color: var(--silver); line-height: 1.7; max-height: 520px; overflow: auto; }
.page-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.source-details { margin-top: 18px; border: 1px solid var(--line); border-radius: 8px; padding: 16px; background: rgba(255,255,255,.03); }
.service-panels { grid-template-columns: repeat(2, minmax(0,1fr)); }
.masonry-gallery { columns: 4 230px; column-gap: 14px; }
.masonry-gallery figure { margin: 0 0 14px; break-inside: avoid; }
.masonry-gallery img { width: 100%; height: auto; background: #070b11; }
.masonry-gallery .gallery-item[hidden] { display: none !important; }
.gallery-load-sentinel {
  min-height: 54px;
  margin: 12px auto 0;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 14px;
}
.gallery-load-sentinel[hidden] { display: none; }
.contact-layout { display: grid; grid-template-columns: minmax(0, .85fr) minmax(320px, 1fr); gap: 24px; align-items: start; }
.contact-page-shell { width: min(var(--max), 100%); max-width: var(--max); }
.contact-copy, .contact-form { padding: 28px; }
.contact-form { display: grid; gap: 14px; }
label { display: grid; gap: 7px; color: var(--silver); font-weight: 700; }
.check { display: flex; align-items: flex-start; gap: 10px; font-weight: 500; color: var(--muted); }
.check input { width: 18px; min-height: 18px; margin-top: 3px; }
.contact-facts { display: grid; gap: 10px; margin-top: 28px; color: var(--silver); }
.contact-fact {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px;
  background: rgba(255,255,255,.03);
}
.fact-copy { display: grid; gap: 3px; }
.fact-copy strong { color: var(--text); font-size: 13px; }
.fact-copy span { color: var(--silver); }
.contact-fact[href] { transition: border-color .24s ease, transform .24s ease, background .24s ease; }
.contact-fact[href]:hover { border-color: rgba(237,28,36,.28); transform: translateY(-2px); background: rgba(255,255,255,.05); }
.contact-map-card {
  display: grid;
  grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.03)),
    linear-gradient(135deg, rgba(237,28,36,.04), rgba(53,184,255,.04));
  box-shadow: 0 24px 72px rgba(0,0,0,.32);
}
.contact-map-copy { display: grid; align-content: start; gap: 14px; }
.contact-map-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.contact-map-frame {
  min-height: 380px;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.1);
  background: #05080c;
}
.contact-map-frame iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }
.legal-content { padding: 30px; max-width: 920px; }
.legal-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 24px; }
.legal-links a { padding: 16px; border: 1px solid var(--line); border-radius: 6px; color: var(--blue); }
.report-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; margin-bottom: 24px; }
.report-grid article { padding: 22px; }
.report-grid strong { display: block; font-size: 36px; }
.report-grid span { color: var(--muted); }
.table-wrap { overflow: auto; border: 1px solid var(--line); border-radius: 8px; }
table { width: 100%; border-collapse: collapse; min-width: 720px; }
th, td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: left; color: var(--silver); }
.site-footer { padding: 62px 24px 90px; background: #030507; border-top: 1px solid var(--line); }
.footer-grid { width: min(var(--max),100%); margin: 0 auto; display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 32px; }
.footer-logo { width: 120px; height: auto; margin-bottom: 14px; }
.footer-lead { max-width: 390px; }
.site-footer h3 { font-size: 15px; color: var(--text); }
.site-footer a { display: block; color: var(--muted); margin: 9px 0; }
.site-footer a.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-contact-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color: #d7e7ff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.footer-contact-icon svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.site-footer a:hover { color: var(--blue); }
.footer-bottom { width: min(var(--max),100%); margin: 32px auto 0; padding-top: 18px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; color: var(--muted); font-size: 13px; }
.cookie-banner { position: fixed; z-index: 80; left: 18px; right: 18px; bottom: 18px; width: min(900px, calc(100% - 36px)); display: none; gap: 16px; justify-content: space-between; align-items: center; padding: 16px; border: 1px solid var(--line); border-radius: 8px; background: rgba(7,12,18,.95); box-shadow: 0 20px 70px rgba(0,0,0,.45); }
.cookie-banner.is-visible { display: flex; }
.cookie-banner p { flex: 1 1 auto; min-width: 0; margin: 0; font-size: 14px; }
.cookie-banner > div { display: flex; flex: 0 0 auto; align-items: center; gap: 10px; }

/* Dark premium refinements */
p { color: var(--muted); }
.site-header { background: rgba(3,5,7,.86); box-shadow: 0 14px 44px rgba(0,0,0,.34); }
.brand img { filter: drop-shadow(0 8px 18px rgba(53,184,255,.18)); }
.nav-link { color: #aab8c8; }
.nav-link:hover, .nav-link.is-active { color: var(--text); background: rgba(255,255,255,.055); border-color: rgba(255,255,255,.14); }
.hero { background-image: linear-gradient(90deg, rgba(3,5,7,.96) 0%, rgba(3,5,7,.82) 42%, rgba(3,5,7,.42) 100%), var(--hero-image); }
.hero::after { background: linear-gradient(90deg, transparent, rgba(53,184,255,.5), rgba(237,28,36,.55), transparent); }
.subtitle { color: var(--silver); }
.btn-ghost { background: rgba(255,255,255,.055); color: var(--text); border-color: var(--line); box-shadow: none; }
.service-tile, .service-panel, .project-card, .aside-box, .report-grid article, .legal-content, .contact-form, .contact-copy, .content-card, .content-section, .reference-group { background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035)); border: 1px solid var(--line); box-shadow: 0 22px 62px rgba(0,0,0,.28); }
.project-media { background: #070b11; }
.card-meta span, .hero-stats span, .page-tags span { background: rgba(255,255,255,.055); color: #b9c5d3; border-color: var(--line); }
.cta-band { background: linear-gradient(135deg, rgba(12,20,30,.96), rgba(5,8,12,.96)); border-color: rgba(255,255,255,.13); box-shadow: 0 24px 74px rgba(0,0,0,.32); }
.page-hero.compact { border-bottom: 1px solid var(--line); }
.project-hero { background-image: linear-gradient(90deg, rgba(3,5,7,.96), rgba(3,5,7,.62)), var(--project-image); }
.breadcrumb { color: #a5b2c2; }
.breadcrumb a { color: #d6dee8; }
.detail-gallery figure, .masonry-gallery figure { background: var(--panel); box-shadow: 0 18px 54px rgba(0,0,0,.3); }
input, textarea, select, .search-input { background: rgba(8,13,19,.96); color: var(--text); }
.chip { background: rgba(255,255,255,.045); color: #aab8c8; }
.chip.is-active, .chip:hover { background: rgba(53,184,255,.13); color: var(--text); }
.site-footer { background: #020304; color: var(--text); }
.site-footer a { color: #9aa8b8; }
.footer-bottom { color: #8f9cac; }
.cookie-banner { background: rgba(7,12,18,.96); box-shadow: 0 20px 70px rgba(0,0,0,.45); }
.company-hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 520px); gap: 34px; align-items: center; padding: 42px; border: 1px solid var(--line); border-radius: 12px; background: linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.035)); box-shadow: 0 24px 70px rgba(0,0,0,.3); }
.company-hero img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 10px; box-shadow: 0 20px 54px rgba(0,0,0,.34); }
.content-cards { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; margin-top: 24px; }
.content-card { display: block; padding: 24px; border-radius: 10px; min-height: 160px; }
.content-card span { display: block; color: var(--blue); font-weight: 900; font-size: 19px; margin-bottom: 12px; }
.content-card-media {
  display: block;
  margin: -24px -24px 18px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: #081018;
}
.content-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(1.04);
}
.content-card .card-icon,
.service-tile .card-icon,
.contact-fact .fact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color: #d7e7ff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.content-card .card-icon svg,
.service-tile .card-icon svg,
.contact-fact .fact-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-tile .card-icon,
.contact-fact .fact-icon { margin-bottom: 0; }
.content-card .content-card-title { display: block; color: var(--blue); font-size: 19px; font-weight: 900; margin-bottom: 12px; }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 410px; gap: 28px; align-items: start; }
.content-section { padding: 30px; border-radius: 10px; margin-bottom: 16px; }
.content-media { display: grid; gap: 14px; position: sticky; top: 98px; }
.content-media figure { margin: 0; background: var(--panel); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; box-shadow: 0 18px 54px rgba(0,0,0,.28); }
.content-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.awards-layout { grid-template-columns: minmax(280px, 360px) minmax(0, 1fr); gap: 34px; }
.awards-layout article { position: sticky; top: 98px; align-self: start; }
.awards-layout .content-media { position: static; }
.awards-media { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; }
.awards-media figure { background: rgba(255,255,255,.96); border-color: rgba(226,194,105,.34); box-shadow: 0 18px 46px rgba(0,0,0,.34); }
.awards-media a { display: block; background: linear-gradient(135deg, #f8fafc, #e5e7eb); }
.awards-media img { display: block; width: 100%; height: clamp(260px, 35vw, 460px); aspect-ratio: auto; object-fit: contain; padding: 10px; }
.awards-media figcaption { padding: 12px 14px 14px; color: #111827; font-size: 13px; line-height: 1.42; min-height: 118px; }
.awards-media figcaption strong { display: block; margin-bottom: 6px; font-size: 13px; font-weight: 900; color: #0f172a; }
.awards-media figcaption span { display: block; color: #475569; font-weight: 600; }
.references-list { display: grid; gap: 18px; }
.reference-group { padding: 24px; border-radius: 10px; }
.reference-group div { columns: 3 220px; column-gap: 22px; }
.reference-group a { display: block; color: var(--silver); margin: 0 0 9px; break-inside: avoid; }
.reference-group a:hover { color: var(--blue); }
.projects-story-list { display: grid; gap: 18px; }
.projects-story-card { display: grid; grid-template-columns: 310px minmax(0, 1fr); gap: 24px; align-items: center; padding: 18px; border: 1px solid var(--line); border-radius: 12px; background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035)); box-shadow: 0 20px 58px rgba(0,0,0,.28); }
.projects-story-media { display: block; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 9px; background: #070b11; }
.projects-story-media img { width: 100%; height: 100%; object-fit: cover; }
.projects-story-card h2 { font-size: clamp(24px, 3vw, 36px); margin-bottom: 12px; }
.service-detail-page {
  width: min(var(--max), 100%);
}
.service-detail-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 22px;
}
.service-detail-card,
.service-feature-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: 0 18px 54px rgba(0,0,0,.24);
}
.service-detail-card {
  padding: clamp(22px, 4vw, 38px);
}
.service-detail-card h2 {
  max-width: 920px;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.08;
}
.service-detail-card p {
  color: var(--silver);
  font-size: 17px;
}
.service-feature-list {
  padding: 22px;
}
.service-feature-list ul {
  margin: 0;
  padding-left: 18px;
  color: var(--silver);
  line-height: 1.7;
}
.service-story {
  display: grid;
  gap: 22px;
}
.service-story-block {
  display: grid;
  grid-template-columns: minmax(280px, .92fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
}
.service-story-block.is-reversed {
  grid-template-columns: minmax(0, 1fr) minmax(280px, .92fr);
}
.service-story-media {
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  margin: 0;
  padding: clamp(10px, 1.4vw, 18px);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.12);
  background: #070b11;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 10;
}
.service-story-media img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 5px;
}
.service-story-copy {
  padding: clamp(8px, 2vw, 22px);
}
.service-story-copy h2 {
  margin-bottom: 14px;
}
.service-story-copy p {
  color: var(--silver);
  font-size: 17px;
}
.service-included-text {
  margin: 34px 0 0;
}
.service-included-text h2 {
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 34px);
}
.service-included-text ul {
  margin: 0;
  padding-left: 20px;
  color: var(--silver);
  line-height: 1.8;
}
.service-page-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
@media (max-width: 980px) {
  .main-nav { position: fixed; top: 78px; left: 12px; right: 12px; display: none; padding: 12px; background: rgba(7,12,18,.97); border: 1px solid var(--line); border-radius: 8px; flex-direction: column; align-items: stretch; box-shadow: 0 20px 50px rgba(0,0,0,.38); }
  .main-nav.is-open { display: flex; }
  .nav-item { display: grid; grid-template-columns: minmax(0, 1fr) 44px; gap: 8px; align-items: center; }
  .nav-link { width: 100%; }
  .nav-submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(255,255,255,.04);
    color: var(--text);
  }
  .nav-submenu-toggle span {
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .18s ease;
  }
  .nav-item.is-submenu-open .nav-submenu-toggle span {
    transform: rotate(225deg) translateY(-2px);
  }
  .nav-dropdown { display: none; grid-column: 1 / -1; position: static; width: 100%; max-height: none; margin-top: 0; opacity: 1; pointer-events: auto; transform: none; box-shadow: none; }
  .nav-dropdown a {
    display: flex;
    align-items: flex-start;
    gap: 9px;
  }
  .nav-dropdown a::before {
    content: "-";
    flex: 0 0 auto;
    color: rgba(237,28,36,.82);
  }
  .nav-item.is-submenu-open .nav-dropdown { display: block; }
  .menu-toggle { display: block; }
  .mobile-tabs { position: fixed; z-index: 45; left: 10px; right: 10px; bottom: 10px; display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; padding: 7px; background: rgba(7,12,18,.94); backdrop-filter: blur(18px); border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 16px 44px rgba(0,0,0,.4); }
  .mobile-tab { min-height: 42px; display: grid; place-items: center; color: var(--muted); border-radius: 6px; font-size: 12px; }
  .mobile-tab.is-active { color: var(--text); background: rgba(237,28,36,.18); }
  .intro-band, .contact-layout, .project-detail, .company-hero, .content-layout, .projects-story-card, .contact-map-card, .service-detail-intro, .service-story-block, .service-story-block.is-reversed { grid-template-columns: 1fr; }
  .services-grid, .project-grid, .service-panels { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .all-projects { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .detail-aside { position: static; }
  .footer-grid, .report-grid, .content-cards { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .content-media { position: static; }
  .awards-layout article { position: static; }
  .awards-media { grid-template-columns: 1fr; }
  .awards-media img { height: min(78vh, 760px); max-height: none; }
}
@media (max-width: 640px) {
  .site-header { height: 70px; padding-inline: 14px; }
  .brand img { width: 50px; height: 50px; }
  .brand strong { font-size: 12px; }
  .brand small { font-size: 12px; }
  .hero { min-height: 86vh; padding: 96px 18px 86px; background-image: linear-gradient(180deg, rgba(3,5,7,.96), rgba(3,5,7,.7)), var(--hero-image); }
  h1 { font-size: clamp(38px, 14vw, 58px); }
  .section, .page-shell, .project-detail { padding-left: 16px; padding-right: 16px; }
  .services-grid, .project-grid, .all-projects, .service-panels, .detail-gallery, .page-layout-gallery, .footer-grid, .report-grid, .legal-links, .content-cards { grid-template-columns: 1fr; }
  .section-head.row, .cta-band, .footer-bottom { flex-direction: column; align-items: stretch; }
  .cta-band { width: auto; margin-inline: 16px; }
  .project-hero { min-height: 72vh; padding: 96px 16px 38px; }
  .company-hero { padding: 22px; }
  .cookie-banner { flex-wrap: wrap; align-items: flex-start; }
  .cookie-banner p { flex-basis: 100%; }
  .cookie-banner > div { width: 100%; justify-content: flex-start; }
  .cookie-banner .btn { flex: 1 1 0; min-width: 0; }
  .site-footer { padding-bottom: 96px; }
}

/* Premium glossy interaction pass */
:root {
  --red-gloss-1: #d51b16;
  --red-gloss-2: #a90d14;
  --red-gloss-3: #5f0509;
  --glass: rgba(255,255,255,.08);
  --glass-strong: rgba(255,255,255,.14);
}

body {
  background:
    radial-gradient(circle at 18% 8%, rgba(237,28,36,.12), transparent 28%),
    radial-gradient(circle at 82% 0%, rgba(53,184,255,.13), transparent 30%),
    linear-gradient(180deg, #020304 0%, #071018 45%, #020304 100%);
}

body::before {
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(135deg, rgba(237,28,36,.09), transparent 34%, rgba(53,184,255,.075));
  opacity: .78;
}

.site-header {
  background: linear-gradient(180deg, rgba(4,6,9,.68), rgba(4,6,9,.46));
  border-bottom-color: rgba(237,28,36,.16);
  box-shadow: 0 18px 54px rgba(0,0,0,.44), inset 0 1px 0 rgba(255,255,255,.08);
}

.brand {
  isolation: isolate;
}

.brand img {
  width: 62px;
  height: 62px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand strong {
  color: #ffffff;
  text-shadow: 0 1px 18px rgba(237,28,36,.16);
}

.nav-link {
  border-radius: 12px;
  transition: transform .22s ease, background .22s ease, border-color .22s ease, color .22s ease, box-shadow .22s ease;
}

.nav-link:hover,
.nav-link.is-active {
  transform: translateY(-1px);
  color: #fff;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.05));
  border-color: rgba(237,28,36,.26);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 10px 28px rgba(0,0,0,.25);
}

.hero {
  min-height: 94vh;
  background-image:
    linear-gradient(90deg, rgba(2,3,4,.94) 0%, rgba(2,3,4,.76) 45%, rgba(2,3,4,.28) 100%),
    linear-gradient(180deg, rgba(2,3,4,.1), rgba(2,3,4,.58)),
    var(--hero-image);
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 78px 0 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), transparent 18%),
    radial-gradient(circle at 24% 32%, rgba(237,28,36,.16), transparent 28%);
  mix-blend-mode: screen;
  opacity: .72;
}

.hero-inner {
  padding: clamp(18px, 3vw, 30px);
  border-left: 1px solid rgba(237,28,36,.22);
  background: linear-gradient(90deg, rgba(2,3,4,.34), transparent 76%);
  backdrop-filter: blur(2px);
}

h1 {
  text-shadow: 0 22px 70px rgba(0,0,0,.55);
}

.subtitle,
.wide-copy,
.project-copy p {
  color: #d8e2ec;
}

.eyebrow {
  color: #ff3b1f;
  text-shadow: 0 0 24px rgba(237,28,36,.22);
}

.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.36);
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,0) 34%),
    linear-gradient(135deg, var(--red-gloss-1) 0%, var(--red-gloss-2) 48%, var(--red-gloss-3) 100%);
  box-shadow:
    0 18px 48px rgba(237,28,36,.28),
    0 3px 10px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.84),
    inset 0 -1px 0 rgba(91,6,12,.32);
  font-weight: 900;
  text-shadow: 0 1px 0 rgba(60,0,0,.36);
  transform: translateZ(0);
  transition: transform .22s cubic-bezier(.2,.8,.2,1), box-shadow .22s ease, filter .22s ease;
}

.btn::before,
.btn::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.btn::before {
  z-index: -1;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255,255,255,.34), rgba(255,255,255,.08) 46%, rgba(255,255,255,0));
  opacity: .9;
}

.btn::after {
  z-index: 0;
  top: -45%;
  bottom: -45%;
  left: -58%;
  width: 42%;
  transform: skewX(-18deg) translateX(-140%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.72), transparent);
  transition: transform .72s cubic-bezier(.2,.8,.2,1);
}

.btn:hover {
  transform: translateY(-2px) scale(1.035);
  filter: saturate(1.08) brightness(1.03);
  box-shadow:
    0 24px 62px rgba(237,28,36,.36),
    0 8px 20px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.9),
    inset 0 -1px 0 rgba(91,6,12,.28);
}

.btn:hover::after {
  transform: skewX(-18deg) translateX(440%);
}

.btn:active {
  transform: translateY(0) scale(.97);
  transition-duration: .09s;
}

.btn:focus-visible,
.nav-link:focus-visible,
.chip:focus-visible,
.text-link:focus-visible {
  outline: 3px solid rgba(237,28,36,.8);
  outline-offset: 3px;
}

.btn-ghost {
  color: #f7fbff;
  border-color: rgba(213,27,22,.58);
  background:
    linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.035)),
    linear-gradient(135deg, rgba(169,13,20,.9), rgba(73,5,9,.94));
  box-shadow:
    0 18px 42px rgba(237,28,36,.22),
    inset 0 1px 0 rgba(255,255,255,.24),
    inset 0 -1px 0 rgba(91,6,12,.28);
  text-shadow: none;
}

.btn-ghost:hover {
  box-shadow:
    0 24px 58px rgba(237,28,36,.28),
    0 0 34px rgba(213,27,22,.16),
    inset 0 1px 0 rgba(255,255,255,.3);
}

.btn-small {
  min-height: 42px;
  border-radius: 14px;
  padding-inline: 18px;
}

.service-tile,
.service-panel,
.project-card,
.aside-box,
.report-grid article,
.legal-content,
.contact-form,
.contact-copy,
.content-card,
.content-section,
.reference-group,
.projects-story-card {
  border-color: rgba(255,255,255,.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,.105), rgba(255,255,255,.036)),
    linear-gradient(135deg, rgba(237,28,36,.045), rgba(53,184,255,.035));
  box-shadow:
    0 24px 72px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.project-card,
.content-card,
.service-tile {
  transition: transform .26s ease, border-color .26s ease, box-shadow .26s ease;
}

.project-card:hover,
.content-card:hover,
.service-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(237,28,36,.28);
  box-shadow:
    0 30px 82px rgba(0,0,0,.42),
    0 0 34px rgba(237,28,36,.08),
    inset 0 1px 0 rgba(255,255,255,.12);
}

.service-tile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.service-kicker {
  color: var(--red);
  font-weight: 900;
}

.project-media img,
.projects-story-media img,
.detail-gallery img,
.masonry-gallery img {
  filter: contrast(1.05) saturate(1.06);
}

.project-hero {
  background-image:
    linear-gradient(90deg, rgba(2,3,4,.94), rgba(2,3,4,.6), rgba(2,3,4,.24)),
    var(--project-image);
}

.cookie-banner {
  border-color: rgba(237,28,36,.22);
  border-radius: 16px;
  background: rgba(5,8,12,.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 80px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.08);
}

.cookie-banner .btn {
  min-height: 44px;
}

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

@media (max-width: 640px) {
  .brand img { width: 58px; height: 58px; }
  .hero-inner {
    padding: 16px 0;
    border-left: 0;
    background: transparent;
    backdrop-filter: none;
  }
  .hero-actions .btn {
    width: 100%;
  }
}

/* Global premium hero image pass */
:root {
  --premium-hero-image: url('/public/images/portfolio-updates/national-arena/national-arena-local-03.webp');
}

.hero {
  --hero-image: var(--premium-hero-image);
  min-height: 88vh;
  background-image:
    linear-gradient(90deg, rgba(2,3,4,.9) 0%, rgba(2,3,4,.66) 42%, rgba(2,3,4,.18) 100%),
    var(--hero-image);
  background-position: center 42%;
}

.hero-inner {
  max-width: 960px;
  padding: clamp(18px, 3vw, 30px);
  border-left: 1px solid rgba(237,28,36,.26);
  background: linear-gradient(90deg, rgba(2,3,4,.46), rgba(2,3,4,.08));
  backdrop-filter: blur(2px);
}

.project-hero {
  --project-image: var(--premium-hero-image);
  background-image:
    linear-gradient(90deg, rgba(2,3,4,.9), rgba(2,3,4,.58), rgba(2,3,4,.2)),
    var(--project-image);
  background-position: center 42%;
}

.project-hero.project-hero-reference {
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image:
    linear-gradient(135deg, rgba(3,6,10,.98), rgba(11,18,25,.94)),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0));
  background-color: #05080c;
}

.project-hero-reference .breadcrumb,
.project-hero-reference .hero-actions {
  justify-content: center;
}

.project-hero-reference .project-hero-copy {
  max-width: min(860px, 100%);
  margin: 0 auto;
}

.page-hero.compact {
  position: relative;
  max-width: none;
  margin-bottom: 36px;
  padding: clamp(44px, 7vw, 82px) clamp(20px, 5vw, 54px);
  overflow: hidden;
  border: 1px solid rgba(237,28,36,.18);
  border-radius: 18px;
  background-image:
    linear-gradient(90deg, rgba(2,3,4,.9), rgba(2,3,4,.62), rgba(2,3,4,.28)),
    var(--premium-hero-image);
  background-size: cover;
  background-position: center 42%;
  box-shadow:
    0 30px 90px rgba(0,0,0,.42),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.page-hero.compact > * {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-hero.compact::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(237,28,36,.7), rgba(53,184,255,.55), transparent);
}

.page-shell.content-page.has-content-hero > .page-hero.compact.content-hero-full {
  position: relative;
  width: 100vw;
  width: 100dvw;
  max-width: none;
  min-height: clamp(360px, 48vw, 700px);
  margin: 78px calc(50% - 50vw) 54px;
  margin: 78px calc(50% - 50dvw) 54px;
  padding: clamp(42px, 5vw, 58px) clamp(22px, 8vw, 124px) clamp(34px, 5vw, 46px);
  display: grid;
  align-content: end;
  overflow: hidden;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  background-image:
    linear-gradient(90deg, rgba(2,3,4,.82) 0%, rgba(2,3,4,.52) 44%, rgba(2,3,4,.18) 100%),
    var(--content-hero-image);
  background-size: cover;
  background-position: center center;
  box-shadow: none;
}

.page-shell.content-page.has-content-hero {
  padding-top: 0;
}

.page-shell.content-page.has-content-hero > .page-hero.compact.content-hero-full > * {
  position: relative;
  z-index: 1;
  max-width: min(780px, 92vw);
}

.company-hero img { object-position: center 42%; }

/* presentation-cleanup: hide old PDF presentation blocks, keep Project gallery visible */
.page-layout-gallery,
.detail-main h2:has(+ .page-layout-gallery) {
  display: none !important;
}

/* PAC visual reset: original dark studio finish and sticky project lift */
body {
  background:
    radial-gradient(circle at 12% 8%, rgba(237,28,36,.09), transparent 28%),
    radial-gradient(circle at 92% 2%, rgba(237,28,36,.08), transparent 30%),
    linear-gradient(180deg, #050607 0%, #0a0d10 45%, #050607 100%) !important;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 44%, rgba(255,255,255,.026) 44% 45%, transparent 45% 100%),
    linear-gradient(180deg, rgba(255,255,255,.035), transparent 18%, rgba(0,0,0,.36));
  background-size: 132px 132px, auto;
  opacity: .62;
}

body.home-page::before {
  background: none;
  opacity: 0;
}

.project-detail {
  align-items: start;
}

.detail-aside {
  position: sticky;
  top: 104px;
  align-self: start;
  max-height: calc(100vh - 128px);
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(237,28,36,.36) transparent;
}

.detail-aside::-webkit-scrollbar {
  width: 6px;
}

.detail-aside::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(237,28,36,.36);
}

.aside-box {
  background:
    linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.035)),
    rgba(7,12,16,.72);
  border-color: rgba(237,28,36,.24);
  box-shadow:
    0 24px 70px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.08);
}

@media (max-width: 760px) {
  .page-shell.content-page.has-content-hero > .page-hero.compact.content-hero-full {
    min-height: clamp(320px, 48svh, 430px);
    margin-top: 70px;
    margin-bottom: 40px;
    padding: 28px 16px 28px;
  }

  .detail-aside {
    position: static;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }
}

/* Clearer hero photography for main pages */
.hero {
  background-image:
    linear-gradient(90deg, rgba(2,3,4,.78) 0%, rgba(2,3,4,.48) 48%, rgba(2,3,4,.14) 100%),
    var(--hero-image) !important;
}

.page-hero.compact {
  background-image:
    linear-gradient(90deg, rgba(2,3,4,.74) 0%, rgba(2,3,4,.42) 50%, rgba(2,3,4,.12) 100%),
    var(--premium-hero-image) !important;
  background-position: center 48%;
}

/* Full-screen hero photography */
.hero {
  min-height: 100vh;
  padding: clamp(110px, 13vh, 156px) clamp(20px, 5vw, 70px) clamp(58px, 8vh, 90px);
  align-items: center;
  background-size: cover;
  background-position: center center;
}

.page-shell {
  overflow: visible;
}

.page-shell > .page-hero.compact {
  width: 100vw;
  max-width: none;
  min-height: calc(100vh - 82px);
  margin: -118px calc(50% - 50vw) 54px;
  padding: clamp(118px, 16vh, 190px) clamp(22px, 9vw, 170px) clamp(68px, 10vh, 118px);
  display: grid;
  align-content: center;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  background-size: cover;
  background-position: center center !important;
}

.page-shell > .page-hero.compact > * {
  max-width: min(980px, 92vw);
}

.page-shell.company-page {
  padding-top: 0;
}

.page-shell.section-page {
  padding-top: 0;
}

.page-shell.content-page:has(> .company-title-hero:first-child),
.page-shell.content-page:has(> .section-title-hero:first-child) {
  padding-top: 0;
}

.company-title-hero {
  width: 100vw;
  width: 100dvw;
  min-height: clamp(280px, 34vw, 380px);
  margin: 78px calc(50% - 50vw) 42px;
  margin: 78px calc(50% - 50dvw) 42px;
  padding: clamp(54px, 7vw, 86px) 20px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    radial-gradient(circle at 45% 24%, rgba(237,28,36,.10), transparent 34%),
    linear-gradient(120deg, rgba(15,22,34,.94), rgba(8,10,12,.96));
  background-size: 90px 90px, 90px 90px, auto, auto;
}

.company-title-hero .title-pill {
  margin: 0;
  padding: 7px 14px;
  border: 1px solid rgba(255,40,0,.42);
  border-radius: 999px;
  color: #ff3b1f;
  background: rgba(255,40,0,.08);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.company-title-hero h1 {
  max-width: min(1080px, 94vw);
  margin: 0;
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1;
  text-wrap: balance;
}

.company-title-hero p:not(.title-pill) {
  max-width: 760px;
  margin: 0;
  color: #b9cdfa;
  font-size: clamp(18px, 2vw, 27px);
  line-height: 1.35;
}

.section-title-hero {
  width: 100vw;
  width: 100dvw;
  min-height: clamp(260px, 32vw, 360px);
  margin: 78px calc(50% - 50vw) 42px;
  margin: 78px calc(50% - 50dvw) 42px;
  padding: clamp(52px, 7vw, 82px) 20px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 50% 0%, rgba(255,214,122,.10), transparent 26%),
    radial-gradient(circle at 0% 50%, rgba(84,197,255,.08), transparent 24%),
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.024) 1px, transparent 1px),
    linear-gradient(135deg, #0a0d12, #10161f 52%, #07090d);
  background-size: auto, auto, 118px 118px, 118px 118px, auto;
}

.section-title-hero .title-pill {
  margin: 0;
  padding: 7px 14px;
  border: 1px solid rgba(255,40,0,.42);
  border-radius: 999px;
  color: #ff3b1f;
  background: rgba(255,40,0,.08);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-title-hero h1 {
  max-width: min(1080px, 94vw);
  margin: 0;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1;
  text-wrap: balance;
}

.section-title-hero p:not(.title-pill) {
  max-width: 820px;
  margin: 0;
  color: #c3d0ea;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.35;
}

.projects-hero-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: min(900px, 92vw);
  margin-top: 6px;
}

.projects-hero-points span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(0,0,0,.22);
  color: #b8c5d6;
  font-size: 14px;
  line-height: 1.2;
}

.projects-hero-points strong {
  color: var(--text);
  font-size: 13px;
  text-transform: uppercase;
}

.company-title-hero,
.section-title-hero {
  width: min(var(--max), 100%);
  max-width: var(--max);
  margin: 78px auto 42px;
}

.company-title-hero,
.section-title-hero {
  position: relative;
  isolation: isolate;
}

.company-title-hero::before,
.section-title-hero::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50dvw);
  z-index: 0;
  pointer-events: none;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 50% 0%, rgba(255,214,122,.10), transparent 26%),
    radial-gradient(circle at 0% 50%, rgba(84,197,255,.08), transparent 24%),
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.024) 1px, transparent 1px),
    linear-gradient(135deg, #0a0d12, #10161f 52%, #07090d);
  background-size: auto, auto, 118px 118px, 118px 118px, auto;
}

body:has(.section-title-hero) {
  background:
    radial-gradient(circle at 50% 0%, rgba(83,195,255,.055), transparent 34%),
    radial-gradient(circle at 50% 28%, rgba(237,28,36,.035), transparent 38%),
    linear-gradient(180deg, #050607 0%, #05080c 34%, #020304 100%) !important;
}

body:has(.section-title-hero)::before {
  background:
    linear-gradient(115deg, transparent 0 44%, rgba(255,255,255,.018) 44% 45%, transparent 45% 100%),
    linear-gradient(180deg, rgba(255,255,255,.026), transparent 20%, rgba(0,0,0,.58));
  background-size: 132px 132px, auto;
  opacity: .56;
}

.section-title-hero,
.section-title-hero::before {
  border-bottom-color: rgba(255,255,255,.07);
  background:
    radial-gradient(circle at 50% 0%, rgba(83,195,255,.055), transparent 28%),
    radial-gradient(circle at 8% 42%, rgba(237,28,36,.035), transparent 28%),
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(135deg, #080b10, #0d131b 52%, #05070a);
  background-size: auto, auto, 118px 118px, 118px 118px, auto;
}

.section-page .service-panel,
.section-page .reference-group,
.section-page .project-card,
.section-page .content-card,
.section-page .cta-band {
  background:
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.026)),
    linear-gradient(135deg, rgba(12,17,24,.96), rgba(4,6,9,.98));
  border-color: rgba(255,255,255,.12);
  box-shadow:
    0 24px 72px rgba(0,0,0,.42),
    inset 0 1px 0 rgba(255,255,255,.07);
}

.company-title-hero > *,
.section-title-hero > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 640px) {
  .company-title-hero,
  .section-title-hero {
    margin-top: 70px;
  }
}

.company-hero {
  position: relative;
  width: 100vw;
  max-width: none;
  min-height: calc(100vh - 82px);
  margin: -118px calc(50% - 50vw) 54px;
  padding: clamp(118px, 16vh, 190px) clamp(22px, 9vw, 170px) clamp(68px, 10vh, 118px);
  display: grid;
  grid-template-columns: minmax(0, 980px);
  align-content: center;
  overflow: hidden;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  background:
    linear-gradient(90deg, rgba(2,3,4,.86) 0%, rgba(2,3,4,.52) 48%, rgba(2,3,4,.22) 100%),
    var(--hero-image, var(--premium-hero-image, #050607));
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
}

.company-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2,3,4,.82) 0%, rgba(2,3,4,.5) 48%, rgba(2,3,4,.18) 100%),
    linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.35));
}

.company-hero > div {
  position: relative;
  z-index: 2;
}

.company-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 760px) {
  .hero {
    min-height: 100svh;
    padding: 100px 16px 58px;
  }

  .page-shell > .page-hero.compact,
  .company-hero {
    min-height: calc(100svh - 70px);
    margin-top: -96px;
    padding: 104px 18px 58px;
  }
}

/* Hero sliders */
.has-hero-slider {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-image: none !important;
  touch-action: pan-y;
  width: 100vw;
  width: 100dvw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-left: calc(50% - 50dvw);
  margin-right: calc(50% - 50vw);
  margin-right: calc(50% - 50dvw);
  margin-top: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
}

.has-hero-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: none;
}

.no-dim-slider.has-hero-slider::before {
  background: none;
}

.has-hero-slider > *:not(.hero-slider-track):not(.hero-slider-ui):not(.hero-slide-overlay) {
  position: relative;
  z-index: 2;
}

.has-hero-slider > img {
  display: none;
}

.hero-slider-track {
  position: absolute;
  inset: 0;
  z-index: 0;
  cursor: grab;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
}

.is-dragging .hero-slider-track {
  cursor: grabbing;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: none;
  transition: opacity .45s ease;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-slide.is-active {
  opacity: 1;
  transform: none;
}

.hero-slider-ui {
  position: absolute;
  inset: auto clamp(16px, 4vw, 34px) clamp(18px, 4vw, 34px);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px;
  pointer-events: none;
}

.hero-slider-project {
  pointer-events: none;
  display: none !important;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(6,10,15,.56);
  color: var(--text);
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(0,0,0,.24);
}

.hero-slider-project:hover {
  border-color: rgba(237,28,36,.34);
  background: rgba(10,16,24,.74);
}

.hero-slider-arrows,
.hero-slider-bullets {
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
}

.hero-slider-arrow,
.hero-slider-bullet {
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(7,12,18,.52);
  color: var(--text);
  box-shadow: 0 14px 34px rgba(0,0,0,.24);
}

.hero-slider-arrow {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  font: inherit;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.hero-slider-bullet {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 999px;
  cursor: pointer;
}

.hero-slider-bullet[aria-current="true"] {
  width: 34px;
  background: linear-gradient(90deg, rgba(237,28,36,.95), rgba(83,195,255,.95));
  border-color: rgba(255,255,255,.42);
}

.hero-slider-arrow:hover,
.hero-slider-bullet:hover {
  border-color: rgba(255,255,255,.48);
  background: rgba(12,20,29,.76);
}

.hero-slider-arrow:focus-visible,
.hero-slider-bullet:focus-visible {
  outline: 2px solid rgba(83,195,255,.9);
  outline-offset: 2px;
}

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

@media (max-width: 760px) {
  .hero-slider-ui {
    inset: auto 14px 16px;
    gap: 12px;
  }

  .hero-slider-arrow {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .hero-slider-bullet {
    width: 10px;
    height: 10px;
  }

  .hero-slider-bullet[aria-current="true"] {
    width: 26px;
  }
}

/* Final hero sizing and slider tuning */
.hero,
.project-hero,
.page-shell > .page-hero.compact,
.company-hero {
  overflow: hidden;
}

.hero {
  width: min(calc(var(--max) + 48px), calc(100% - 24px));
  min-height: clamp(430px, 72vh, 700px);
  margin: 96px auto 42px;
  padding: clamp(96px, 13vh, 132px) clamp(20px, 5vw, 52px) clamp(48px, 8vh, 68px);
  align-items: end;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.project-hero {
  width: 100vw;
  width: 100dvw;
  max-width: none;
  min-height: clamp(390px, 64vh, 600px);
  margin: 96px calc(50% - 50vw) 52px;
  margin: 96px calc(50% - 50dvw) 52px;
  padding: clamp(96px, 13vh, 128px) clamp(20px, 5vw, 52px) clamp(42px, 7vh, 64px);
  border: 1px solid var(--line);
  border-left: 0;
  border-right: 0;
  border-radius: 0;
}

.page-shell > .page-hero.compact {
  width: min(var(--max), 100%);
  max-width: var(--max);
  min-height: clamp(400px, 66vh, 620px);
  margin: 0 auto 54px;
  padding: clamp(102px, 14vh, 138px) clamp(22px, 6vw, 68px) clamp(48px, 8vh, 74px);
  border: 1px solid var(--line);
  border-radius: 14px;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.page-shell > .page-hero.compact > * {
  max-width: min(760px, 100%);
}

.company-hero {
  width: min(var(--max), 100%);
  max-width: var(--max);
  min-height: clamp(420px, 66vh, 640px);
  margin: 0 auto 54px;
  padding: clamp(28px, 5vw, 46px);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  border: 1px solid var(--line);
  border-radius: 14px;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.company-hero img {
  border-radius: 10px;
}

.hero h1,
.project-hero h1,
.page-hero.compact h1,
.company-hero h1 {
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1;
  max-width: min(18ch, 92vw);
  text-wrap: balance;
}

.hero .subtitle,
.project-hero p,
.page-hero.compact p,
.company-hero p {
  font-size: clamp(16px, 1.55vw, 22px);
}

.project-hero-reference h1,
.project-hero-reference p,
.project-hero-reference .project-meta {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.contact-copy h1 {
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1;
  max-width: min(15ch, 92vw);
  margin-bottom: 18px;
  text-wrap: balance;
}

.hero-slider-ui {
  inset: auto clamp(14px, 3vw, 24px) clamp(14px, 3vw, 24px);
  gap: 14px;
}

.hero-slider-arrows,
.hero-slider-bullets {
  gap: 8px;
}

.hero-slider-arrow {
  width: 40px;
  height: 40px;
  font-size: 20px;
}

.hero-slider-bullet {
  width: 10px;
  height: 10px;
}

.hero-slider-bullet[aria-current="true"] {
  width: 24px;
}

.hero-home-slider .hero-slider-project {
  display: none;
}

.hero-home-slider .hero-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 100%;
  max-width: none;
  min-height: 100%;
  border-left: 0;
  background: transparent;
  backdrop-filter: none;
  padding: 0 clamp(14px, 3vw, 24px) clamp(92px, 5.8vw, 118px);
}

.hero-home-slider .hero-inner > :not(.hero-actions) {
  display: none;
}

.hero-home-slider .hero-actions {
  position: relative;
  z-index: 5;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin: 0;
}

.hero-home-slider.has-hero-slider {
  aspect-ratio: 1916 / 821;
  height: auto;
  min-height: 0;
  margin-top: 78px;
  padding-top: 0;
  padding-bottom: 0;
}

.hero-home-slider .hero-slider-ui {
  inset: auto clamp(14px, 3vw, 24px) clamp(34px, 2.6vw, 52px) auto;
  justify-content: flex-end;
  gap: 12px;
}

.hero-home-slider .hero-slide {
  background-position: center center;
  background-size: cover;
}

.project-banner-slider .breadcrumb,
.project-banner-slider .project-hero-copy {
  display: none;
}

.project-banner-slider .hero-slider-project {
  display: none;
}

.project-banner-slider .hero-slider-ui {
  inset: auto clamp(14px, 3vw, 24px) clamp(14px, 3vw, 24px) auto;
  justify-content: flex-end;
  gap: 12px;
}

.hero-slider-contain .hero-slide {
  background-size: contain;
  background-position: top center;
  background-color: #05080c;
}

.hero-slider-contain::before {
  background:
    linear-gradient(90deg, rgba(4,7,10,.88) 0%, rgba(4,7,10,.62) 44%, rgba(4,7,10,.22) 100%),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.28));
}

.hero.has-hero-slider,
.project-hero.has-hero-slider,
.page-shell > .page-hero.compact.has-hero-slider,
.company-hero.has-hero-slider {
  width: 100vw;
  width: 100dvw;
  max-width: none;
  margin-top: 0;
  margin-left: calc(50% - 50vw);
  margin-left: calc(50% - 50dvw);
  margin-right: calc(50% - 50vw);
  margin-right: calc(50% - 50dvw);
}

.hero.has-hero-slider,
.page-shell > .page-hero.compact.has-hero-slider,
.company-hero.has-hero-slider {
  min-height: clamp(360px, 48vw, 700px);
  margin-top: 78px;
  margin-bottom: 52px;
  padding-top: clamp(40px, 5vw, 58px);
  padding-bottom: clamp(32px, 5vw, 46px);
}

.company-hero.has-hero-slider::before {
  background:
    linear-gradient(90deg, rgba(4,7,10,.56) 0%, rgba(4,7,10,.28) 48%, rgba(4,7,10,.10) 100%),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.2));
}

.company-hero.has-hero-slider .hero-slide {
  transform: none;
  transition-property: opacity;
  background-position: center center;
}

.project-hero.has-hero-slider {
  min-height: clamp(360px, 48vw, 700px);
  margin-top: 78px;
  margin-bottom: 52px;
  padding-top: clamp(40px, 5vw, 58px);
  padding-bottom: clamp(32px, 5vw, 46px);
}

.project-hero.project-banner-slider.has-hero-slider {
  padding: 0;
}

.company-hero.no-dim-slider.has-hero-slider::before,
.hero-home-slider.no-dim-slider.has-hero-slider::before,
.project-hero.no-dim-slider.has-hero-slider::before {
  background: none;
}

.page-shell.has-hero-slider-shell {
  padding-top: 0;
}

.page-shell > .page-hero.compact.has-hero-slider,
.project-hero.has-hero-slider,
.company-hero.has-hero-slider {
  padding-top: clamp(40px, 5vw, 58px);
}

.hero.hero-home-slider.has-hero-slider {
  aspect-ratio: 1916 / 821;
  height: auto;
  min-height: 0;
  margin-top: 78px;
  padding-top: 0;
  padding-bottom: 0;
}

@media (max-width: 900px) {
  .company-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .experience-ticker {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-top: -1px;
    margin-bottom: 28px;
  }

  .experience-ticker__track {
    animation-duration: 22s;
  }

  .experience-ticker__track span {
    padding: 12px 36px;
    font-size: 15px;
  }

  .experience-ticker__track span::before {
    width: 7px;
    height: 7px;
    margin-right: 18px;
  }

  .contact-fact {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding: 12px 14px;
  }

  .fact-copy span {
    font-size: 14px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hero {
    width: calc(100% - 16px);
    min-height: clamp(360px, 66svh, 520px);
    margin: 84px auto 30px;
    padding: 88px 16px 46px;
  }

  .project-hero {
    width: 100vw;
    width: 100dvw;
    max-width: none;
    min-height: clamp(340px, 58svh, 460px);
    margin: 84px calc(50% - 50vw) 40px;
    margin: 84px calc(50% - 50dvw) 40px;
    padding: 88px 16px 36px;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .page-shell > .page-hero.compact,
  .company-hero {
    min-height: auto;
    margin-bottom: 34px;
    padding: 86px 16px 34px;
  }

  .hero.has-hero-slider,
  .project-hero.has-hero-slider,
  .page-shell > .page-hero.compact.has-hero-slider,
  .company-hero.has-hero-slider {
    border-radius: 0;
    padding-top: 84px;
  }

  .hero.has-hero-slider,
  .page-shell > .page-hero.compact.has-hero-slider,
  .company-hero.has-hero-slider {
    min-height: clamp(320px, 48svh, 430px);
    margin-top: 70px;
    margin-bottom: 40px;
    padding-top: 84px;
    padding-bottom: 28px;
  }

  .project-hero.has-hero-slider {
    min-height: clamp(300px, 46svh, 420px);
    margin-top: 70px;
    margin-bottom: 40px;
    padding-top: 84px;
    padding-bottom: 28px;
  }

  .hero h1,
  .project-hero h1,
  .page-hero.compact h1,
  .company-hero h1,
  .contact-copy h1 {
    font-size: clamp(28px, 8vw, 40px);
    max-width: none;
  }

  .hero-slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .hero-slider-bullet[aria-current="true"] {
    width: 20px;
  }

  .hero-slider-project {
    min-height: 36px;
    padding-inline: 12px;
    font-size: 13px;
  }

  .hero-home-slider.has-hero-slider {
    aspect-ratio: 1 / 1;
    height: auto;
    min-height: 0;
    margin-top: 70px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-home-slider .hero-inner {
    padding: 0 14px 68px;
  }

  .hero-home-slider .hero-actions {
    width: 100%;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero-home-slider .hero-slider-ui {
    inset: auto 14px 18px auto;
    justify-content: flex-end;
  }

  .hero-home-slider .hero-slide {
    background-size: cover;
  }

  .hero-home-slider.hero-slider-contain .hero-slide {
    background-size: contain;
    background-position: top center;
  }
}

.hero.has-hero-slider,
.project-hero.has-hero-slider,
.page-shell > .page-hero.compact.has-hero-slider,
.company-hero.has-hero-slider,
.hero.hero-home-slider.has-hero-slider {
  margin-top: 0;
}

.project-detail {
  overflow: visible;
}

.project-hero,
.project-hero.has-hero-slider {
  margin-top: 0;
  margin-bottom: 26px;
}

.project-detail {
  padding-top: 34px;
}

.project-detail > .detail-aside {
  --aside-sticky-top: 108px;
  position: sticky !important;
  top: var(--aside-sticky-top);
  bottom: 20px;
  z-index: 2;
  align-self: start;
  height: max-content;
  max-height: calc(100svh - var(--aside-sticky-top) - 20px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 8px;
}

.project-detail > .detail-aside .equipment-list {
  max-height: min(52svh, 520px);
}

@media (max-width: 760px) {
  .project-detail > .detail-aside {
    position: static !important;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }
}

.hero-home-slider .hero-actions,
.hero-home-slider .hero-slider-ui {
  width: min(430px, calc(100vw - 28px));
}

.hero-home-slider .hero-actions {
  justify-content: flex-start;
}

.hero-home-slider .hero-slider-ui {
  right: clamp(14px, 3vw, 24px);
  bottom: clamp(18px, 2.4vw, 34px);
  left: auto;
  justify-content: flex-start;
}

.mobile-home-hero {
  display: none;
}

.brand span {
  display: none;
}

.brand img {
  width: clamp(180px, 16vw, 248px);
  height: auto;
  max-height: 64px;
  object-fit: contain;
}

.footer-logo {
  width: min(270px, 82vw);
  height: auto;
}

@media (max-width: 640px) {
  .brand img {
    width: min(214px, 56vw);
    height: auto;
    max-height: 58px;
  }
}

.home-scroll-cue {
  appearance: none;
  position: relative;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  margin: -18px auto -4px;
  border: 1px solid rgba(237,28,36,.42);
  border-radius: 999px;
  background: radial-gradient(circle at 50% 35%, rgba(237,28,36,.32), rgba(9,14,20,.92) 64%);
  box-shadow: 0 18px 54px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.18);
  cursor: pointer;
}

.home-scroll-cue span {
  width: 13px;
  height: 13px;
  margin-top: -4px;
  border-right: 2px solid #ff3b1f;
  border-bottom: 2px solid #ff3b1f;
  transform: rotate(45deg);
  animation: home-scroll-cue-pulse 1.8s ease-in-out infinite;
}

.home-scroll-cue:hover {
  border-color: rgba(83,195,255,.68);
  transform: translateY(2px);
}

.home-page #featured-projects {
  padding-top: 62px;
  scroll-margin-top: 96px;
}

@keyframes home-scroll-cue-pulse {
  0%, 100% { opacity: .65; transform: translateY(-2px) rotate(45deg); }
  50% { opacity: 1; transform: translateY(4px) rotate(45deg); }
}

@media (prefers-reduced-motion: reduce) {
  .home-scroll-cue span {
    animation: none;
  }
}

@media (max-width: 760px) {
  .home-page .hero-home-slider.has-hero-slider,
  .home-page .home-scroll-cue {
    display: none !important;
  }

  .mobile-home-hero {
    display: grid;
    align-content: center;
    gap: 16px;
    min-height: clamp(250px, 44svh, 360px);
    margin-top: 70px;
    padding: 44px 22px 38px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,.08);
    background:
      radial-gradient(circle at 50% 0%, rgba(237,28,36,.12), transparent 30%),
      radial-gradient(circle at 0% 50%, rgba(84,197,255,.10), transparent 28%),
      linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.024) 1px, transparent 1px),
      linear-gradient(135deg, #070b10, #101822 52%, #05070b);
    background-size: auto, auto, 118px 118px, 118px 118px, auto;
  }

  .mobile-home-hero h1,
  .mobile-home-hero p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-wrap: balance;
  }

  .mobile-home-hero h1 {
    max-width: 390px;
    margin: 0 auto;
    -webkit-line-clamp: 2;
    font-size: clamp(36px, 11vw, 48px);
    line-height: 1;
  }

  .mobile-home-hero p {
    max-width: 360px;
    margin: 0 auto;
    -webkit-line-clamp: 2;
    color: #c3d0ea;
    font-size: clamp(17px, 5vw, 21px);
    line-height: 1.28;
  }

  .home-scroll-cue {
    width: 42px;
    height: 42px;
    margin-top: -12px;
  }

  .home-page #featured-projects {
    padding-top: 36px;
  }
}

.project-hero.project-banner-slider.hero-slider-contain.has-hero-slider {
  aspect-ratio: 1916 / 821;
  height: auto;
  min-height: 0;
  padding: 0;
}

.project-hero.national-arena-hero.hero-slider-contain .hero-slide {
  background-size: cover;
  background-position: center center;
}

@media (max-width: 760px) {
  .project-hero.national-arena-hero.project-banner-slider.hero-slider-contain.has-hero-slider {
    aspect-ratio: 1 / 1;
    height: auto;
    min-height: 0;
  }

  .project-hero.national-arena-hero.hero-slider-contain .hero-slide {
    background-size: contain;
    background-position: center center;
  }
}
