:root {
  --bg: #151515;
  --bg-alt: #1d1d1d;
  --bg-soft: #242424;
  --accent: #da3a3d;
  --accent-soft: rgba(218, 58, 61, 0.2);
  --text-main: #f4f4f4;
  --text-muted: #c6c6c6;
  --text-soft: #9a9a9a;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  --transition: 0.2s ease;
  --header-height: 72px;
  --border: #2d2d2d;
  --border-strong: #3a3a3a;
  --input-bg: #111;
  --input-border: #3a3a3a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  font-family: "Space Grotesk", Arial, sans-serif;
  background: radial-gradient(circle at top, #242424, #151515 55%, #0f0f0f 100%);
  color: var(--text-main);
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  left: 3vw;
  bottom: -16px;
  width: 520px;
  height: 260px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.26;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 520 260'><g fill='none' stroke='rgb(218,58,61)' stroke-width='2' stroke-linecap='round' stroke-dasharray='1 10' opacity='0.9'><rect x='10' y='190' width='160' height='44' rx='6'/><rect x='180' y='190' width='160' height='44' rx='6'/><rect x='350' y='190' width='150' height='44' rx='6'/><rect x='50' y='140' width='160' height='44' rx='6'/><rect x='220' y='140' width='160' height='44' rx='6'/><rect x='10' y='90' width='160' height='44' rx='6'/><rect x='180' y='90' width='160' height='44' rx='6'/></g></svg>") no-repeat;
  background-size: contain;
  transform-origin: bottom left;
  filter: drop-shadow(0 0 10px rgba(218, 58, 61, 0.18));
  animation: ledWallBuild 24s ease-in-out infinite;
}

body::after {
  content: "";
  position: fixed;
  right: -60px;
  bottom: -24px;
  width: 640px;
  height: 360px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.34;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 360'><g fill='none' stroke='rgb(218,58,61)' stroke-width='2' stroke-linecap='round' stroke-dasharray='1 12' opacity='0.95'><rect x='140' y='260' width='240' height='50' rx='18'/><rect x='230' y='210' width='120' height='50' rx='10'/><path d='M350 210 L440 160 L520 130'/><path d='M520 130 L570 160'/><path d='M440 160 L400 190'/><circle cx='190' cy='285' r='12'/><circle cx='320' cy='285' r='12'/></g><circle cx='265' cy='235' r='2' fill='rgb(218,58,61)'/></svg>") no-repeat;
  background-size: contain;
  filter: drop-shadow(0 0 16px rgba(218, 58, 61, 0.2));
  animation: ledExcavatorPulse 10s ease-in-out infinite;
}

html::before {
  content: "";
  position: fixed;
  right: 6vw;
  top: 14vh;
  width: 520px;
  height: 260px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.22;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 520 260'><g fill='none' stroke='rgb(218,58,61)' stroke-width='2' stroke-linecap='round' stroke-dasharray='1 12' opacity='0.9'><path d='M100 230V40'/><path d='M100 40H420'/><path d='M420 40L470 70'/><path d='M260 40V110'/><path d='M260 110L240 130'/><rect x='80' y='230' width='40' height='20' rx='4'/><rect x='92' y='70' width='16' height='160' rx='4'/></g><circle cx='240' cy='134' r='3' fill='rgb(218,58,61)'/></svg>") no-repeat;
  background-size: contain;
  filter: drop-shadow(0 0 14px rgba(218, 58, 61, 0.16));
  animation: ledCraneSweep 18s ease-in-out infinite;
}

.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

main [id] {
  scroll-margin-top: calc(var(--header-height) + 8px);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: transparent;
  gap: 20px;
  text-transform: uppercase;
}

.topbar::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  background: transparent;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
  z-index: -1;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  height: 64px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 0.95rem;
  margin-left: auto;
}

.nav a {
  color: #fff;
  text-decoration: none;
  transition: color var(--transition);
}

.nav a:hover {
  color: #fff;
}

.nav-cta {
  padding: 8px 16px;
  background: var(--accent);
  color: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.lang-switch select {
  background: #101010;
  color: var(--text-main);
  border: 1px solid #2d2d2d;
  border-radius: 12px;
  padding: 6px 12px;
  font-family: "Space Grotesk", Arial, sans-serif;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.26);
}

.nav-toggle-icon {
  position: relative;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle-icon::before {
  top: -6px;
}

.nav-toggle-icon::after {
  top: 6px;
}

.nav-toggle.is-open .nav-toggle-icon {
  background: transparent;
}

.nav-toggle.is-open .nav-toggle-icon::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-icon::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
}

.mobile-nav.is-open {
  pointer-events: auto;
}

.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity var(--transition);
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, 86vw);
  height: 100%;
  background: linear-gradient(180deg, #171717 0%, #101010 100%);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transform: translateX(100%);
  transition: transform var(--transition);
}

.mobile-nav.is-open .mobile-nav-overlay {
  opacity: 1;
}

.mobile-nav.is-open .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-nav-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-soft);
}

.mobile-nav-close {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}

.mobile-nav-close::before,
.mobile-nav-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

.mobile-nav-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-nav-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav-links .nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.mobile-nav-links .nav a {
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition), border-color var(--transition);
}

.mobile-nav-links .nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}

.mobile-nav-links .nav-cta {
  text-align: center;
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 44px;
  align-items: center;
  position: relative;
  padding: 64px 36px 52px;
  min-height: calc(100vh - var(--header-height) - 40px);
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 12% 18%, rgba(218, 58, 61, 0.18), transparent 45%),
    radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.08), transparent 40%),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 18px),
    linear-gradient(140deg, #171717 0%, #0c0c0c 70%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

@media (min-width: 1000px) {
  .hero {
    grid-template-columns: minmax(340px, 1fr) minmax(520px, 1.7fr);
    align-items: stretch;
  }
}

@media (min-width: 900px) {
  .hero-copy {
    padding-left: 18px;
  }

  .hero-copy::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 4px;
    height: 120px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(218, 58, 61, 1), rgba(218, 58, 61, 0.15));
    box-shadow: 0 0 18px rgba(218, 58, 61, 0.55);
  }
}

.hero-motion {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-streaks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-streaks .streak {
  position: absolute;
  width: var(--streak-width, 220px);
  height: 2px;
  background: linear-gradient(90deg, rgba(218, 58, 61, 0), rgba(218, 58, 61, 0.95), rgba(218, 58, 61, 0));
  box-shadow: 0 0 12px rgba(218, 58, 61, 0.6);
  opacity: 0;
  transform: translate3d(-120vw, 120vh, 0) rotate(-35deg) scaleX(0);
  transform-origin: left center;
  animation: streakFly var(--streak-duration, 2.6s) linear forwards;
  animation-delay: var(--streak-delay, 0s);
}


.hero-motion .orb {
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(218, 58, 61, 0.35), rgba(218, 58, 61, 0.05) 60%, transparent 70%);
  filter: blur(2px);
  opacity: 0.85;
  animation: floatOrb 5s ease-in-out infinite;
}

.hero-motion .orb-1 {
  width: 280px;
  height: 280px;
  top: -60px;
  right: 12%;
  animation-delay: -2s;
}

.hero-motion .orb-2 {
  width: 220px;
  height: 220px;
  bottom: -40px;
  left: 8%;
  animation-delay: -6s;
}

.hero-motion .orb-3 {
  width: 180px;
  height: 180px;
  top: 30%;
  left: 50%;
  animation-delay: -10s;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  color: var(--text-soft);
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.1vw, 3.9rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.6);
  margin: 0 0 18px;
}

h1,
h2,
h3,
h4 {
  text-transform: uppercase;
}

.lede {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.hero-actions .btn {
  padding: 12px 24px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.hero-actions .btn.primary {
  box-shadow: 0 18px 36px rgba(218, 58, 61, 0.35);
}

.hero-actions .btn.ghost {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.18);
}

.btn {
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-icon {
  width: 16px;
  height: 16px;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn.ghost {
  border-color: var(--border-strong);
  color: var(--text-main);
  background: transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.hero-stats > div {
  padding-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stats > div:last-child {
  border-right: none;
  padding-right: 0;
}

.stat {
  display: block;
  font-size: 2rem;
  font-weight: 700;
}

.stat-with-star {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.stat-with-star::after {
  content: "★";
  color: var(--accent);
  font-size: 0.9em;
  line-height: 1;
}

.stat-label {
  color: var(--text-soft);
  font-size: 0.85rem;
}

.hero-visual {
  position: relative;
  min-height: 380px;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.hero-image {
  position: relative;
  width: 130%;
  height: 100%;
  min-height: clamp(340px, 48vw, 520px);
  margin-left: -10%;
  border-radius: 16px;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: inherit;
  z-index: 0;
}

.hero-excavator {
  display: none;
}

.hero-excavator svg {
  width: 100%;
  height: auto;
  display: block;
}

.hero-excavator .excavator-outline {
  stroke: rgba(218, 58, 61, 0.95);
  stroke-width: 2.1;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1 10;
  animation: excavatorFlow 6s linear infinite;
}

.hero-excavator .excavator-fill {
  fill: rgba(218, 58, 61, 0.18);
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: none;
  border-radius: inherit;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: none;
  border-radius: inherit;
}

@keyframes excavatorFlow {
  0% {
    stroke-dashoffset: 0;
    opacity: 0.6;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    stroke-dashoffset: -24;
    opacity: 0.6;
  }
}

.hero-overlay {
  position: absolute;
  inset: 18px 18px auto auto;
  z-index: 2;
  background: transparent;
  padding: 0;
  border-radius: 0;
  display: grid;
  gap: 12px;
  max-width: 260px;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-callout {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.75);
}

.hero-callout-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(218, 58, 61, 0.4);
  background: rgba(218, 58, 61, 0.18);
  color: #fff;
  flex: 0 0 auto;
}

.hero-callout-icon svg {
  width: 18px;
  height: 18px;
}

.hero-meta {
  display: grid;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.7);
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.meta-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.meta-icon svg {
  width: 18px;
  height: 18px;
}

.hero-image-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(218, 58, 61, 0.35);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-card {
  background: linear-gradient(160deg, rgba(18, 18, 18, 0.96), rgba(8, 8, 8, 0.82));
  border: none;
  border-left: 4px solid rgba(218, 58, 61, 0.85);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
  margin-top: -50px;
}

.theme-dark .hero-card {
  background: linear-gradient(140deg, #1f1f1f 0%, #111 100%);
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 20px;
  display: grid;
  gap: 10px;
  color: var(--text-muted);
}

.hero-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.hero-list-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  background: rgba(218, 58, 61, 0.16);
  color: #fff;
  flex: 0 0 auto;
}

.hero-list-icon svg {
  width: 16px;
  height: 16px;
}

.card-title {
  margin: 0;
  font-weight: 600;
}

.hero-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #fff;
  font-size: 0.8rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-badge.ghost {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text-main);
}

.hero-surface {
  position: absolute;
  inset: 8% -10% -10% 40%;
  background: radial-gradient(circle, rgba(218, 58, 61, 0.28), transparent 65%);
  border-radius: var(--radius-lg);
  filter: blur(20px);
}

.section {
  margin-top: 0px;
  margin-bottom: 20px;
  padding: 30px 0;
}

.section.alt {
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.04), rgba(15, 15, 15, 0.25));
  border-radius: var(--radius-lg);
  padding: 84px 36px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.section-header {
  max-width: 680px;
  margin-bottom: 48px;
}

.section-actions {
  margin-top: 24px;
}

.section-header h2 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  margin: 0 0 12px;
}

.section-lede {
  color: var(--text-muted);
  line-height: 1.7;
}

.service-page {
  padding: 12px 0 80px;
}

.service-hero {
  padding: 20px 0 40px;
}

.service-hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 38px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(15, 15, 15, 0.35));
  box-shadow: var(--shadow);
  display: grid;
  gap: 22px;
  overflow: hidden;
}

.service-hero-card::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -140px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(218, 58, 61, 0.28), transparent 70%);
  opacity: 0.65;
}

.service-hero-card > * {
  position: relative;
  z-index: 1;
}

.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}

.service-highlight {
  background: #171717;
  border-radius: 14px;
  border: 1px solid var(--border-strong);
  border-left: 3px solid var(--accent);
  padding: 14px 16px;
  display: grid;
  gap: 6px;
}

.service-highlight-title {
  font-weight: 600;
  font-size: 0.9rem;
}

.service-highlight-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.service-body {
  display: grid;
  gap: 24px;
}

.service-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: start;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: var(--text-muted);
}

.service-list li {
  position: relative;
  padding-left: 16px;
  line-height: 1.6;
}

.service-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}

.service-cta-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  background: linear-gradient(120deg, rgba(218, 58, 61, 0.16), rgba(15, 15, 15, 0.6));
  display: grid;
  gap: 14px;
}

.seo-body {
  max-width: 920px;
  display: grid;
  gap: 16px;
}

.seo-body p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
}

.seo-areas strong {
  color: var(--text-main);
  font-weight: 600;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 24px;
}

.project-card {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.project-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.project-head span {
  color: var(--text-soft);
  font-size: 0.85rem;
}

.project-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

.image-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  background: linear-gradient(130deg, #2a2a2a, #161616);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  font-size: 0.85rem;
  border: 1px dashed var(--border-strong);
}

.image-frame.has-image {
  border-style: solid;
}

.project-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.project-photo-link {
  position: absolute;
  inset: 0;
  display: block;
  cursor: zoom-in;
}

.image-frame.after {
  background: linear-gradient(130deg, #262626, rgba(218, 58, 61, 0.2));
}

.image-frame.alt {
  background: linear-gradient(130deg, #1e1e1e, #2a2a2a);
}

.image-frame.cool {
  background: linear-gradient(130deg, #121212, #203040);
}

.image-frame.warm {
  background: linear-gradient(130deg, #1d1212, #342020);
}

.image-frame span {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.5);
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.7rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--bg-soft);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  display: grid;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  border-color: rgba(218, 58, 61, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.4);
}

.service-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-head h3 {
  margin: 0;
}

.service-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  background: rgba(218, 58, 61, 0.12);
  color: var(--accent);
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

.process-step {
  background: var(--bg-alt);
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.step-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  background: rgba(218, 58, 61, 0.12);
  color: var(--accent);
}

.step-icon svg {
  width: 20px;
  height: 20px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: #fff;
  font-weight: 600;
  margin-bottom: 12px;
}

.step-head .step-number {
  margin-bottom: 0;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.quality-card {
  background: var(--bg-soft);
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  display: grid;
  gap: 12px;
}

.quality-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quality-head h3 {
  margin: 0;
}

.quality-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  background: rgba(218, 58, 61, 0.12);
  color: var(--accent);
}

.quality-icon svg {
  width: 22px;
  height: 22px;
}

.letterhead {
  position: relative;
}

.letterhead-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 48px;
  align-items: center;
}

.letterhead-content {
  display: grid;
  gap: 18px;
  max-width: 520px;
}

.letterhead-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.letterhead-list li {
  position: relative;
  padding-left: 20px;
  color: var(--text-muted);
  line-height: 1.6;
}

.letterhead-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(218, 58, 61, 0.35);
}

.letterhead-note {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.letterhead-preview {
  display: flex;
  justify-content: center;
}

.letterhead-paper {
  width: min(560px, 100%);
  background: #f7f7f7;
  color: #1b1b1b;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.letterhead-paper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(218, 58, 61, 0.08), transparent 45%);
  opacity: 0.6;
  pointer-events: none;
}

.letterhead-paper > * {
  position: relative;
  z-index: 1;
}

.letterhead-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.letterhead-logo {
  height: 46px;
  width: auto;
  filter: brightness(0) saturate(100%);
}

.letterhead-date {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #5a5a5a;
  text-align: right;
}

.letterhead-rule {
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(0, 0, 0, 0.2));
  opacity: 0.4;
  margin: 16px 0 18px;
  border-radius: 999px;
}

.letterhead-title {
  margin: 0 0 14px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #3b3b3b;
  font-weight: 700;
}

.letterhead-lines {
  display: grid;
  gap: 8px;
  margin: 0;
}

.letterhead-lines span {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d7d7d7, #efefef);
  width: var(--w, 100%);
}

.letterhead-lines + .letterhead-lines {
  margin-top: 14px;
}

.letterhead-footer {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.letterhead-footer-line {
  width: 120px;
  height: 3px;
  background: var(--accent);
  border-radius: 999px;
}

.letterhead-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  font-size: 0.68rem;
  color: #5a5a5a;
}

.letterhead-contact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.letterhead-contact svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex: 0 0 auto;
}

.callback {
  background: radial-gradient(circle at top, rgba(218, 58, 61, 0.2), transparent 70%);
  border-radius: var(--radius-lg);
  padding: 70px 36px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.callback-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.callback-form {
  background: var(--bg-alt);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  display: grid;
  gap: 12px;
}

.callback-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  color: var(--text-muted);
  gap: 6px;
}

.callback-form input,
.callback-form textarea {
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  background: #111;
  color: var(--text-main);
  padding: 10px 12px;
  font-family: "Space Grotesk", Arial, sans-serif;
}

.callback-form .full {
  grid-column: 1 / -1;
}

.callback-card {
  background: var(--bg-soft);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  display: grid;
  gap: 12px;
}

.callback-quick {
  display: grid;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.faq-category {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--text-soft);
  margin: 0 0 12px;
}

.faq-icon {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  background: rgba(218, 58, 61, 0.12);
  color: var(--accent);
}

.faq-icon svg {
  width: 16px;
  height: 16px;
}

.faq-item {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 16px 18px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-item p {
  margin: 10px 0 0;
  color: var(--text-muted);
  line-height: 1.6;
}


.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: start;
}

.section.about {
  position: relative;
  padding: 72px 40px;
  gap: 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(15, 15, 15, 0.35));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.section.about::before {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 18px;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), rgba(218, 58, 61, 0));
  opacity: 0.8;
  border-radius: 999px;
  z-index: 0;
}

.section.about::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.08), transparent 55%);
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

.section.about > * {
  position: relative;
  z-index: 1;
}

.section.about .section-header {
  margin-bottom: 32px;
}

.section.about .about-intro {
  display: grid;
  gap: 24px;
}

.section.about .about-highlights {
  display: grid;
  gap: 14px;
}

.section.about .about-highlight {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  background: #171717;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-strong);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.section.about .about-highlight-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  background: rgba(218, 58, 61, 0.12);
  color: var(--accent);
}

.section.about .about-highlight-icon svg {
  width: 20px;
  height: 20px;
}

.section.about .about-highlight-title {
  margin: 0 0 6px;
  font-size: 0.9rem;
}

.section.about .about-highlight p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.section.about .values {
  display: grid;
  gap: 16px;
}

.section.about .value {
  background: #171717;
  border-radius: var(--radius-md);
  padding: 20px 18px;
  border: 1px solid var(--border-strong);
  border-left: 3px solid var(--accent);
  display: grid;
  gap: 10px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
}

.section.about .value-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.section.about .value .value-index {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: rgba(218, 58, 61, 0.15);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.section.about .value-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  background: rgba(218, 58, 61, 0.12);
  color: var(--accent);
}

.section.about .value-icon svg {
  width: 22px;
  height: 22px;
}

.values {
  display: grid;
  gap: 20px;
}

.value {
  background: var(--bg-alt);
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.value .value-index {
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.contact {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 65%);
  padding: 84px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.contact-form {
  background: var(--bg-alt);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  display: grid;
  gap: 12px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  color: var(--text-muted);
  gap: 6px;
}

.contact-form input,
.contact-form textarea {
  border-radius: 12px;
  border: 1px solid var(--input-border);
  background: var(--input-bg);
  color: var(--text-main);
  padding: 10px 12px;
  font-family: "Space Grotesk", Arial, sans-serif;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.form-note {
  font-size: 0.75rem;
  color: var(--text-soft);
}

.contact-card {
  background: var(--bg-soft);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  display: grid;
  gap: 10px;
}

.contact-card--featured {
  background: linear-gradient(140deg, rgba(218, 58, 61, 0.08), rgba(16, 16, 16, 0.9));
  border-color: rgba(218, 58, 61, 0.25);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.contact-card--featured::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(218, 58, 61, 0.25), transparent 70%);
  opacity: 0.6;
}

.contact-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(218, 58, 61, 0.4);
  background: rgba(218, 58, 61, 0.18);
  color: #fff;
  flex: 0 0 auto;
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
}

.contact-card-sub {
  margin: 4px 0 0;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 6px;
}

.contact-card-item {
  display: grid;
  gap: 4px;
}

.contact-card-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: var(--text-soft);
}

.contact-card-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(218, 58, 61, 0.16);
  border: 1px solid rgba(218, 58, 61, 0.35);
  color: #fff;
  font-size: 0.75rem;
}

.contact-card-media {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #141414;
}

.contact-card-media img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.contact-actions .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.85rem;
  padding: 8px 12px;
}

.contact-card--featured .contact-actions .btn {
  border-color: rgba(218, 58, 61, 0.55);
  background: rgba(218, 58, 61, 0.08);
}

.contact-card--featured .contact-actions .btn:hover {
  background: rgba(218, 58, 61, 0.18);
}

.contact-card a,
.footer-col a,
.hero-meta a,
.callback-card a {
  color: inherit;
  text-decoration: none;
}

.contact-card a:hover,
.footer-col a:hover,
.hero-meta a:hover,
.callback-card a:hover {
  text-decoration: underline;
}

.contact-hours {
  display: flex;
  justify-content: space-between;
  color: var(--text-soft);
  font-size: 0.85rem;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

@media (max-width: 560px) {
  .contact-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .section.about {
    padding: 56px 24px;
  }

  .service-hero-card {
    padding: 28px;
  }

  .section.alt {
    padding: 64px 24px;
  }

  .contact {
    padding: 64px 24px;
  }

  .hero {
    padding: 70px 24px 52px;
  }

  .hero-image {
    height: 300px;
  }

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

  .project-images {
    grid-template-columns: 1fr;
  }

  .brand img {
    height: 52px;
    width: auto;
  }
}


.footer {
  padding: 50px 0 60px;
  color: var(--text-soft);
  font-size: 0.85rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
  align-items: start;
}

.footer-col p {
  margin: 0 0 8px;
}

.footer-logo {
  width: 140px;
  height: auto;
  display: block;
  margin-bottom: 12px;
}

.footer-title {
  color: var(--text-main);
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.footer-links {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
}

.footer-links a:hover {
  color: var(--text-main);
  text-decoration: none;
}

.legal {
  padding: 70px 0 90px;
}

.legal-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  margin-top: 6px;
}

.legal-card h3 {
  margin-top: 26px;
}

.legal-card a {
  color: var(--accent);
  text-decoration: none;
}

.legal-card a:hover {
  text-decoration: underline;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  z-index: 20;
  padding: 20px;
}

.modal.is-visible {
  display: flex;
}

.modal-card {
  background: #141414;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow);
}

.modal-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  color: var(--text-soft);
  margin-bottom: 12px;
}

.modal-text {
  color: var(--text-muted);
  line-height: 1.6;
}

.modal-actions {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  align-items: center;
  gap: 16px;
  background: #141414;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: var(--shadow);
  z-index: 18;
  max-width: 90vw;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.no-scroll {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  z-index: 20;
  padding: 24px;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: min(92vw, 1100px);
  max-height: 82vh;
  margin: 0;
}

.lightbox-content img {
  width: 100%;
  height: auto;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #0f0f0f;
}

.lightbox-caption {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 0.9rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #1b1b1b;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.reveal {
  animation: fadeUp 0.6s ease both;
}

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

@keyframes ledWallBuild {
  0% {
    transform: scaleY(0.25);
    opacity: 0.16;
  }
  40% {
    transform: scaleY(1);
    opacity: 0.36;
  }
  70% {
    transform: scaleY(1);
    opacity: 0.32;
  }
  100% {
    transform: scaleY(0.35);
    opacity: 0.2;
  }
}

@keyframes ledExcavatorPulse {
  0% {
    opacity: 0.28;
    transform: translateY(0);
  }
  50% {
    opacity: 0.45;
    transform: translateY(-4px);
  }
  100% {
    opacity: 0.28;
    transform: translateY(0);
  }
}

@keyframes ledCraneSweep {
  0% {
    opacity: 0.18;
    transform: translateY(0);
  }
  50% {
    opacity: 0.28;
    transform: translateY(-6px);
  }
  100% {
    opacity: 0.18;
    transform: translateY(0);
  }
}

@keyframes floatOrb {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(45px, -35px, 0) scale(1.18);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes streakFly {
  0% {
    opacity: 0;
    transform: translate3d(-120vw, 120vh, 0) rotate(-35deg) scaleX(0);
  }
  8% {
    opacity: 1;
    transform: translate3d(-60vw, 60vh, 0) rotate(-35deg) scaleX(0.8);
  }
  35% {
    opacity: 1;
    transform: translate3d(0vw, 0vh, 0) rotate(-35deg) scaleX(1.2);
  }
  100% {
    opacity: 0;
    transform: translate3d(120vw, -120vh, 0) rotate(-35deg) scaleX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  body::after,
  html::before {
    animation: none;
  }

  .hero-excavator .excavator-outline {
    animation: none;
  }
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    display: block;
  }

  .topbar {
    gap: 12px;
  }

  .lang-switch {
    margin-left: auto;
  }

  .mobile-nav-links .nav {
    display: flex;
  }

  .hero-motion,
  .hero-streaks {
    display: none;
  }
  .hero {
    padding: 82px 28px 54px;
  }

  .hero-image {
    width: 100%;
    margin-left: 0;
    min-height: 360px;
  }

  .hero-photo {
    object-position: center;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 14px;
  }

  .hero-stats > div {
    padding-right: 0;
    border-right: none;
  }
  .hero-overlay {
    inset: 20px 20px auto auto;
  }

  .page {
    padding: 0 28px;
  }

  body::before {
    width: 420px;
    height: 210px;
    left: -6vw;
    opacity: 0.2;
  }

  body::after {
    width: 520px;
    height: 300px;
    right: -120px;
    opacity: 0.26;
  }

  html::before {
    width: 420px;
    height: 210px;
    right: 4vw;
    top: 10vh;
    opacity: 0.18;
  }

  .projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .letterhead-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .page {
    padding: 0 20px;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-image {
    width: 100%;
    margin-left: 0;
    height: 320px;
    min-height: 320px;
  }

  .hero-photo {
    object-position: center;
  }

  .hero-overlay {
    inset: auto 12px 12px 12px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-hero-card {
    padding: 22px;
  }

  .cookie-banner {
    flex-direction: column;
    border-radius: var(--radius-md);
    text-align: center;
  }

  body::before {
    width: 360px;
    height: 180px;
    left: -12vw;
    opacity: 0.16;
  }

  body::after {
    width: 420px;
    height: 240px;
    right: -160px;
    opacity: 0.18;
  }

  html::before {
    width: 320px;
    height: 180px;
    right: -6vw;
    top: 8vh;
    opacity: 0.12;
  }

  .service-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .contact {
    padding: 56px 20px;
  }

  .letterhead-paper {
    padding: 26px 22px;
  }

  .letterhead-title {
    letter-spacing: 0.12em;
  }

  .letterhead-contacts {
    font-size: 0.62rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 56px 18px 44px;
  }

  .hero-image {
    width: 100%;
    margin-left: 0;
    height: 280px;
    min-height: 280px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-badges {
    flex-direction: column;
    align-items: flex-start;
  }

  body::before,
  body::after,
  html::before {
    display: none;
  }
}
