:root {
  --gold: #fab00f;
  --black: #000000;
  --ink: #111111;
  --soft: #f5f5f2;
  --line: rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  font-family:
    Barlow,
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 max(20px, calc((100% - 1180px) / 2));
  border-bottom: 1px solid rgba(250, 176, 15, 0.28);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.38));
}

.brand img {
  display: block;
  height: 58px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.36));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a:hover {
  color: var(--gold);
}

.nav-dropdown {
  position: relative;
}

.dropdown-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  font: inherit;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.dropdown-button:hover {
  color: var(--gold);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 20px);
  left: 0;
  display: grid;
  min-width: 260px;
  padding: 10px;
  background: var(--black);
  border: 1px solid rgba(250, 176, 15, 0.24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 180ms ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.82);
}

.dropdown-menu a:hover {
  background: var(--gold);
  color: var(--black);
}

.service-submenu {
  position: relative;
}

.service-submenu__row {
  display: flex;
  width: 100%;
  align-items: center;
}

.service-submenu__link {
  flex: 1;
}

.service-submenu__trigger {
  display: flex;
  width: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 0;
  padding: 12px 14px;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}

.service-submenu__trigger:hover,
.service-submenu__link:hover {
  background: var(--gold);
  color: var(--black);
}

.service-submenu__menu {
  position: absolute;
  top: 0;
  left: calc(100% + 10px);
  display: grid;
  min-width: 260px;
  padding: 10px;
  background: var(--black);
  border: 1px solid rgba(250, 176, 15, 0.24);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-6px);
  transition: 180ms ease;
}

.service-submenu:hover .service-submenu__menu,
.service-submenu.is-open .service-submenu__menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: #ffffff;
}

.menu-button span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-button span:nth-child(3) {
  transform: translateY(6px);
}

.about-hero {
  position: relative;
  display: grid;
  min-height: 640px;
  align-items: center;
  padding: 120px max(20px, calc((100% - 1180px) / 2)) 100px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.7) 46%, rgba(0, 0, 0, 0.22) 100%),
    url("https://images.unsplash.com/photo-1757266705787-c319b6495b72?w=1800&h=1000&fit=crop") center/cover;
}

.about-hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  display: block;
  width: 42px;
  height: 3px;
  background: var(--gold);
  content: "";
}

h1,
h2,
h3,
p,
li {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(3rem, 7vw, 6.4rem);
  font-weight: 800;
  line-height: 0.92;
  text-transform: uppercase;
}

h1 span,
.commitment-banner span {
  color: var(--gold);
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  padding: 0 24px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #ffffff;
}

.button-outline {
  background: transparent;
  color: #ffffff;
}

.button-outline:hover {
  background: var(--gold);
  color: var(--black);
}
.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0;
}

.story-section,
.office-section,
.mission-section,
.service-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
}

.section h2,
.services-band h2,
.commitment-banner h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.section p,
.services-band p {
  color: rgba(0, 0, 0, 0.68);
  line-height: 1.8;
}

.metrics-grid {
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
}

.metrics-grid article {
  padding: 22px;
  background: var(--black);
  color: #ffffff;
}

.metrics-grid strong {
  display: block;
  color: var(--gold);
  font-size: 2rem;
  line-height: 1;
}

.metrics-grid span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.feature-stack {
  display: grid;
  gap: 16px;
}

.feature-stack article {
  padding: 28px;
  border-left: 5px solid var(--gold);
  background: var(--soft);
}

.feature-stack span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
}

.feature-stack h3 {
  margin: 14px 0 8px;
  text-transform: uppercase;
}

.feature-stack p {
  margin: 0;
  color: rgba(0, 0, 0, 0.68);
}

.services-band {
  position: relative;
  padding: 112px max(20px, calc((100% - 1180px) / 2)) 88px;
  background: var(--soft);
}

.media {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 8px solid var(--black);
  background: var(--black);
}

.media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.media-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 260px;
  padding: 24px;
  background: var(--gold);
  color: var(--black);
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.tabs {
  display: grid;
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
}

.tab {
  border: 0;
  padding: 18px 20px;
  background: #ffffff;
  color: var(--black);
  font: inherit;
  font-weight: 800;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}

.tab.is-active {
  background: var(--gold);
}

.principle-panel {
  padding: 34px;
  background: var(--black);
  color: #ffffff;
}

.principle {
  display: none;
}

.principle.is-active {
  display: block;
}

.principle h3 {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 1.5rem;
  text-transform: uppercase;
}

.principle p,
.principle li {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.principle ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding-left: 20px;
}

.commitment-banner {
  position: relative;
  display: grid;
  justify-items: center;
  padding: 120px max(20px, calc((100% - 980px) / 2)) 150px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.76)),
    url("https://images.unsplash.com/photo-1723511544221-dedeff4c08cf?w=1800&h=800&fit=crop") center/cover fixed;
  color: #ffffff;
  text-align: center;
}

.commitment-content {
  position: relative;
  z-index: 4;
}

.commitment-banner h2 {
  color: #ffffff;
  line-height: 1.18;
}

.office-section {
  padding-top: 104px;
  align-items: start;
}

.map-panel {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 8px solid var(--black);
  background: var(--black);
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(1) contrast(1.08);
}

.map-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 240px;
  padding: 22px 24px;
  background: var(--gold);
  color: var(--black);
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

address {
  margin-top: 28px;
  padding: 34px;
  background: var(--black);
  border-top: 5px solid var(--gold);
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  line-height: 1.8;
}

address strong {
  display: block;
  margin-top: 22px;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

address strong:first-child {
  margin-top: 0;
}

address a:hover {
  color: var(--gold);
}

@media (max-width: 980px) {
  .story-section,
  .office-section,
  .mission-section,
  .service-split {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .menu-button {
    position: relative;
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 86px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 18px;
    background: var(--black);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 12px 0;
  }

  .dropdown-button {
    width: 100%;
    padding: 12px 0;
    text-align: left;
  }

  .dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    padding: 0;
    border: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-dropdown.is-open .dropdown-menu {
    display: grid;
  }

  .service-submenu__menu {
    position: static;
    display: none;
    min-width: 0;
    padding: 0 0 0 12px;
    border: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .service-submenu.is-open .service-submenu__menu {
    display: grid;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .about-hero {
    min-height: 640px;
  }

  .section {
    width: min(100% - 28px, 1180px);
    padding: 64px 0;
  }

  .principle-panel,
  address {
    padding: 24px;
  }
}
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 52px max(20px, calc((100% - 1180px) / 2)) 22px;
  background:
    linear-gradient(120deg, rgba(250, 176, 15, 0.13), transparent 22%),
    linear-gradient(180deg, #050505 0%, #000000 100%);
  color: #ffffff;
  isolation: isolate;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.site-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: -45%;
  width: 36%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(250, 176, 15, 0.1), transparent);
  transform: skewX(-18deg);
  animation: footer-sweep 7s ease-in-out infinite;
  z-index: -1;
}

.footer-glow {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250, 176, 15, 0.22), transparent 68%);
  filter: blur(10px);
  z-index: -2;
  animation: footer-pulse 6s ease-in-out infinite;
}

.footer-glow-one {
  right: -150px;
  bottom: -220px;
  width: 390px;
  aspect-ratio: 1;
}

.footer-glow-two {
  top: -230px;
  left: 16%;
  width: 320px;
  aspect-ratio: 1;
  animation-delay: -2.2s;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(120px, 0.45fr) minmax(210px, 0.75fr) minmax(380px, 1.25fr);
  gap: 30px;
  align-items: start;
  animation: footer-rise 720ms ease both;
}

.footer-company p {
  max-width: 390px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.7;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.footer-brand img {
  height: 74px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(250, 176, 15, 0.24));
  transition: transform 220ms ease, filter 220ms ease;
}

.footer-brand:hover img {
  transform: translateY(-3px) scale(1.04);
  filter: drop-shadow(0 0 24px rgba(250, 176, 15, 0.45));
}

.footer-column {
  display: grid;
  gap: 10px;
}

.footer-column h3 {
  position: relative;
  margin: 0 0 8px;
  padding-bottom: 12px;
  color: #ffffff;
  font-size: 0.88rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 3px;
  background: var(--gold);
}

.footer-column a,
.footer-column span,
.footer-column address {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.55;
}

.footer-column a {
  width: fit-content;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-column a:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.footer-contact-card {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(250, 176, 15, 0.24);
  border-top: 5px solid var(--gold);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.3);
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px 24px;
}

.footer-contact-item {
  display: grid;
  align-content: start;
  gap: 5px;
}

.footer-contact-address {
  grid-row: span 2;
}

.footer-label {
  color: var(--gold) !important;
  font-size: 0.72rem !important;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2 !important;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(250, 176, 15, 0.22);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
  animation: footer-rise 720ms ease 120ms both;
}

@keyframes footer-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes footer-sweep {
  0%,
  42%,
  100% {
    transform: translateX(0) skewX(-18deg);
  }
  62% {
    transform: translateX(390%) skewX(-18deg);
  }
}

@keyframes footer-pulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.7;
  }
}

@media (max-width: 1040px) {
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-contact-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding-top: 42px;
  }

  .footer-inner,
  .footer-bottom,
  .footer-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-contact-address {
    grid-row: auto;
  }

  .footer-contact-card {
    padding: 20px;
  }
}
/* Responsive safety pass */
img,
svg,
iframe {
  max-width: 100%;
}

.site-header,
.site-footer,
main,
section {
  max-width: 100%;
}

@media (max-width: 1180px) {
  .site-header {
    padding-right: 24px;
    padding-left: 24px;
  }

  .site-nav {
    gap: 20px;
  }

  .section {
    width: min(100% - 36px, 1180px);
  }
}

@media (max-width: 980px) {
  .hero,
  .about-hero,
  .contact-hero,
  .service-hero {
    min-height: 620px;
    padding-top: 118px;
    padding-bottom: 86px;
  }

  .stats,
  .services-grid,
  .values-grid,
  .contact-cards,
  .metrics-grid,
  .scope-grid,
  .popup-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .contact-section,
  .story-section,
  .office-section,
  .mission-section,
  .service-split,
  .overview-section,
  .message-layout {
    grid-template-columns: 1fr;
  }

  .media,
  .map-panel {
    min-height: 340px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 78px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .brand img {
    height: 48px;
  }

  .site-nav {
    top: 78px;
    right: 14px;
    left: 14px;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
  }

  .dropdown-menu,
  .service-submenu__menu {
    width: 100%;
  }

  .hero,
  .about-hero,
  .contact-hero,
  .service-hero {
    min-height: 560px;
    padding: 108px 18px 74px;
  }

  h1 {
    font-size: clamp(2.45rem, 15vw, 4.4rem);
    line-height: 0.96;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions {
    width: 100%;
  }

  .button {
    width: 100%;
    min-height: 46px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .section,
  .scope-inner,
  .inspection-popups-inner {
    width: min(100% - 28px, 1180px);
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .stats,
  .services-grid,
  .values-grid,
  .contact-cards,
  .metrics-grid,
  .scope-grid,
  .popup-card-grid,
  .form-row,
  .service-modal__panel ul {
    grid-template-columns: 1fr;
  }

  .media,
  .map-panel {
    min-height: 280px;
  }
.footer-inner,
  .footer-bottom,
  .footer-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .eyebrow {
    gap: 8px;
    font-size: 0.7rem;
    letter-spacing: 0;
  }

  .eyebrow::before {
    width: 28px;
  }

  h1 {
    font-size: clamp(2.15rem, 17vw, 3.5rem);
  }

  .section h2,
  .scope-band h2,
  .cta-section h2,
  .inspection-popups-section h2 {
    font-size: clamp(1.85rem, 12vw, 2.8rem);
  }

  .site-footer {
    padding-right: 16px;
    padding-left: 16px;
  }
}


/* Header social icons */
.header-socials {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 4px;
}

.header-socials a {
  position: relative;
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(250, 176, 15, 0.34);
  background: rgba(0, 0, 0, 0.2);
  color: var(--gold);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.header-socials a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(100%);
  transition: transform 200ms ease;
  z-index: 0;
}

.header-socials a:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  color: var(--black);
}

.header-socials a:hover::before {
  transform: translateY(0);
}

.header-socials svg {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (max-width: 760px) {
  .header-socials {
    width: 100%;
    margin-top: 12px;
    margin-left: 0;
    padding-top: 12px;
    border-top: 1px solid rgba(250, 176, 15, 0.2);
  }
}
/* Premium motion system */
.site-header {
  animation: nav-drop 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero::before,
.about-hero::before,
.contact-hero::before,
.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(110deg, transparent 15%, rgba(250, 176, 15, 0.12) 48%, transparent 72%);
  transform: translateX(-120%);
  animation: hero-sheen 5.8s ease-in-out 900ms infinite;
  pointer-events: none;
}

.hero-content,
.about-hero__content,
.contact-hero__content,
.service-hero__content {
  animation: hero-enter 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero h1,
.about-hero h1,
.contact-hero h1,
.service-hero h1 {
  animation: title-focus 1050ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-copy,
.hero-actions {
  animation: soft-rise 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-copy {
  animation-delay: 140ms;
}

.hero-actions {
  animation-delay: 260ms;
}
.reveal-item {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition:
    opacity 760ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 760ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  filter: blur(8px);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.services-grid article,
.values-grid article,
.contact-cards article,
.metrics-grid article,
.feature-stack article,
.scope-card,
.popup-card,
.contact-form,
.footer-contact-card {
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease,
    background 260ms ease;
}

.services-grid article:hover,
.values-grid article:hover,
.contact-cards article:hover,
.metrics-grid article:hover,
.feature-stack article:hover,
.scope-card:hover,
.popup-card:hover,
.contact-form:hover,
.footer-contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  border-color: rgba(250, 176, 15, 0.48);
}

.media img,
.map-panel iframe,
.overview-image {
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1), filter 400ms ease;
}

.media:hover img,
.map-panel:hover iframe {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04);
}

.button {
  position: relative;
  overflow: hidden;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.button:hover::after {
  transform: translateX(120%);
}

.dropdown-menu,
.service-submenu__menu {
  transform-origin: top left;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu {
  animation: menu-open 220ms ease both;
}

.service-submenu:hover .service-submenu__menu,
.service-submenu.is-open .service-submenu__menu {
  animation: submenu-open 220ms ease both;
}

.footer-column a,
.site-nav a,
.dropdown-button {
  position: relative;
}

.site-nav > a::after,
.footer-column a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav > a:hover::after,
.footer-column a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

@keyframes nav-drop {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(34px);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes title-focus {
  from {
    letter-spacing: 0;
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    letter-spacing: 0;
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes soft-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-sheen {
  0%,
  42%,
  100% {
    transform: translateX(-120%);
  }
  62% {
    transform: translateX(120%);
  }
}
@keyframes menu-open {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes submenu-open {
  from {
    opacity: 0;
    transform: translateX(-6px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

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

  .reveal-item {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (max-width: 760px) {
  .reveal-item {
    transform: translateY(22px);
    filter: blur(4px);
  }
}

@media (max-width: 760px) {
  .dropdown-menu a,
  .service-submenu__link,
  .service-submenu__menu a {
    display: flex;
    min-height: 38px;
    align-items: center;
    padding: 9px 12px;
    font-size: 0.8rem;
    line-height: 1.25;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
  }

  .service-submenu__trigger {
    width: 38px;
    min-width: 38px;
    min-height: 38px;
  }

  .service-submenu__menu {
    padding-left: 8px;
  }
}
