:root {
  --red: #c51f2b;
  --gold: #efc16d;
  --gold-soft: #f6d89b;
  --steel: #8d8f93;
  --bg: #0f1115;
  --bg-soft: #181a20;
  --panel: rgba(255,255,255,0.06);
  --paper: #f6f3ec;
  --white: #ffffff;
  --text: #1a1c22;
  --dark: #101216;
  --muted: rgba(255,255,255,0.78);
  --muted-dark: #5c616c;
  --line: rgba(255,255,255,0.12);
  --dark-line: rgba(20,20,24,0.12);
  --page: min(1240px, calc(100% - 48px));
  --display: "Arial Narrow", Impact, sans-serif;
  --body: Arial, Helvetica, sans-serif;
  --section-space: clamp(82px, 8vw, 138px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #111318;
  color: var(--text);
  font-family: var(--body);
  line-height: 1.6;
  overflow-x: hidden;
}

body.is-loading { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.bg-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
}
.bg-grid {
  z-index: -4;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.26), rgba(0,0,0,0.40)),
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, #080c13 0%, #0b0f16 46%, #0f1218 100%);
  background-size: auto, 84px 84px, 84px 84px, auto;
}
.bg-glow-left {
  z-index: -3;
  background: radial-gradient(circle at 8% 18%, rgba(239,193,109,0.14), transparent 28%);
}
.bg-glow-right {
  z-index: -2;
  background:
    radial-gradient(circle at 82% 16%, rgba(197,31,43,0.28), transparent 26%),
    radial-gradient(circle at 92% 74%, rgba(197,31,43,0.18), transparent 18%);
}
.bg-vignette {
  z-index: -1;
  background: radial-gradient(circle at 50% 50%, transparent 45%, rgba(0,0,0,0.30) 100%);
}

.site-intro {
  position: fixed;
  inset: 0;
  z-index: 200;
  background:
    radial-gradient(circle at 50% 44%, rgba(197,31,43,0.18), transparent 22%),
    linear-gradient(135deg, #06070a 0%, #0f1115 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .7s ease, visibility .7s ease;
}
.site-intro.hide {
  opacity: 0;
  visibility: hidden;
}

.intro-core {
  position: relative;
  width: min(640px, calc(100% - 40px));
  padding: 56px 32px 44px;
  text-align: center;
  color: var(--white);
}

.intro-rings {
  position: absolute;
  left: 50%;
  top: 34%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(239,193,109,0.12);
}
.ring-a {
  width: 320px;
  height: 320px;
  animation: spinA 10s linear infinite;
}
.ring-b {
  width: 440px;
  height: 440px;
  border-color: rgba(255,255,255,0.10);
  animation: spinB 14s linear infinite;
}

.intro-logo-stack {
  position: relative;
  width: min(380px, 70vw);
  margin: 0 auto;
  min-height: 260px;
}

.intro-logo-stack img {
  position: absolute;
  inset: 0;
  width: 100%;
  filter: drop-shadow(0 18px 26px rgba(0,0,0,0.36));
}

.intro-logo-base {
  opacity: 0;
  transform: scale(.82);
  animation: logoBaseIn .9s ease forwards;
}

.intro-logo-grey {
  opacity: 0;
  transform: translate(110px,-110px) rotate(-24deg) scale(.92);
  animation: logoGreyFly 1.2s .45s cubic-bezier(.2,.9,.2,1) forwards;
}

.intro-core p {
  margin: 22px 0 8px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  animation: introFadeUp 1s .55s both;
}
.intro-core span {
  display: block;
  color: rgba(255,255,255,0.74);
  font-size: .95rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: introFadeUp 1s .8s both;
}
.intro-skip {
  margin-top: 26px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.20);
  background: transparent;
  color: rgba(255,255,255,0.88);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  animation: introFadeUp 1s 1s both;
}

@keyframes logoBaseIn {
  0% { opacity: 0; transform: scale(.78); }
  65% { opacity: 1; transform: scale(1.03); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes logoGreyFly {
  0% { opacity: 0; transform: translate(110px,-110px) rotate(-24deg) scale(.92); }
  58% { opacity: 1; transform: translate(-10px,10px) rotate(2deg) scale(1.02); }
  100% { opacity: 1; transform: translate(0,0) rotate(0deg) scale(1); }
}
@keyframes introFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes spinA {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes spinB {
  from { transform: translate(-50%, -50%) rotate(360deg); }
  to { transform: translate(-50%, -50%) rotate(0deg); }
}

.site-header {
  position: relative;
  z-index: 40;
  width: var(--page);
  margin: 0 auto;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0 0;
  color: var(--white);
}

.brand {
  width: 106px;
  display: block;
}
.brand img {
  max-height: 62px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: .03em;
}
.main-nav a:not(.nav-cta) {
  position: relative;
  padding: 10px 0;
}
.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.main-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-cta {
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,0.24);
  transition: .25s ease;
}
.nav-cta:hover {
  background: rgba(255,255,255,0.06);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--white);
}

.hero {
  position: relative;
  width: var(--page);
  margin: 10px auto 0;
  min-height: calc(100vh - 110px);
  max-height: 980px;
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 54px;
  align-items: center;
  color: var(--white);
  padding: 72px 0 92px;
  overflow: hidden;
}

.beam {
  position: absolute;
  background: linear-gradient(90deg, #2d3037, #7d8086 50%, #292c32);
  border: 2px solid rgba(0,0,0,0.55);
  box-shadow: 0 20px 42px rgba(0,0,0,0.25);
  opacity: .34;
}
.beam-top {
  width: 420px;
  height: 30px;
  right: -80px;
  top: 54px;
  transform: rotate(53deg);
}
.beam-bottom {
  width: 560px;
  height: 36px;
  right: -70px;
  bottom: 28px;
  transform: rotate(-34deg);
}

.hero-content {
  max-width: 640px;
}
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--red);
  font-family: var(--display);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-kicker span {
  width: 24px;
  height: 2px;
  background: var(--red);
}
.hero h1 {
  margin: 18px 0 20px;
  font-family: var(--display);
  line-height: .86;
  text-transform: uppercase;
  letter-spacing: -.05em;
}
.hero h1 strong,
.hero h1 em {
  display: block;
  font-size: clamp(4.1rem, 8vw, 8rem);
  font-style: normal;
}
.hero h1 strong {
  color: var(--white);
}
.hero h1 em {
  color: transparent;
  -webkit-text-stroke: 2px rgba(189,193,200,.72);
}
.hero p {
  max-width: 650px;
  color: rgba(255,255,255,.82);
  font-size: 1.08rem;
  margin: 0;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.button {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: .25s ease;
}
.button-primary {
  background: var(--red);
  color: var(--white);
}
.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(197,31,43,0.26);
}
.button-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,0.28);
  background: transparent;
}
.button-secondary:hover {
  background: rgba(255,255,255,0.06);
}
.hero-tags {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 36px;
  color: rgba(255,255,255,.76);
  font-family: var(--display);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-tags span {
  position: relative;
  padding-left: 14px;
}
.hero-tags span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: translateY(-50%) rotate(45deg);
}

.hero-card {
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-frame {
  position: relative;
  width: min(100%, 452px);
  min-height: 446px;
  padding: 64px 40px 34px;
  background: linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 36px 80px rgba(0,0,0,0.26);
}
.card-frame::before {
  content: "";
  position: absolute;
  left: -13px;
  top: 35%;
  width: 6px;
  height: 160px;
  background: var(--red);
}
.card-corner {
  position: absolute;
  width: 42px;
  height: 42px;
  border-color: rgba(255,255,255,.55);
}
.card-tl {
  left: 18px;
  top: 18px;
  border-top: 2px solid;
  border-left: 2px solid;
}
.card-br {
  right: 18px;
  bottom: 18px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}
.card-frame img {
  max-width: 100%;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,0.32));
}
.card-copy {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.16);
}
.card-copy strong {
  display: block;
  font-family: var(--display);
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--white);
}
.card-copy p {
  color: rgba(255,255,255,.74);
  margin: 8px 0 0;
  font-size: .92rem;
}

.intro-strip {
  position: relative;
  z-index: 4;
  width: var(--page);
  margin: -44px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  box-shadow: 0 24px 56px rgba(20,20,24,0.14);
}
.intro-strip div {
  padding: 24px 22px;
  border-right: 1px solid var(--dark-line);
  display: flex;
  gap: 14px;
  align-items: center;
}
.intro-strip div:last-child { border-right: 0; }
.intro-strip strong {
  color: var(--red);
  font-family: var(--display);
  font-size: 1.45rem;
}
.intro-strip span {
  font-family: var(--display);
  font-size: .94rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #202226;
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: var(--section-space) 0;
}
.section-heading {
  margin-bottom: 42px;
}
.section-heading.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 46px;
}
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-family: var(--display);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.section-label::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
}
.section-label.light { color: var(--gold); }

.section h2,
.process-panel h2 {
  margin: 16px 0 0;
  color: #11131a;
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: .96;
  text-transform: uppercase;
  letter-spacing: -.04em;
}
.section-heading p {
  max-width: 450px;
  margin: 0 0 10px;
  color: #5c616c;
  font-size: 1rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
}
.about-card {
  padding: 34px;
}
.main-card {
  background: var(--white);
  border: 1px solid var(--dark-line);
}
.main-card .lead {
  margin-top: 0;
  font-size: 1.14rem;
  font-weight: 600;
  color: #171a21;
}
.main-card p:last-child { color: #5c616c; }
.side-card {
  background: #14161b;
  color: var(--white);
  box-shadow: 14px 14px 0 var(--red);
}
.card-kicker {
  color: var(--gold);
  font-family: var(--display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.side-card h3 {
  margin: 14px 0 20px;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1.04;
  text-transform: uppercase;
}
.side-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.side-card li {
  padding: 12px 0 12px 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,.80);
  position: relative;
}
.side-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 6px;
  height: 6px;
  background: var(--red);
  transform: rotate(45deg);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card,
.location-box,
.careers-panel {
  padding: 28px;
  background: rgba(255,255,255,.86);
  border: 1px solid var(--dark-line);
}
.service-card {
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(20,20,24,.08);
}
.service-card.featured {
  background: linear-gradient(180deg, #191b20, #111216);
  color: var(--white);
  border-color: rgba(255,255,255,0.08);
}
.service-card.featured p { color: rgba(255,255,255,.78); }
.service-no,
.process-grid strong,
.project-overlay strong {
  display: block;
  color: var(--red);
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
}
.service-card h3,
.process-grid h3,
.project-overlay h3,
.location-box h3,
.careers-panel h3 {
  margin: 18px 0 12px;
  font-family: var(--display);
  font-size: 1.75rem;
  line-height: 1.02;
  text-transform: uppercase;
}
.service-card p { margin: 0; color: #5c616c; }

.process-panel {
  background: #121419;
  color: var(--white);
  padding: var(--section-space) 0;
}
.process-inner {
  width: var(--page);
  margin: 0 auto;
}
.process-panel h2 { color: var(--white); }
.process-panel .section-heading p { color: rgba(255,255,255,.74); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.12);
}
.process-grid article {
  padding: 28px;
  background: rgba(255,255,255,0.04);
}
.process-grid strong { color: var(--gold); }
.process-grid h3 {
  color: var(--white);
  font-size: 1.46rem;
  margin-top: 46px;
}
.process-grid p {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: .9rem;
}

.projects-section { padding-bottom: 60px; }
.project-grid {
  display: grid;
  grid-template-columns: 1.24fr .76fr;
  gap: 22px;
}
.project-card {
  position: relative;
  overflow: hidden;
  min-height: 350px;
  background: #111318;
}
.project-large {
  grid-row: span 2;
  min-height: 724px;
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .42s ease;
}
.project-card:hover img {
  transform: scale(1.05);
}
.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,.88), rgba(0,0,0,.16) 50%, rgba(0,0,0,.05)),
    linear-gradient(to right, rgba(0,0,0,.24), rgba(0,0,0,0));
}
.project-overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 24px;
  color: var(--white);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}
.project-overlay > div { flex: 1; }
.project-overlay span {
  color: var(--gold);
  font-family: var(--display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.project-overlay h3 {
  color: var(--white);
  font-size: 1.65rem;
  margin-bottom: 0;
}
.project-overlay strong {
  color: rgba(255,255,255,.28);
  font-size: 2.8rem;
}

.location-grid,
.careers-grid,
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.map-card {
  background: var(--white);
  border: 1px solid var(--dark-line);
  overflow: hidden;
  min-height: 460px;
}
.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 460px;
}
.location-info {
  display: grid;
  gap: 18px;
}
.location-box p {
  margin: 0;
  color: #5c616c;
}
.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .86rem;
}

.careers-panel p {
  color: #5c616c;
}
.careers-panel ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: #5c616c;
}
.career-form,
.contact-form {
  color: var(--white);
  padding: 34px;
  min-height: 100%;
  background: linear-gradient(180deg, #17191e, #101216);
  border: 1px solid rgba(255,255,255,0.08);
}
.contact-copy {
  padding: 34px;
  min-height: 100%;
  background: var(--white);
  border: 1px solid var(--dark-line);
}
.contact-copy p {
  color: #5c616c;
}
.contact-list {
  margin-top: 28px;
}
.contact-list div {
  padding: 14px 0;
  border-top: 1px solid var(--dark-line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.contact-list span {
  color: #5c616c;
  font-size: .88rem;
}
.contact-list strong {
  text-align: right;
  color: #151820;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.contact-form label,
.career-form label {
  display: block;
  margin-bottom: 18px;
}
.contact-form label span,
.career-form label span {
  display: block;
  margin-bottom: 7px;
  color: var(--gold);
  font-family: var(--display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.contact-form input,
.contact-form textarea,
.contact-form select,
.career-form input,
.career-form textarea,
.career-form select {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.14);
  outline: 0;
  background: rgba(255,255,255,0.04);
  color: var(--white);
  padding: 14px 14px;
}
.contact-form input[type=file],
.career-form input[type=file] {
  padding: 12px;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.career-form input:focus,
.career-form textarea:focus,
.career-form select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(197,31,43,0.12);
}
.full {
  width: 100%;
  border: 0;
}
.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--gold-soft);
  font-size: .84rem;
}

.site-footer {
  padding: 50px max(24px, calc((100vw - 1240px) / 2)) 28px;
  background: #0e1014;
  color: rgba(255,255,255,.74);
}
.footer-brand { width: 186px; }
.site-footer > p {
  margin: 16px 0 22px;
  max-width: 760px;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: var(--display);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-bottom {
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: .82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero,
  .about-grid,
  .location-grid,
  .careers-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    max-height: none;
    gap: 36px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-card {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  :root {
    --page: min(100% - 34px, 720px);
  }

  .site-header {
    padding-top: 12px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 5;
  }

  .main-nav {
    position: absolute;
    top: 74px;
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 24px 20px;
    background: rgba(15,17,21,0.98);
    border: 1px solid rgba(255,255,255,0.08);
    transform: translateY(-120%);
    transition: transform .28s ease;
  }
  .main-nav.open {
    transform: translateY(0);
  }

  .hero {
    padding-top: 46px;
  }

  .intro-strip,
  .service-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .intro-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--dark-line);
  }
  .intro-strip div:last-child { border-bottom: 0; }

  .project-large {
    grid-row: auto;
    min-height: 420px;
  }

  .section-heading.split {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  :root {
    --page: calc(100% - 28px);
    --section-space: 72px;
  }

  .hero h1 strong,
  .hero h1 em {
    font-size: clamp(3.5rem, 18vw, 5.6rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-tags {
    gap: 14px 18px;
  }

  .card-frame,
  .main-card,
  .side-card,
  .service-card,
  .location-box,
  .careers-panel,
  .career-form,
  .contact-copy,
  .contact-form {
    padding: 28px;
  }

  .contact-list div,
  .footer-bottom,
  .project-overlay {
    flex-direction: column;
  }

  .contact-list strong {
    text-align: left;
  }

  .service-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .project-overlay strong {
    align-self: flex-start;
  }

  .intro-logo-stack {
    min-height: 200px;
  }
  .intro-logo-base,
  .intro-logo-grey {
    width: 100%;
  }
}


/* ===== V6 refinement updates ===== */

/* Premium precision cursor */
@media (pointer: fine) {
  body {
    cursor: none;
  }

  a, button, input, textarea, select, label, .project-card, .service-card {
    cursor: none;
  }

  .fx-cursor-dot,
  .fx-cursor-ring {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: 250;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity .2s ease, width .18s ease, height .18s ease, border-color .18s ease, background .18s ease;
  }

  .fx-cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(197,31,43,.55);
  }

  .fx-cursor-ring {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(239,193,109,.55);
    border-radius: 50%;
  }

  body.cursor-ready .fx-cursor-dot,
  body.cursor-ready .fx-cursor-ring {
    opacity: 1;
  }

  body.cursor-hover .fx-cursor-ring {
    width: 48px;
    height: 48px;
    border-color: rgba(255,255,255,.65);
  }

  body.cursor-hover .fx-cursor-dot {
    background: var(--gold);
  }
}

/* Readability improvements on the dark background */
.section h2 {
  color: var(--white);
  text-shadow: 0 1px 0 rgba(0,0,0,.15);
}

.section-heading p {
  color: rgba(255,255,255,.76);
}

.location-box h3,
.careers-panel h3,
.careers-photo-content h3,
.contact-copy h2,
.service-card:not(.featured) h3,
.main-card h2 {
  color: #12141a;
  text-shadow: none;
}

.main-card p,
.service-card:not(.featured) p,
.location-box p,
.careers-panel p,
.careers-panel li,
.contact-copy p {
  color: #565c68;
}

/* Better themed map section */
.map-card {
  position: relative;
  min-height: 500px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.02)),
    #0f1115;
  border: 1px solid rgba(239,193,109,.20);
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
}

.map-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(15,17,21,.38), transparent 45%),
    linear-gradient(to right, rgba(197,31,43,.12), transparent 35%);
  mix-blend-mode: multiply;
}

.map-card iframe {
  min-height: 500px;
  filter: grayscale(1) invert(.88) contrast(1.05) brightness(.76) saturate(.7);
  opacity: .92;
}

.map-badge {
  position: absolute;
  z-index: 3;
  left: 22px;
  top: 22px;
  padding: 14px 16px;
  background: rgba(15,17,21,.88);
  border: 1px solid rgba(239,193,109,.26);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(0,0,0,.24);
}

.map-badge span {
  display: block;
  color: var(--gold);
  font-family: var(--display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.map-badge strong {
  display: block;
  margin-top: 3px;
  font-family: var(--display);
  font-size: 1.55rem;
  text-transform: uppercase;
}

/* Careers visual photo panel */
.careers-visual {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border: 1px solid rgba(239,193,109,.18);
  background: #111318;
  box-shadow: 0 28px 70px rgba(0,0,0,.20);
}

.careers-visual img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  transform: scale(1.02);
}

.careers-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,.88), rgba(0,0,0,.24) 54%, rgba(0,0,0,.06)),
    linear-gradient(to right, rgba(0,0,0,.48), rgba(0,0,0,.04));
}

.careers-photo-content {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  padding: 36px;
  color: var(--white);
}

.careers-photo-content span {
  display: block;
  color: var(--gold);
  font-family: var(--display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.careers-photo-content h3 {
  max-width: 540px;
  margin: 14px 0 14px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1;
  text-transform: uppercase;
}

.careers-photo-content p,
.careers-photo-content li {
  color: rgba(255,255,255,.78);
}

.careers-photo-content p {
  max-width: 560px;
  margin: 0 0 16px;
}

.careers-photo-content ul {
  margin: 0;
  padding-left: 18px;
}

/* Cleaner footer */
.site-footer > p {
  color: rgba(255,255,255,.72);
}

@media (max-width: 1080px) {
  .careers-visual,
  .careers-visual img {
    min-height: 520px;
  }
}

@media (max-width: 560px) {
  .careers-photo-content {
    padding: 28px;
  }

  .map-badge {
    left: 14px;
    top: 14px;
  }
}


/* ===== V8 clean company website refinement ===== */

/* Remove overly large empty rhythm after the deleted about section */
.services-section {
  padding-top: clamp(70px, 7vw, 110px);
}

/* Ensure all major headings are readable and company-facing */
.section h2,
.process-panel h2 {
  color: #ffffff;
}

.service-card:not(.featured) h3,
.location-box h3,
.careers-photo-content h3,
.contact-copy h2,
.careers-panel h3 {
  color: #12141a;
}

.careers-photo-content h3 {
  color: #ffffff;
}

/* Cleaner section labels */
.section-label {
  color: var(--red);
}

/* Make light cards more premium and less plain */
.main-card,
.service-card:not(.featured),
.location-box,
.contact-copy {
  background: rgba(255, 255, 255, 0.94);
}

/* Better visual consistency for forms */
.contact-form,
.career-form {
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
}

/* Keep footer professional */
.site-footer {
  border-top: 1px solid rgba(255,255,255,.08);
}


/* ===== V9 final cleanup ===== */

/* Hide any decorative hero beams completely */
.beam {
  display: none !important;
}

/* Keep section headers balanced after removing right-side note text */
.section-heading.split {
  align-items: flex-start;
}

/* Reduce empty spacing after removed heading notes */
.section-heading {
  margin-bottom: 34px;
}

.section-heading.split > div {
  max-width: 900px;
}

.section-heading.split p:empty {
  display: none;
}

/* Slightly tighten the flow of the page */
.services-section,
.projects-section,
.location-section,
.careers-section {
  padding-top: clamp(68px, 7vw, 110px);
}


/* ===== V10 dark card styling ===== */

/* Make service cards all dark by default, similar to old point 02 */
.service-card,
.intro-strip,
.intro-strip div,
.location-box {
  background: linear-gradient(180deg, #17191e, #101216) !important;
  color: #ffffff;
  border-color: rgba(255,255,255,0.10) !important;
}

.service-card,
.location-box,
.intro-strip div {
  transition: background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card h3,
.location-box h3,
.intro-strip span,
.intro-strip strong {
  color: #ffffff !important;
}

.service-card p,
.location-box p {
  color: rgba(255,255,255,0.76) !important;
}

.service-card .service-no,
.intro-strip strong {
  color: var(--red) !important;
}

.location-box .text-link {
  color: var(--gold) !important;
}

/* Hover state: switch to white cards */
.service-card:hover,
.location-box:hover,
.intro-strip div:hover {
  background: rgba(255,255,255,0.96) !important;
  color: #12141a !important;
  border-color: rgba(20,20,24,0.12) !important;
  box-shadow: 0 18px 34px rgba(20,20,24,0.10);
  transform: translateY(-4px);
}

.service-card:hover h3,
.location-box:hover h3,
.intro-strip div:hover span,
.intro-strip div:hover strong {
  color: #12141a !important;
}

.service-card:hover p,
.location-box:hover p {
  color: #5c616c !important;
}

.service-card:hover .service-no,
.intro-strip div:hover strong {
  color: var(--red) !important;
}

.location-box:hover .text-link {
  color: var(--red) !important;
}

/* Keep the overall workflow strip visually unified */
.intro-strip {
  box-shadow: 0 24px 56px rgba(0,0,0,0.22);
  gap: 0;
}

.intro-strip div {
  border-right: 1px solid rgba(255,255,255,0.08);
}

.intro-strip div:last-child {
  border-right: 0;
}

/* Keep mobile borders consistent */
@media (max-width: 820px) {
  .intro-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .intro-strip div:last-child {
    border-bottom: 0;
  }
}


/* ===== V11 dark contact panel update ===== */

/* Make the left contact section match the dark premium feel, similar to the careers visual */
.contact-copy {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(197,31,43,0.20), transparent 24%),
    radial-gradient(circle at 12% 82%, rgba(239,193,109,0.08), transparent 22%),
    linear-gradient(180deg, #17191e, #101216) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  color: #ffffff !important;
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
}

.contact-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 84px 84px;
  opacity: 0.32;
  pointer-events: none;
}

.contact-copy > * {
  position: relative;
  z-index: 1;
}

.contact-copy .section-label {
  color: var(--red) !important;
}

.contact-copy h2 {
  color: #ffffff !important;
}

.contact-copy p {
  color: rgba(255,255,255,0.78) !important;
}

.contact-list div {
  border-top: 1px solid rgba(255,255,255,0.12) !important;
}

.contact-list span {
  color: rgba(255,255,255,0.66) !important;
}

.contact-list strong {
  color: #ffffff !important;
}


/* ===== V12 process cleanup ===== */

/* Process boxes now show only number and title after removing descriptions */
.process-grid article {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.process-grid h3 {
  margin-top: 38px;
  margin-bottom: 0;
}


/* ===== V13 process section redesign ===== */

/* Make the process cards feel like the other website sections */
.process-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px !important;
  background: transparent !important;
}

.process-grid article {
  min-height: 220px;
  padding: 30px 28px;
  background: linear-gradient(180deg, #17191e, #101216) !important;
  border: 1px solid rgba(255,255,255,0.10);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.process-grid article:hover {
  background: rgba(255,255,255,0.96) !important;
  border-color: rgba(20,20,24,0.12) !important;
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(20,20,24,0.10);
}

.process-grid strong {
  color: var(--gold) !important;
  font-size: 1.7rem;
}

.process-grid h3 {
  margin-top: 34px;
  margin-bottom: 0;
  color: #ffffff !important;
  font-size: 1.55rem;
  line-height: 1.02;
  transition: color .25s ease;
}

.process-grid article:hover h3 {
  color: #12141a !important;
}

.process-grid article:hover strong {
  color: var(--red) !important;
}

/* Keep mobile responsive like the other card sections */
@media (max-width: 1080px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 560px) {
  .process-grid {
    grid-template-columns: 1fr !important;
  }
}


/* ===== V16 locked map update ===== */

/* Lock embedded Google Map so visitors cannot drag, scroll, zoom, or move it */
.map-card iframe {
  pointer-events: none !important;
}

/* Keep the map visually locked and intentional */
.map-card {
  cursor: default;
}

/* Small note style if needed later */
.map-card.locked-map::before {
  pointer-events: none;
}


/* ===== V18 process cards and email refinements ===== */

/* Better-looking process section: compact premium cards with accents */
.process-grid {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 22px !important;
  background: transparent !important;
}

.process-grid article {
  position: relative;
  min-height: 190px !important;
  padding: 28px !important;
  background:
    radial-gradient(circle at 88% 12%, rgba(197,31,43,0.14), transparent 26%),
    linear-gradient(180deg, #17191e, #101216) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  overflow: hidden;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between !important;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.process-grid article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  width: 4px;
  height: 48px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .25s ease;
}

.process-grid article::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: 42px;
  height: 2px;
  background: rgba(239,193,109,.55);
  transition: width .25s ease, background .25s ease;
}

.process-grid strong {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: var(--gold) !important;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(239,193,109,.25);
  font-size: 1.35rem !important;
  line-height: 1;
}

.process-grid h3 {
  position: relative;
  z-index: 1;
  margin: 46px 0 0 !important;
  color: #ffffff !important;
  font-size: 1.48rem !important;
  line-height: 1.02 !important;
  max-width: 240px;
}

.process-grid article:hover {
  background: rgba(255,255,255,0.96) !important;
  border-color: rgba(20,20,24,0.12) !important;
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(20,20,24,0.16);
}

.process-grid article:hover::before {
  transform: scaleY(1);
}

.process-grid article:hover::after {
  width: 72px;
  background: var(--red);
}

.process-grid article:hover strong {
  color: var(--red) !important;
  background: rgba(197,31,43,0.08);
  border-color: rgba(197,31,43,0.24);
}

.process-grid article:hover h3 {
  color: #12141a !important;
}

/* Careers email note */
.career-email-note {
  margin: 0 0 20px;
  padding: 14px 16px;
  color: rgba(255,255,255,0.84);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
}

.career-email-note a {
  color: var(--gold);
  font-weight: 700;
}

/* Contact email links */
.contact-list a,
.footer-links a {
  transition: color .25s ease;
}

.contact-list a:hover,
.footer-links a:hover {
  color: var(--gold);
}

@media (max-width: 1080px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 560px) {
  .process-grid {
    grid-template-columns: 1fr !important;
  }

  .process-grid article {
    min-height: 170px !important;
  }
}


/* ===== V19 intro reliability fix ===== */
.site-intro.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none !important;
}

.intro-skip {
  position: relative;
  z-index: 5;
}

body:not(.is-loading) {
  overflow: auto;
}


/* ===== V20 longer intro timing ===== */
.intro-logo-base {
  animation-duration: 1.15s;
}

.intro-logo-grey {
  animation-duration: 1.55s;
  animation-delay: .55s;
}

.intro-core p {
  animation-delay: .85s;
}

.intro-core span {
  animation-delay: 1.15s;
}

.intro-skip {
  animation-delay: 1.35s;
}


/* ===== V21 address formatting fix ===== */
.location-box p strong {
  display: inline-block;
  margin-bottom: 6px;
  color: inherit;
}

.contact-list strong {
  line-height: 1.45;
}


/* ===== V22 exact map pin update ===== */
.map-badge {
  max-width: 320px;
}

.map-badge small {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,0.72);
  font-size: 0.78rem;
  line-height: 1.45;
}


/* ===== V23 exact red pin update ===== */
.map-badge small {
  line-height: 1.5;
}
