:root {
  --bg: #0b1117;
  --bg-soft: #111a23;
  --surface: #f4f1e8;
  --surface-2: #e8e1d3;
  --text: #f7f5ef;
  --ink: #11171d;
  --muted: #9ba6ae;
  --accent: #ffb000;
  --accent-2: #ffd36a;
  --line: rgba(255,255,255,.14);
  --dark-line: rgba(17,23,29,.13);
  --shadow: 0 24px 70px rgba(0,0,0,.28);
  --max: 1180px;
  --radius: 28px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.progress-bar {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 14px rgba(255,176,0,.75);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(11,17,23,.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .25s ease, box-shadow .25s ease;
}

.site-header.scrolled {
  background: rgba(11,17,23,.94);
  box-shadow: 0 10px 34px rgba(0,0,0,.18);
}

.nav-wrap {
  height: 78px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--ink);
  clip-path: polygon(0 0, 84% 0, 100% 18%, 100% 100%, 16% 100%, 0 82%);
}

.bolt {
  font-size: 21px;
  transform: translateY(-1px);
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text strong,
.brand-text small {
  font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  letter-spacing: .055em;
}

.brand-text strong {
  font-size: 18px;
  font-weight: 800;
}

.brand-text small {
  margin-top: 5px;
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  position: relative;
  color: #dfe4e7;
  font-size: 14px;
  font-weight: 500;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--accent);
  transition: right .25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  right: 0;
}

.header-call {
  padding: 11px 16px;
  border: 1px solid rgba(255,176,0,.35);
  color: var(--accent-2);
  font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .03em;
  transition: .25s ease;
}

.header-call:hover {
  background: var(--accent);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: white;
  margin: 5px 0;
  transition: .25s ease;
}

.section-grid {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px),
    var(--bg);
  background-size: 42px 42px;
}

.hero {
  min-height: 100vh;
  padding: 150px 0 0;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,17,23,.2), rgba(11,17,23,.65));
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(90px);
  opacity: .24;
}

.hero-glow-one {
  width: 380px;
  height: 380px;
  top: 120px;
  right: 10%;
  background: var(--accent);
}

.hero-glow-two {
  width: 300px;
  height: 300px;
  bottom: 100px;
  left: -120px;
  background: #3777a8;
}

.hero-layout {
  min-height: calc(100vh - 210px);
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 54px;
  padding-bottom: 80px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--accent-2);
  font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  background: currentColor;
}

.eyebrow.dark {
  color: #8a6415;
}

.hero h1,
.section-heading h2,
.contact-copy h2,
.location-copy h2,
.closing-inner h2 {
  font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  letter-spacing: -.025em;
  line-height: .93;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(64px, 8vw, 116px);
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--accent);
}

.hero-subtitle {
  margin-top: 24px;
  max-width: 570px;
  font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  font-size: clamp(29px, 3vw, 45px);
  line-height: 1.05;
  color: #d7dfe3;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

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

.btn-primary {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(255,176,0,.2);
}

.btn-primary:hover {
  background: var(--accent-2);
}

.btn-secondary {
  border-color: rgba(255,255,255,.18);
  color: white;
  background: rgba(255,255,255,.035);
}

.btn-secondary:hover {
  border-color: rgba(255,176,0,.55);
  color: var(--accent-2);
}

.btn-light {
  background: #f6f1e6;
  color: #11171d;
}

.btn.large {
  min-height: 58px;
  padding-inline: 30px;
}

.hero-contact-card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.11);
  background: rgba(255,255,255,.03);
}

.contact-icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  background: rgba(255,176,0,.13);
  color: var(--accent);
}

.hero-contact-card div:last-child {
  display: grid;
}

.hero-contact-card span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero-contact-card a {
  margin-top: 2px;
  font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: .03em;
}

.hero-art {
  position: relative;
}

.visual-card {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.015)),
    #101820;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,176,0,.16);
  pointer-events: none;
}

.visual-label {
  position: absolute;
  z-index: 5;
  left: 26px;
  right: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .13em;
}

.visual-label.top {
  top: 25px;
  color: #d9e0e4;
}

.visual-label.bottom {
  bottom: 24px;
  justify-content: flex-end;
  color: var(--accent-2);
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(255,176,0,.09);
}

.crane-scene {
  position: absolute;
  inset: 74px 18px 72px;
  overflow: hidden;
}

.sun-ring {
  position: absolute;
  width: 330px;
  height: 330px;
  right: -65px;
  top: 38px;
  border: 1px solid rgba(255,176,0,.3);
  border-radius: 50%;
  box-shadow:
    0 0 0 50px rgba(255,176,0,.025),
    0 0 0 100px rgba(255,176,0,.015);
}

.crane {
  position: absolute;
  inset: 0;
}

.crane-mast {
  position: absolute;
  left: 46%;
  bottom: 36px;
  width: 22px;
  height: 340px;
  border-left: 5px solid var(--accent);
  border-right: 5px solid var(--accent);
  background:
    repeating-linear-gradient(45deg, transparent 0 22px, rgba(255,176,0,.8) 23px 27px, transparent 28px 50px),
    repeating-linear-gradient(-45deg, transparent 0 22px, rgba(255,176,0,.8) 23px 27px, transparent 28px 50px);
}

.crane-jib {
  position: absolute;
  left: 28%;
  top: 86px;
  width: 69%;
  height: 18px;
  border-top: 5px solid var(--accent);
  border-bottom: 5px solid var(--accent);
  transform-origin: 27% center;
}

.crane-jib::before,
.crane-jib::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 27px, rgba(255,176,0,.85) 28px 31px, transparent 32px 56px);
}

.crane-counter {
  position: absolute;
  left: 22%;
  top: 76px;
  width: 55px;
  height: 39px;
  background: #29333b;
  border: 2px solid #66737d;
}

.crane-cable {
  position: absolute;
  right: 17%;
  top: 99px;
  width: 2px;
  height: 190px;
  background: #89949b;
}

.crane-hook {
  position: absolute;
  right: calc(17% - 7px);
  top: 286px;
  width: 16px;
  height: 22px;
  border: 3px solid var(--accent);
  border-top: 0;
  border-radius: 0 0 10px 10px;
}

.building {
  position: absolute;
  bottom: 36px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    #1b252d;
  background-size: 17px 17px;
  border-top: 2px solid rgba(255,255,255,.12);
}

.b1 {
  left: 3%;
  width: 28%;
  height: 120px;
}

.b2 {
  left: 60%;
  width: 20%;
  height: 155px;
}

.b3 {
  right: 0;
  width: 17%;
  height: 95px;
}

.power-line {
  position: absolute;
  inset: 0;
  opacity: .8;
}

.tower {
  position: absolute;
  bottom: 35px;
  width: 3px;
  height: 115px;
  background: #7e8a93;
}

.tower::before,
.tower::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 54px;
  height: 2px;
  background: #7e8a93;
  transform: translateX(-50%);
}

.tower::before { top: 30px; }
.tower::after { top: 62px; }

.t1 { left: 8%; }
.t2 { left: 33%; }

.wire {
  position: absolute;
  height: 1px;
  background: rgba(189,199,205,.5);
  transform-origin: left center;
}

.w1 {
  left: 8%;
  bottom: 119px;
  width: 26%;
  transform: rotate(1deg);
}

.w2 {
  left: 8%;
  bottom: 87px;
  width: 26%;
  transform: rotate(-1deg);
}

.hero-strip {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.09);
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: #0e151c;
}

.strip-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 16px 0;
  animation: marquee 18s linear infinite;
  font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #d7dde0;
}

.strip-track i {
  color: var(--accent);
  font-style: normal;
}

@keyframes marquee {
  to { transform: translateX(-35%); }
}

.services-section {
  padding: 110px 0;
  background: var(--surface);
  color: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: .6fr 1.4fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 52px;
}

.section-heading .eyebrow {
  margin: 0;
}

.section-heading h2 {
  max-width: 750px;
  font-size: clamp(46px, 6vw, 79px);
  font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 410px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--dark-line);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(26,25,21,.11);
}

.service-card.electrical {
  background:
    radial-gradient(circle at 70% 30%, rgba(255,176,0,.22), transparent 31%),
    #efe7d8;
}

.service-card.crane-card {
  background: #15202a;
  color: white;
  border-color: rgba(255,255,255,.11);
}

.service-number {
  position: absolute;
  top: 22px;
  left: 26px;
  font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  font-size: 16px;
  letter-spacing: .1em;
  opacity: .55;
}

.service-icon {
  position: absolute;
  top: 68px;
  right: 40px;
  font-size: 126px;
  line-height: 1;
  opacity: .92;
  filter: drop-shadow(0 18px 30px rgba(177,110,0,.15));
}

.crane-mini {
  width: 230px;
  height: 190px;
  top: 72px;
  right: 28px;
  opacity: 1;
}

.mini-mast,
.mini-arm,
.mini-cable {
  position: absolute;
  display: block;
  background: var(--accent);
}

.mini-mast {
  left: 100px;
  bottom: 0;
  width: 7px;
  height: 135px;
  box-shadow: 16px 0 0 rgba(255,176,0,.6);
}

.mini-arm {
  left: 49px;
  top: 36px;
  width: 168px;
  height: 7px;
}

.mini-cable {
  right: 38px;
  top: 38px;
  width: 2px;
  height: 105px;
}

.service-card h3 {
  position: relative;
  z-index: 2;
  max-width: 470px;
  font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  font-size: clamp(40px, 5vw, 63px);
  line-height: .95;
  font-weight: 700;
  text-transform: uppercase;
}

.service-line {
  width: 100%;
  height: 1px;
  margin-top: 26px;
  background: currentColor;
  opacity: .18;
}

.contact-section {
  padding: 115px 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    var(--bg);
  background-size: 70px 70px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}

.contact-copy h2 {
  font-size: clamp(58px, 7vw, 94px);
  text-transform: uppercase;
}

.contact-copy > p {
  margin-top: 24px;
  max-width: 570px;
  color: #aeb8be;
  font-size: 18px;
}

.phone-display {
  position: relative;
  margin-top: 38px;
  padding: 26px 70px 26px 0;
  display: grid;
  border-top: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.phone-label {
  color: var(--accent-2);
  font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  font-size: 13px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.phone-display strong {
  margin-top: 3px;
  font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  font-size: clamp(48px, 6vw, 74px);
  line-height: 1;
  letter-spacing: .02em;
}

.phone-arrow {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 35px;
}

.contact-panel {
  min-height: 510px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.07), transparent),
    #141e27;
  border: 1px solid rgba(255,255,255,.11);
  box-shadow: var(--shadow);
}

.panel-kicker {
  color: var(--accent-2);
  font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  letter-spacing: .13em;
  font-size: 13px;
}

.panel-number {
  font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  font-size: clamp(94px, 11vw, 150px);
  font-weight: 800;
  line-height: .65;
  color: rgba(255,255,255,.95);
  letter-spacing: -.03em;
}

.location-section {
  padding: 90px 0 110px;
  background: var(--surface);
  color: var(--ink);
}

.location-card {
  position: relative;
  min-height: 340px;
  padding: 55px;
  display: grid;
  grid-template-columns: 140px 1fr 120px;
  gap: 40px;
  align-items: center;
  border: 1px solid var(--dark-line);
  background:
    linear-gradient(135deg, rgba(255,176,0,.07), transparent 45%),
    #f7f3e9;
  overflow: hidden;
}

.location-symbol {
  width: 106px;
  height: 140px;
  position: relative;
  border: 4px solid var(--ink);
  border-radius: 54px 54px 60px 60px;
  clip-path: polygon(0 0,100% 0,100% 67%,50% 100%,0 67%);
}

.location-symbol::before {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  left: 50%;
  top: 37px;
  transform: translateX(-50%);
  border: 4px solid var(--accent);
  border-radius: 50%;
}

.location-copy .eyebrow {
  margin-bottom: 18px;
}

.location-copy h2 {
  max-width: 790px;
  font-size: clamp(48px, 6vw, 78px);
  text-transform: uppercase;
}

.location-copy p {
  margin-top: 14px;
  font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  font-size: 31px;
  color: #5e6468;
  text-transform: uppercase;
}

.location-decoration {
  height: 140px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 8px;
}

.location-decoration span {
  width: 11px;
  background: var(--accent);
}

.location-decoration span:nth-child(1) { height: 50%; }
.location-decoration span:nth-child(2) { height: 78%; }
.location-decoration span:nth-child(3) { height: 100%; }

.closing-section {
  padding: 105px 0;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0, rgba(255,176,0,.14), transparent 40%),
    #0c1319;
}

.closing-inner p {
  color: var(--accent-2);
  font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  font-size: 15px;
  letter-spacing: .15em;
}

.closing-inner h2 {
  max-width: 920px;
  margin: 15px auto 36px;
  font-size: clamp(56px, 8vw, 102px);
  text-transform: uppercase;
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #a7b1b8;
  background: #080d11;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .5fr 1fr;
  gap: 24px;
  align-items: center;
  font-size: 12px;
}

.footer-grid strong {
  color: #d9dfe2;
  font-weight: 600;
}

.footer-grid a {
  color: var(--accent-2);
  font-weight: 700;
}

.floating-call {
  position: fixed;
  z-index: 900;
  right: 20px;
  bottom: 20px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 16px;
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(0,0,0,.32);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  transition: transform .25s ease;
}

.floating-call:hover {
  transform: translateY(-3px);
}

.reveal {
  opacity: 1;
  transform: none;
}

/* Las animaciones sólo se activan después de que JS confirme que funciona.
   Si JS falla, todo el contenido permanece visible. */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.js-ready .reveal.reveal-delay {
  transition-delay: .1s;
}

.js-ready .reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1020px) {
  .main-nav,
  .header-call {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav.open {
    position: fixed;
    display: flex;
    top: 78px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 20px 28px;
    background: rgba(11,17,23,.98);
  }

  .main-nav.open a {
    padding: 19px 4px;
    border-bottom: 1px solid rgba(255,255,255,.09);
    font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
    font-size: 27px;
    text-transform: uppercase;
  }

  .hero {
    padding-top: 130px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 36px;
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero-art {
    max-width: 690px;
    width: 100%;
    margin: 0 auto;
  }

  .visual-card {
    min-height: 500px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    min-height: 420px;
  }

  .location-card {
    grid-template-columns: 110px 1fr;
  }

  .location-decoration {
    display: none;
  }

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

@media (max-width: 740px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .nav-wrap {
    height: 70px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-text strong {
    font-size: 16px;
  }

  .main-nav.open {
    top: 70px;
  }

  .hero {
    padding-top: 112px;
  }

  .hero h1 {
    font-size: clamp(54px, 17vw, 82px);
  }

  .hero-subtitle {
    font-size: 28px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-contact-card {
    width: 100%;
  }

  .visual-card {
    min-height: 390px;
  }

  .crane-scene {
    inset: 62px 10px 62px;
  }

  .crane-mast {
    height: 250px;
  }

  .crane-jib {
    top: 74px;
  }

  .crane-counter {
    top: 64px;
  }

  .crane-cable {
    top: 87px;
    height: 150px;
  }

  .crane-hook {
    top: 232px;
  }

  .services-section {
    padding: 78px 0;
  }

  .section-heading h2 {
    font-size: 50px;
  }

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

  .service-card {
    min-height: 340px;
  }

  .service-icon {
    font-size: 100px;
    right: 24px;
  }

  .crane-mini {
    transform: scale(.78);
    transform-origin: top right;
  }

  .contact-section {
    padding: 82px 0;
  }

  .phone-display strong {
    font-size: 50px;
  }

  .contact-panel {
    min-height: 360px;
  }

  .panel-number {
    font-size: 100px;
  }

  .location-section {
    padding: 65px 0 80px;
  }

  .location-card {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 32px 24px;
  }

  .location-symbol {
    width: 72px;
    height: 96px;
    border-width: 3px;
  }

  .location-symbol::before {
    width: 25px;
    height: 25px;
    top: 25px;
    border-width: 3px;
  }

  .location-copy h2 {
    font-size: 46px;
  }

  .location-copy p {
    font-size: 25px;
  }

  .closing-section {
    padding: 78px 0;
  }

  .closing-inner h2 {
    font-size: 58px;
  }

  .floating-call {
    right: 12px;
    bottom: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
