:root {
  --black: #080A0D;
  --graphite: #15181D;
  --card: #1A1D22;
  --yellow: #F5A400;
  --orange: #F58200;
  --white: #FFFFFF;
  --light: #F4F4F4;
  --text: #1B1E23;
  --muted: #737781;
  --max: 1180px;
  --title: "Oswald", "Arial Narrow", Arial, sans-serif;
  --body: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
body.modal-open {
  overflow: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button,
a {
  -webkit-tap-highlight-color: transparent;
  text-align: center;
}

.jowilsa-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 78px;
  display: grid;
  grid-template-columns: 240px 1fr 220px;
  align-items: center;
  gap: 24px;
  padding: 0 clamp(24px, 5vw, 56px);
  background: linear-gradient(180deg, rgba(8, 10, 13, .98), rgba(8, 10, 13, .91));
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: box-shadow .25s ease, height .25s ease;
}
.jowilsa-header.is-scrolled { box-shadow: 0 12px 32px rgba(0,0,0,.28); }
.brand img { width: 190px; height: auto; }
.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}
.main-nav a {
  position: relative;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.quote-btn,
.primary-btn,
.secondary-btn,
.outline-btn,
.dark-link,
.jowilsa-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: transform .22s ease, background .22s ease, border-color .22s ease, color .22s ease, box-shadow .22s ease;
  will-change: transform;
}
.quote-btn,
.primary-btn {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #090909;
}
.quote-btn:hover,
.primary-btn:hover,
.jowilsa-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(245, 130, 0, .24);
}
.quote-btn:active,
.primary-btn:active,
.secondary-btn:active,
.outline-btn:active,
.dark-link:active,
.jowilsa-cta a:active {
  transform: translateY(1px) scale(.98);
  box-shadow: none;
}
.btn-icon {
  width: 15px;
  height: 15px;
  margin-right: 10px;
  border: 2px solid #0b0b0b;
  border-radius: 4px;
  position: relative;
}
.btn-icon::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 5px;
  left: 2px;
  top: 3px;
  border: 2px solid #0b0b0b;
  border-top: 0;
}
.menu-toggle { display: none; }

.jowilsa-hero {
  position: relative;
  min-height: 575px;
  padding-top: 78px;
  overflow: clip;
  background: var(--black);
}
.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 78px 0 0;
}
.hero-bg {
  background-image: url("assets/hero-bg.png");
  background-position: center;
  background-size: cover;
  animation: none;
  transform: none;
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8,10,13,.9) 0%, rgba(8,10,13,.56) 43%, rgba(8,10,13,.72) 100%),
    linear-gradient(0deg, rgba(8,10,13,.72), rgba(8,10,13,.18));
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  min-height: 497px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 235px;
  align-items: center;
  gap: 56px;
  padding: 34px 24px 84px;
}
.jowilsa-hero-content { max-width: 620px; color: var(--white); }
.eyebrow {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}
.eyebrow span {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 8px 2px;
  border-radius: 50%;
  background: var(--yellow);
}
.jowilsa-hero h1 {
  margin: 0;
  font-family: var(--title);
  font-size: clamp(52px, 7.6vw, 78px);
  line-height: .98;
  text-transform: uppercase;
  color: var(--white);
  max-width: 670px;
}
.jowilsa-hero h1 strong {
  display: block;
  color: var(--yellow);
  font-weight: 700;
}
.hero-copy {
  max-width: 520px;
  margin: 18px 0 28px;
  color: rgba(255,255,255,.9);
  font-size: 16px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.secondary-btn {
  color: var(--white);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.78);
}
.secondary-btn:hover { background: rgba(255,255,255,.14); }

.jowilsa-hero-stats {
  overflow: hidden;
  align-self: center;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  backdrop-filter: blur(2px);
}
.stat-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 105px;
  padding: 18px 20px;
  color: var(--white);
}
.stat-item + .stat-item { border-top: 1px solid rgba(255,255,255,.18); }
.stat-item svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--yellow);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.stat-item b {
  display: block;
  font-family: var(--title);
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
}
.stat-item span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.jowilsa-hero .eyebrow,
.jowilsa-hero h1,
.hero-copy,
.hero-actions,
.jowilsa-hero-stats,
.jowilsa-hero-stats .stat-item {
  opacity: 0;
  transform: translateY(18px) scale(.965);
  transform-origin: center;
  animation: heroZoomIn 1.65s cubic-bezier(.16, 1, .3, 1) forwards;
  will-change: opacity, transform;
}

.jowilsa-hero .eyebrow { animation-delay: 120ms; }
.jowilsa-hero h1 { animation-delay: 210ms; }
.hero-copy { animation-delay: 300ms; }
.hero-actions { animation-delay: 390ms; }
.jowilsa-hero-stats { animation-delay: 480ms; }
.jowilsa-hero-stats .stat-item:nth-child(1) { animation-delay: 560ms; }
.jowilsa-hero-stats .stat-item:nth-child(2) { animation-delay: 640ms; }
.jowilsa-hero-stats .stat-item:nth-child(3) { animation-delay: 720ms; }
.jowilsa-hero-stats .stat-item:nth-child(4) { animation-delay: 800ms; }

@keyframes heroZoomIn {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(.965);
  }
  55% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.jowilsa-client-bar {
  position: relative;
  z-index: 8;
  width: min(90%, var(--max));
  margin: -50px auto 0;
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
  gap: 24px;
  padding: 22px 28px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(0,0,0,.16);
}
.client-title {
  display: grid;
  grid-template-columns: 4px 1fr;
  gap: 16px;
  align-items: center;
  color: #12151a;
  font-size: 13px;
  line-height: 1.15;
  text-transform: uppercase;
}
.client-title span {
  width: 4px;
  height: 42px;
  background: var(--orange);
}
.client-logos {
  display: grid;
  grid-template-columns: repeat(7, minmax(90px, 1fr));
  align-items: center;
}
.client-logos span {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  color: #1e2b3d;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  border-left: 1px solid #dddfe4;
}
.client-logos .texaco { color: #ee2024; font-size: 15px; }
.client-logos .coopegas { color: #158a45; font-size: 13px; }
.client-logos img {
  display: block;
  max-width: 112px;
  max-height: 38px;
  object-fit: contain;
}

.about-hero {
  position: relative;
  min-height: 610px;
  padding: 78px 24px 0;
  display: flex;
  align-items: center;
  overflow: clip;
  background: var(--black);
}
.about-hero-bg,
.about-hero-overlay {
  position: absolute;
  inset: 78px 0 0;
}
.about-hero-bg {
  background-image: url("assets/hero-bg.png");
  background-size: cover;
  background-position: center;
  filter: saturate(.92);
}
.about-hero-overlay {
  background:
    linear-gradient(90deg, rgba(8,10,13,.93) 0%, rgba(8,10,13,.7) 42%, rgba(8,10,13,.25) 70%, rgba(8,10,13,.83) 100%),
    linear-gradient(0deg, rgba(8,10,13,.62), rgba(8,10,13,.18));
}
.about-hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  color: var(--white);
}
.about-hero h1 {
  margin: 0;
  font-family: var(--title);
  font-size: clamp(58px, 7vw, 92px);
  line-height: 1;
  text-transform: uppercase;
}
.title-rule {
  display: block;
  width: 78px;
  height: 4px;
  margin: 30px 0;
  background: var(--yellow);
}
.about-hero p {
  max-width: 520px;
  margin: 0;
  color: rgba(255,255,255,.92);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.8;
}

.about-values {
  padding: 58px 24px 72px;
  background: linear-gradient(180deg, #fff, #f6f6f6);
}
.values-grid {
  max-width: 980px;
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.values-grid article {
  min-height: 285px;
  padding: 0 48px;
  text-align: center;
}
.values-grid article + article {
  border-left: 1px solid #dfe2e6;
}
.values-grid svg {
  width: 70px;
  height: 70px;
  margin: 0 auto 22px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.values-grid h3 {
  margin: 0 0 18px;
  font-family: var(--title);
  font-size: 28px;
  text-transform: uppercase;
}
.values-grid p {
  margin: 0;
  color: #3d4149;
  font-size: 14px;
  line-height: 1.8;
}
.values-grid ul {
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  color: #2e333b;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}
.values-grid li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
}
.values-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
}
.values-grid li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 4px;
  height: 2px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
}
.about-services {
  padding-top: 58px;
}

.projects-page {
  background: #0d1117;
}
.projects-hero,
.equipment-hero {
  position: relative;
  min-height: 590px;
  padding: 78px 24px 0;
  display: flex;
  align-items: center;
  overflow: clip;
  background: var(--black);
}
.projects-hero-bg,
.projects-hero-overlay,
.equipment-hero-bg,
.equipment-hero-overlay {
  position: absolute;
  inset: 78px 0 0;
}
.projects-hero-bg,
.equipment-hero-bg {
  background-image: url("assets/hero-bg.png");
  background-size: cover;
  background-position: center;
  filter: grayscale(.12) saturate(.9);
}
.projects-hero-overlay,
.equipment-hero-overlay {
  background:
    linear-gradient(90deg, rgba(8,10,13,.95) 0%, rgba(8,10,13,.76) 50%, rgba(8,10,13,.46) 100%),
    linear-gradient(0deg, rgba(8,10,13,.62), rgba(8,10,13,.12));
}
.projects-hero-content,
.equipment-hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  color: var(--white);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: rgba(255,255,255,.64);
  font-weight: 900;
}
.breadcrumb span {
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}
.projects-hero h1,
.equipment-hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--title);
  font-size: clamp(58px, 7vw, 94px);
  line-height: 1;
  text-transform: uppercase;
}
.projects-hero-content > p,
.equipment-hero-content > p {
  max-width: 760px;
  margin: 0 0 44px;
  color: rgba(255,255,255,.86);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.65;
}
.projects-hero-stats,
.equipment-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.projects-hero-stats article,
.equipment-hero-features article {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 18px;
  min-width: 230px;
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,.35);
}
.projects-hero-stats article:first-child,
.equipment-hero-features article:first-child {
  padding-left: 0;
}
.projects-hero-stats article:last-child,
.equipment-hero-features article:last-child {
  border-right: 0;
}
.projects-hero-stats svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: var(--yellow);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.projects-hero-stats b {
  display: block;
  color: var(--yellow);
  font-family: var(--title);
  font-size: 44px;
  line-height: .9;
  text-transform: uppercase;
}
.projects-hero-stats span {
  display: block;
  color: var(--white);
  font-family: var(--title);
  font-size: 25px;
  line-height: 1.05;
  text-transform: uppercase;
}
.projects-listing {
  padding: 44px 24px 74px;
  background:
    radial-gradient(circle at 50% 0%, rgba(245,164,0,.08), transparent 36%),
    linear-gradient(180deg, #10141b, #080a0d);
  color: var(--white);
}
.project-filters {
  max-width: var(--max);
  margin: 0 auto 32px;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  scrollbar-color: var(--yellow) rgba(255,255,255,.08);
}
.project-filters button {
  flex: 0 0 auto;
  min-height: 52px;
  padding: 0 28px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: rgba(255,255,255,.84);
  font-family: var(--title);
  font-size: 18px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .22s ease, background .22s ease, color .22s ease;
}
.project-filters button:hover {
  color: var(--yellow);
}
.project-filters button.active {
  background: var(--yellow);
  color: #101010;
  box-shadow: 0 14px 28px rgba(245,164,0,.18);
}
.project-filters button:active {
  transform: translateY(1px) scale(.98);
}
.project-gallery {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-detail-card {
  overflow: hidden;
  background: linear-gradient(180deg, #171d25, #11161d);
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 20px 42px rgba(0,0,0,.18);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, opacity .25s ease;
}
.project-detail-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,164,0,.42);
  box-shadow: 0 26px 50px rgba(0,0,0,.28);
}
.project-detail-card.is-hidden {
  display: none;
}
.project-detail-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.project-detail-card div {
  min-height: 245px;
  padding: 26px 26px 28px;
}
.project-detail-card h2 {
  margin: 0 0 18px;
  font-family: var(--title);
  font-size: 30px;
  line-height: 1.05;
  text-transform: none;
}
.project-detail-card p {
  margin: 0 0 13px;
  color: rgba(255,255,255,.7);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}
.project-detail-card p b {
  color: var(--yellow);
}
.project-location::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 9px;
  border: 2px solid rgba(255,255,255,.68);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}
.project-detail-card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--yellow);
  font-family: var(--title);
  font-size: 21px;
  text-transform: uppercase;
}
.project-detail-card a::after {
  content: " ->";
  margin-left: 10px;
}
.equipment-hero-features span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  color: var(--yellow);
  font-family: var(--title);
  font-size: 25px;
  line-height: 1;
}
.equipment-hero-features b {
  display: block;
  max-width: 170px;
  color: var(--white);
  font-family: var(--title);
  font-size: 25px;
  line-height: 1.05;
  text-transform: uppercase;
}
@media (min-width: 861px) {
  .equipment-hero-features {
    flex-wrap: nowrap;
  }
  .equipment-hero-features article {
    flex: 1 1 0;
    min-width: 0;
    padding-inline: 24px;
  }
  .equipment-hero-features article:first-child {
    padding-left: 0;
  }
  .equipment-hero-features b {
    max-width: 180px;
    font-size: 23px;
  }
}
.equipment-listing {
  padding: 34px 24px 58px;
  background: linear-gradient(180deg, #fff, #f5f5f5);
}
.equipment-filters {
  max-width: var(--max);
  margin: 0 auto 28px;
  display: flex;
  justify-content: center;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 10px;
}
.equipment-filters button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid #d9dde3;
  border-radius: 5px;
  background: #fff;
  color: #15181d;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}
.equipment-filters button.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.equipment-filters button:active {
  transform: translateY(1px) scale(.98);
}
.equipment-catalog {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.equipment-detail-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #dfe3e8;
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(10,13,18,.08);
  cursor: pointer;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.equipment-detail-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,164,0,.45);
  box-shadow: 0 20px 42px rgba(10,13,18,.13);
}
.equipment-detail-card.is-hidden {
  display: none;
}
.equipment-detail-card img {
  width: 100%;
  height: 145px;
  object-fit: contain;
  padding: 14px 18px 0;
  background: #fafafa;
}
.equipment-detail-card div {
  padding: 18px 18px 20px;
}
.equipment-detail-card h2 {
  margin: 0 0 13px;
  font-family: var(--title);
  font-size: 23px;
  line-height: 1.05;
  text-transform: uppercase;
}
.equipment-detail-card ul {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  color: #454a53;
  font-size: 13px;
  line-height: 1.55;
}
.equipment-detail-card li {
  position: relative;
  padding-left: 17px;
  margin-bottom: 5px;
}
.equipment-detail-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
}
.equipment-detail-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 4px;
  background: rgba(245,164,0,.62);
  color: #101010;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.equipment-detail-card a::after {
  content: " ->";
  margin-left: 6px;
}
.equipment-rental-cta {
  margin-top: 28px;
}

.contact-hero {
  position: relative;
  min-height: 470px;
  padding: 78px 24px 0;
  display: flex;
  align-items: center;
  overflow: clip;
  background: var(--black);
}
.contact-hero-bg,
.contact-hero-overlay {
  position: absolute;
  inset: 78px 0 0;
}
.contact-hero-bg {
  background-image: url("assets/hero-bg.png");
  background-size: cover;
  background-position: center;
  filter: saturate(.85);
}
.contact-hero-overlay {
  background:
    linear-gradient(90deg, rgba(8,10,13,.95), rgba(8,10,13,.72), rgba(8,10,13,.9)),
    linear-gradient(0deg, rgba(8,10,13,.68), rgba(245,164,0,.12));
}
.contact-hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(460px, 1fr);
  gap: 58px;
  align-items: center;
  color: var(--white);
}
.contact-hero-copy h1 {
  margin: 0;
  font-family: var(--title);
  font-size: clamp(58px, 6vw, 84px);
  line-height: 1;
  text-transform: uppercase;
}
.contact-hero-copy p {
  max-width: 560px;
  margin: 0;
  color: rgba(255,255,255,.9);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.7;
}
.contact-info-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: rgba(8,10,13,.72);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 6px;
  backdrop-filter: blur(2px);
}
.contact-info-panel article {
  min-height: 132px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  padding: 28px;
}
.contact-info-panel article:nth-child(odd) {
  border-right: 1px solid rgba(255,255,255,.12);
}
.contact-info-panel article:nth-child(-n+2) {
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.contact-info-panel svg {
  width: 50px;
  height: 50px;
  padding: 10px;
  fill: none;
  stroke: var(--yellow);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  border: 1px solid var(--yellow);
  border-radius: 6px;
}
.contact-info-panel h2 {
  margin: 0 0 8px;
  font-family: var(--title);
  font-size: 18px;
  text-transform: uppercase;
}
.contact-info-panel p {
  margin: 0;
  color: rgba(255,255,255,.9);
  font-size: 15px;
  line-height: 1.55;
}
.contact-main {
  padding: 58px 24px 78px;
  background: linear-gradient(180deg, #fff, #f5f5f5);
}
.contact-layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.contact-card {
  min-height: 405px;
  padding: 34px;
  background: #fff;
  border: 1px solid #e1e4e8;
  border-radius: 6px;
  box-shadow: 0 12px 32px rgba(10,13,18,.07);
}
.contact-card h2 {
  margin: 0;
  font-family: var(--title);
  font-size: 26px;
  text-transform: uppercase;
}
.small-rule {
  display: block;
  width: 42px;
  height: 3px;
  margin: 12px 0 16px;
  background: var(--yellow);
}
.contact-card > p {
  margin: 0 0 20px;
  color: #333840;
  font-size: 14px;
  line-height: 1.6;
}
.contact-form-card form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid #d6dae0;
  border-radius: 5px;
  font: 500 14px var(--body);
  color: var(--text);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form-card textarea {
  grid-column: 1 / -1;
  min-height: 122px;
  padding-top: 14px;
  resize: vertical;
}
.contact-form-card input:focus,
.contact-form-card textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(245,164,0,.16);
}
.contact-form-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 44px;
  padding: 0 22px;
  border: 0;
  border-radius: 5px;
  background: var(--yellow);
  color: #101010;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease;
}
.contact-form-card button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(245,164,0,.24);
}
.contact-form-card button::before {
  content: "->";
  margin-right: 8px;
}
.privacy-note {
  margin-top: 22px !important;
  font-size: 13px !important;
}
.privacy-note::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 11px;
  margin-right: 8px;
  background: var(--orange);
  clip-path: polygon(20% 45%, 20% 30%, 50% 0, 80% 30%, 80% 45%, 92% 45%, 92% 100%, 8% 100%, 8% 45%);
}
.office-location {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}
.office-location span {
  width: 42px;
  height: 42px;
  border-radius: 5px;
  background: var(--black);
  position: relative;
}
.office-location span::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 10px;
  width: 13px;
  height: 13px;
  border: 2px solid var(--yellow);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}
.office-location b {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}
.office-location p {
  margin: 0;
  color: #5a5f68;
  font-size: 14px;
}
.office-card img {
  width: 100%;
  height: 216px;
  object-fit: cover;
  border-radius: 5px;
  border: 1px solid #e1e4e8;
}
.contact-project-cta {
  max-width: var(--max);
  margin: 28px auto 0;
  min-height: 126px;
  display: grid;
  grid-template-columns: 390px 70px minmax(0, 1fr) 220px;
  gap: 26px;
  align-items: center;
  overflow: hidden;
  padding-right: 34px;
  background: var(--black);
  border-radius: 6px;
  color: var(--white);
}
.contact-project-cta img {
  width: 100%;
  height: 126px;
  object-fit: cover;
}
.contact-cta-icon {
  width: 58px;
  height: 58px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  position: relative;
}
.contact-cta-icon::before {
  content: "";
  position: absolute;
  inset: 13px;
  border: 3px solid var(--yellow);
  border-radius: 50%;
}
.contact-project-cta h2 {
  margin: 0 0 8px;
  font-family: var(--title);
  font-size: 26px;
  text-transform: uppercase;
}
.contact-project-cta p {
  margin: 0;
  color: rgba(255,255,255,.85);
  font-size: 15px;
  line-height: 1.55;
}
.contact-project-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 5px;
  background: var(--yellow);
  color: #101010;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform .22s ease, box-shadow .22s ease;
}
.contact-project-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(245,164,0,.2);
}

.detail-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.detail-modal.is-open {
  display: flex;
}
.detail-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
}
.detail-modal-panel {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  overflow: hidden;
  padding: 0 34px 34px;
  background: #10141a;
  border: 1px solid rgba(245,164,0,.35);
  border-radius: 8px;
  color: var(--white);
  box-shadow: 0 30px 70px rgba(0,0,0,.42);
}
.detail-modal-image {
  width: calc(100% + 68px);
  height: 260px;
  margin: 0 -34px 30px;
  object-fit: cover;
  background: #0b0e13;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.equipment-detail-card .detail-modal-image,
.detail-modal-image[hidden] {
  display: none;
}
.detail-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
}
.detail-modal-panel h2 {
  margin: 0 0 14px;
  padding-right: 42px;
  font-family: var(--title);
  font-size: 38px;
  line-height: 1;
  text-transform: uppercase;
}
.detail-modal-panel p {
  margin: 0 0 24px;
  color: rgba(255,255,255,.78);
  font-size: 16px;
  line-height: 1.7;
}
.detail-modal-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 0 0 24px;
}
.detail-modal-gallery[hidden] {
  display: none;
}
.detail-modal-gallery button {
  overflow: hidden;
  height: 70px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 4px;
  background: #080a0d;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease;
}
.detail-modal-gallery button:hover {
  transform: translateY(-2px);
  border-color: var(--yellow);
}
.detail-modal-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-modal-panel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 5px;
  background: var(--yellow);
  color: #101010;
  font-weight: 900;
  text-transform: uppercase;
}
.image-preview {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.image-preview.is-open {
  display: flex;
}
.image-preview-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.86);
}
.image-preview img {
  position: relative;
  z-index: 1;
  max-width: min(1100px, 94vw);
  max-height: 86vh;
  object-fit: contain;
  border: 1px solid rgba(245,164,0,.36);
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
}
.image-preview-close {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  background: rgba(8,10,13,.72);
  color: var(--white);
  font-size: 26px;
  cursor: pointer;
}

.jowilsa-services,
.jowilsa-equipment {
  padding: 54px 24px 56px;
  background: linear-gradient(180deg, #fff, var(--light));
}
.section-heading p {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.section-heading h2 {
  margin: 0;
  font-family: var(--title);
  font-size: clamp(31px, 3.2vw, 42px);
  line-height: 1.12;
  text-transform: uppercase;
}
.section-heading.centered {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}
.section-heading.centered p::before,
.section-heading.centered p::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  margin: 0 9px 4px;
  background: var(--yellow);
}
.section-heading h2 span { color: var(--orange); }
.services-grid {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.jowilsa-service-card {
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(10, 13, 18, .08);
  transition: transform .28s ease, box-shadow .28s ease;
  will-change: transform;
}
.jowilsa-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(10, 13, 18, .13);
}
.jowilsa-service-card img {
  width: 100%;
  height: 132px;
  object-fit: cover;
}
.service-body {
  position: relative;
  min-height: 164px;
  padding: 28px 24px 22px 78px;
}
.service-icon {
  position: absolute;
  left: 18px;
  top: -23px;
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  border-radius: 4px;
  color: #111;
  font-family: var(--title);
  font-size: 21px;
}
.service-body h3 {
  margin: 0 0 9px;
  font-family: var(--title);
  font-size: 20px;
  line-height: 1.05;
  text-transform: uppercase;
}
.service-body p {
  margin: 0 0 15px;
  color: #3f434b;
  font-size: 13px;
  line-height: 1.5;
}
.service-body a {
  color: #111;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.service-body a::after {
  content: " ->";
  color: var(--orange);
}
.services-more {
  max-width: 1050px;
  margin: 34px auto 0;
  display: flex;
  justify-content: center;
}
.services-page-main {
  background: linear-gradient(180deg, #fff, #f4f4f4);
}
.services-page-hero {
  padding: 132px 24px 54px;
  background:
    linear-gradient(90deg, rgba(8,10,13,.94), rgba(8,10,13,.58)),
    url("assets/hero-bg.png") center / cover;
  color: var(--white);
}
.services-page-hero > div,
.services-page-listing {
  max-width: var(--max);
  margin: 0 auto;
}
.services-page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--title);
  font-size: clamp(58px, 7vw, 94px);
  line-height: 1;
  text-transform: uppercase;
}
.services-page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.65;
}
.services-page-listing {
  padding: 54px 24px 74px;
}
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.services-page-grid .service-body {
  min-height: 240px;
}
.services-page-grid .service-body a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 5px;
  background: var(--black);
  color: var(--white);
}
.services-page-grid .service-body a::after {
  margin-left: 8px;
}
.about-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 30px;
  border-radius: 6px;
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
  will-change: transform;
}
.about-more-btn::after {
  content: " ->";
  margin-left: 8px;
  color: var(--yellow);
}
.about-more-btn:hover {
  transform: translateY(-2px);
  background: var(--graphite);
  box-shadow: 0 16px 30px rgba(8,10,13,.18);
}
.about-more-btn:active {
  transform: translateY(1px) scale(.98);
  box-shadow: none;
}

.jowilsa-projects {
  padding: 54px 24px 64px;
  background:
    linear-gradient(180deg, rgba(21,24,29,.94), rgba(8,10,13,.98)),
    var(--graphite);
  color: var(--white);
}
.section-row {
  max-width: var(--max);
  margin: 0 auto 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}
.section-row.light { color: var(--text); }
.outline-btn {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.55);
  min-height: 40px;
  padding-inline: 18px;
}
.outline-btn:hover { border-color: var(--yellow); color: var(--yellow); }
.dark-link {
  min-height: 40px;
  color: var(--text);
  border: 1px solid #cfd3da;
  padding-inline: 18px;
}
.dark-link:hover { background: var(--black); color: var(--white); }
.projects-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding: 0 0 18px;
  scrollbar-color: var(--yellow) rgba(255,255,255,.12);
}
.jowilsa-project-card {
  flex: 0 0 230px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid rgba(255,255,255,.05);
  scroll-snap-align: start;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
  will-change: transform;
}
.jowilsa-project-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245,164,0,.5);
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
}
.jowilsa-project-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.jowilsa-project-card div { padding: 18px 18px 22px; }
.jowilsa-project-card h3 {
  margin: 0 0 9px;
  font-size: 15px;
  line-height: 1.25;
}
.jowilsa-project-card p {
  margin: 0 0 10px;
  color: rgba(255,255,255,.68);
  font-size: 13px;
}
.jowilsa-project-card span {
  color: rgba(255,255,255,.72);
  font-size: 12px;
  line-height: 1.35;
}
.jowilsa-project-card span b { color: var(--orange); }

.equipment-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior: contain;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: none;
  scroll-snap-type: x mandatory;
  touch-action: pan-x;
  contain: paint;
  padding: 0 0 18px;
  scrollbar-color: var(--yellow) #e6e8ec;
}
.equipment-grid article {
  flex: 0 0 210px;
  min-height: 158px;
  overflow: hidden;
  display: grid;
  grid-template-rows: 105px auto;
  align-items: center;
  justify-items: center;
  padding: 14px 10px 16px;
  background: #fff;
  border: 1px solid #edf0f4;
  box-shadow: 0 10px 22px rgba(10,13,18,.06);
  scroll-snap-align: start;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  will-change: transform;
}
.equipment-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(245,164,0,.35);
  box-shadow: 0 18px 32px rgba(10,13,18,.11);
}
.equipment-grid img {
  max-height: 100px;
  object-fit: contain;
}
.equipment-grid h3 {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.16;
  text-align: center;
}

.jowilsa-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 70px minmax(240px, 430px) minmax(260px, 1fr) 220px;
  align-items: center;
  gap: 28px;
  padding: 28px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--yellow);
  color: #0a0a0a;
}
.jowilsa-cta::after {
  content: "";
  position: absolute;
  inset: auto -40px 0;
  height: 70px;
  opacity: .11;
  background: repeating-linear-gradient(90deg, #000 0 2px, transparent 2px 90px);
}
.cta-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--black);
  position: relative;
}
.cta-icon::before,
.cta-icon::after {
  content: "";
  position: absolute;
  left: 21px;
  right: 21px;
  top: 16px;
  bottom: 15px;
  border: 3px solid var(--yellow);
  border-radius: 4px;
}
.cta-icon::after {
  left: 14px;
  right: 14px;
  top: 35px;
  bottom: 18px;
  border-top: 0;
}
.jowilsa-cta h2 {
  position: relative;
  margin: 0;
  font-family: var(--title);
  font-size: clamp(29px, 3vw, 42px);
  line-height: 1;
  text-transform: uppercase;
}
.jowilsa-cta p {
  position: relative;
  margin: 0;
  max-width: 520px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}
.jowilsa-cta a {
  position: relative;
  background: var(--black);
  color: var(--white);
}

.jowilsa-capability {
  padding: 64px 24px;
  background:
    linear-gradient(90deg, rgba(8,10,13,.95), rgba(21,24,29,.9)),
    var(--graphite);
  color: var(--white);
}
.capability-intro {
  max-width: var(--max);
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  gap: 48px;
  align-items: end;
}
.capability-intro p {
  margin: 0;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.capability-intro h2 {
  margin: 0;
  font-family: var(--title);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  text-transform: uppercase;
}
.capability-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.14);
  border-left: 1px solid rgba(255,255,255,.14);
}
.capability-grid article {
  min-height: 210px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.025);
  transition: background .28s ease, transform .28s ease, border-color .28s ease;
}
.capability-grid article:hover {
  background: rgba(245,164,0,.08);
  border-color: rgba(245,164,0,.34);
  transform: translateY(-3px);
}
.capability-grid span {
  color: var(--yellow);
  font-family: var(--title);
  font-size: 28px;
}
.capability-grid h3 {
  margin: 22px 0 10px;
  font-family: var(--title);
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}
.capability-grid p {
  margin: 0;
  color: rgba(255,255,255,.74);
  font-size: 14px;
  line-height: 1.55;
}

.jowilsa-footer {
  padding: 34px 24px 18px;
  color: rgba(255,255,255,.78);
  background:
    radial-gradient(circle at 20% 0%, rgba(245,164,0,.1), transparent 30%),
    var(--black);
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto 22px;
  display: grid;
  grid-template-columns: 1.5fr .9fr 1fr 1.45fr;
  gap: 42px;
}
.footer-brand img { width: 190px; margin-bottom: 14px; }
.jowilsa-footer h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-family: var(--title);
  font-size: 18px;
  text-transform: uppercase;
}
.jowilsa-footer p,
.jowilsa-footer a {
  display: block;
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.45;
}
.socials {
  display: flex;
  gap: 13px;
  margin-top: 18px;
}
.socials a {
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
}
.socials svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 0;
}
.map-placeholder {
  height: 58px;
  margin-top: 16px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.85), rgba(255,255,255,.62)),
    repeating-linear-gradient(35deg, #cfd5dc 0 1px, transparent 1px 22px);
  border: 1px solid rgba(255,255,255,.2);
  position: relative;
}
.map-placeholder span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  background: var(--orange);
  transform: translate(-50%, -65%) rotate(-45deg);
}

.map-embed {
  display: block;
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: 8px;
}

.footer-map-embed {
  min-height: 58px;
  margin-top: 16px;
  border: 1px solid rgba(255,255,255,.2);
}

.jowilsa-footer small {
  display: block;
  max-width: var(--max);
  margin: 0 auto;
  color: rgba(255,255,255,.42);
  font-size: 12px;
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  box-shadow: 0 16px 34px rgba(0,0,0,.26);
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
  will-change: transform;
}
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(37, 211, 102, .42);
  border-radius: inherit;
}
.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  background: #1fb95a;
  box-shadow: 0 20px 42px rgba(0,0,0,.32);
}
.whatsapp-float:active {
  transform: translateY(1px) scale(.94);
  box-shadow: 0 8px 18px rgba(0,0,0,.24);
}

.contact-choice-modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}
.contact-choice-modal.is-open {
  display: flex;
}
.contact-choice-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8,10,13,.68);
}
.contact-choice-panel {
  position: relative;
  z-index: 1;
  width: min(390px, 100%);
  padding: 26px;
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  box-shadow: 0 26px 70px rgba(0,0,0,.34);
}
.contact-choice-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #f1f2f4;
  font-size: 22px;
}
.contact-choice-panel p {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.contact-choice-panel h2 {
  margin: 0 0 20px;
  padding-right: 28px;
  font-family: var(--title);
  font-size: 30px;
  line-height: 1.05;
  text-transform: uppercase;
}
.contact-choice-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact-choice-actions a,
.contact-choice-actions button {
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 900;
  text-transform: uppercase;
}
.contact-choice-whatsapp {
  background: #25D366;
  color: #fff;
}
.contact-choice-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.contact-choice-email {
  background: var(--black);
  color: #fff;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .jowilsa-header { grid-template-columns: 210px 1fr 190px; padding-inline: 24px; }
  .jowilsa-cta { grid-template-columns: 70px 1fr 1fr; }
  .jowilsa-cta a { grid-column: 2 / -1; justify-self: start; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .project-gallery { grid-template-columns: repeat(2, 1fr); }
  .projects-hero-stats article {
    min-width: 205px;
    padding-inline: 22px;
  }
  .contact-hero-inner { grid-template-columns: 1fr; gap: 32px; padding-block: 48px; }
  .contact-project-cta { grid-template-columns: 260px 56px 1fr; padding-right: 24px; }
  .contact-project-cta a { grid-column: 2 / -1; justify-self: start; }
  .equipment-catalog { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .jowilsa-header {
    grid-template-columns: 1fr auto;
    height: 70px;
  }
  .brand img { width: 176px; }
  .menu-toggle {
    display: grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    place-content: center;
    background: transparent;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 6px;
  }
  .menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--white);
  }
  .main-nav,
  .quote-btn {
    display: none;
  }
  .main-nav.is-open {
    display: flex;
    position: absolute;
    left: 18px;
    right: 18px;
    top: 78px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #0d1015;
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 24px 45px rgba(0,0,0,.34);
  }
  .main-nav.is-open a {
    padding: 14px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .main-nav a::after { display: none; }
  .jowilsa-hero { padding-top: 70px; }
  .about-hero { padding-top: 70px; min-height: 540px; }
  .projects-hero,
  .equipment-hero { padding-top: 70px; min-height: 560px; }
  .contact-hero { padding-top: 70px; min-height: auto; }
  .hero-bg,
  .hero-overlay,
  .about-hero-bg,
  .about-hero-overlay,
  .projects-hero-bg,
  .projects-hero-overlay,
  .contact-hero-bg,
  .contact-hero-overlay,
  .equipment-hero-bg,
  .equipment-hero-overlay { inset: 70px 0 0; }
  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 66px;
    gap: 30px;
  }
  .jowilsa-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item { min-height: 92px; }
  .stat-item:nth-child(2) { border-top: 0; border-left: 1px solid rgba(255,255,255,.18); }
  .stat-item:nth-child(4) { border-left: 1px solid rgba(255,255,255,.18); }
  .jowilsa-client-bar {
    grid-template-columns: 1fr;
    gap: 14px;
    overflow: hidden;
  }
  .client-logos {
    display: flex;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  .client-logos span { min-width: 140px; }
  .services-grid,
  .services-page-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; max-width: 620px; gap: 32px; }
  .values-grid article { min-height: auto; padding: 0 24px 34px; }
  .values-grid article + article { border-left: 0; border-top: 1px solid #dfe2e6; padding-top: 34px; }
  .projects-hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .projects-hero-stats article {
    min-width: 0;
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.28);
  }
  .projects-hero-stats article:last-child {
    border-bottom: 0;
  }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-panel { grid-template-columns: 1fr; }
  .contact-info-panel article,
  .contact-info-panel article:nth-child(odd),
  .contact-info-panel article:nth-child(-n+2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .contact-info-panel article:last-child { border-bottom: 0; }
  .contact-project-cta {
    grid-template-columns: 1fr;
    padding: 0 22px 24px;
  }
  .contact-project-cta img {
    width: calc(100% + 44px);
    margin-inline: -22px;
  }
  .contact-project-cta a { grid-column: auto; justify-self: stretch; }
  .equipment-hero-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .equipment-hero-features article {
    min-width: 0;
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.28);
  }
  .equipment-hero-features article:last-child {
    border-bottom: 0;
  }
  .equipment-catalog { grid-template-columns: repeat(2, 1fr); }
  .section-row { align-items: start; flex-direction: column; }
  .capability-intro { grid-template-columns: 1fr; gap: 12px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .mobile-admin-hidden {
    display: none !important;
  }

  .jowilsa-hero h1 { font-size: 45px; }
  .services-page-hero {
    padding: 112px 18px 42px;
  }
  .services-page-hero h1 {
    font-size: 48px;
  }
  .services-page-hero p {
    font-size: 16px;
  }
  .services-page-listing {
    padding-inline: 18px;
  }
  .hero-inner { padding-inline: 18px; padding-bottom: 78px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .jowilsa-client-bar {
    width: calc(100% - 28px);
    margin-top: -44px;
    padding: 18px;
  }
  .about-hero {
    min-height: 520px;
    padding-inline: 18px;
  }
  .projects-hero,
  .equipment-hero {
    min-height: 620px;
    padding-inline: 18px;
  }
  .contact-hero { padding-inline: 18px; }
  .about-hero h1 { font-size: 54px; }
  .projects-hero h1,
  .equipment-hero h1 { font-size: 48px; }
  .contact-hero-copy h1 { font-size: 50px; }
  .projects-hero-content > p,
  .equipment-hero-content > p {
    margin-bottom: 30px;
    font-size: 16px;
  }
  .projects-hero-stats b,
  .equipment-hero-features span { font-size: 34px; }
  .projects-hero-stats span,
  .equipment-hero-features b { font-size: 20px; }
  .about-hero p {
    font-size: 15px;
    line-height: 1.7;
  }
  .about-values { padding-inline: 18px; }
  .jowilsa-hero-stats { grid-template-columns: 1fr 1fr; }
  .stat-item {
    grid-template-columns: 36px 1fr;
    gap: 10px;
    padding: 14px 12px;
  }
  .stat-item svg { width: 32px; height: 32px; }
  .stat-item b { font-size: 21px; }
  .stat-item span { font-size: 10px; }
  .services-grid,
  .services-page-grid,
  .project-gallery,
  .equipment-catalog,
  .footer-grid { grid-template-columns: 1fr; }
  .projects-listing { padding-inline: 18px; }
  .contact-main { padding-inline: 18px; }
  .equipment-listing { padding-inline: 18px; }
  .contact-card { padding: 22px; }
  .contact-form-card form { grid-template-columns: 1fr; }
  .office-card img { height: 190px; }
  .project-filters {
    gap: 10px;
    margin-bottom: 24px;
  }
  .project-filters button {
    min-height: 46px;
    padding-inline: 18px;
    font-size: 15px;
  }
  .project-detail-card div {
    min-height: auto;
    padding: 22px;
  }
  .project-detail-card h2 { font-size: 25px; }
  .equipment-filters {
    justify-content: start;
  }
  .equipment-detail-card img { height: 160px; }
  .detail-modal-panel {
    padding: 0 22px 28px;
  }
  .detail-modal-image {
    width: calc(100% + 44px);
    height: 190px;
    margin: 0 -22px 24px;
  }
  .detail-modal-panel h2 { font-size: 30px; }
  .detail-modal-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .detail-modal-gallery button {
    height: 62px;
  }
  .jowilsa-project-card { flex-basis: 270px; }
  .equipment-grid article { flex-basis: 170px; }
  .jowilsa-services,
  .jowilsa-projects,
  .jowilsa-equipment,
  .jowilsa-capability { padding-inline: 18px; }
  .jowilsa-cta {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 26px 22px 32px;
  }
  .jowilsa-cta a { grid-column: auto; justify-self: stretch; }
  .capability-grid { grid-template-columns: 1fr; }
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
  .scroll-reveal {
    opacity: 1;
    transform: none;
  }
  .jowilsa-hero .eyebrow,
  .jowilsa-hero h1,
  .hero-copy,
  .hero-actions,
  .jowilsa-hero-stats,
  .jowilsa-hero-stats .stat-item {
    opacity: 1;
    transform: none;
  }
}
