:root {
  --ink: #101311;
  --ink-soft: #1a1e1b;
  --paper: #f2f0ea;
  --paper-bright: #faf9f5;
  --line: #d4d1c7;
  --orange: #f36b22;
  --orange-dark: #d94e0d;
  --white: #ffffff;
  --muted: #6f756f;
  --display: "Barlow Condensed", Arial, sans-serif;
  --body: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { max-width: 100%; display: block; }

.site-header {
  align-items: center;
  background: rgba(16, 19, 17, .96);
  color: var(--white);
  display: flex;
  height: 82px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(22px, 4.5vw, 74px);
  position: fixed;
  right: 0;
  top: 0;
  transition: height .3s ease, box-shadow .3s ease;
  z-index: 100;
}
.site-header.scrolled { height: 68px; box-shadow: 0 10px 40px rgba(0,0,0,.15); }
.brand { align-items: center; display: inline-flex; gap: 12px; line-height: 1; }
.brand-mark {
  align-items: center;
  background: var(--orange);
  display: grid;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  grid-template-columns: 1fr 1fr;
  height: 38px;
  letter-spacing: -2px;
  padding: 0 7px;
  transform: skew(-8deg);
  width: 44px;
}
.brand-mark span { transform: skew(8deg); }
.brand-copy { display: grid; gap: 3px; }
.brand-copy strong { font-family: var(--display); font-size: 20px; letter-spacing: 2px; }
.brand-copy small { font-size: 7px; letter-spacing: 1.7px; }
.main-nav { align-items: center; display: flex; gap: clamp(18px, 2.5vw, 42px); }
.main-nav > a:not(.nav-quote) {
  color: rgba(255,255,255,.75);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color .2s ease;
}
.main-nav > a:not(.nav-quote):hover { color: var(--orange); }
.nav-quote {
  align-items: center;
  border-left: 1px solid rgba(255,255,255,.22);
  display: flex;
  font-size: 11px;
  font-weight: 700;
  gap: 20px;
  letter-spacing: 1.2px;
  padding: 8px 0 8px 30px;
  text-transform: uppercase;
}
.nav-quote span { color: var(--orange); font-size: 18px; }
.menu-toggle { display: none; }

.hero {
  background-image:
    linear-gradient(90deg, rgba(8, 11, 9, .93) 0%, rgba(8, 11, 9, .72) 48%, rgba(8, 11, 9, .25) 100%),
    url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=2000&q=88");
  background-position: center;
  background-size: cover;
  color: var(--white);
  min-height: 790px;
  overflow: hidden;
  padding: 180px clamp(22px, 7vw, 118px) 110px;
  position: relative;
}
.hero::after {
  background: var(--orange);
  bottom: -100px;
  content: "";
  height: 320px;
  opacity: .88;
  position: absolute;
  right: -220px;
  transform: skew(-25deg);
  width: 430px;
}
.hero-grid {
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 74px 74px;
  inset: 0;
  position: absolute;
}
.hero-content { max-width: 850px; position: relative; z-index: 2; }
.eyebrow {
  align-items: center;
  color: var(--orange-dark);
  display: flex;
  font-size: 10px;
  font-weight: 800;
  gap: 12px;
  letter-spacing: 2.5px;
  margin: 0 0 26px;
  text-transform: uppercase;
}
.eyebrow span { background: currentColor; height: 2px; width: 28px; }
.eyebrow.light { color: var(--orange); }
h1, h2 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: .88;
  margin: 0;
  text-transform: uppercase;
}
h1 { font-size: clamp(76px, 10.8vw, 168px); }
h2 { font-size: clamp(58px, 7vw, 104px); }
h1 em, h2 em { color: var(--orange); font-style: normal; }
.hero-intro {
  color: rgba(255,255,255,.78);
  font-size: 16px;
  line-height: 1.8;
  margin: 34px 0 38px;
  max-width: 560px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  align-items: center;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  gap: 28px;
  justify-content: center;
  letter-spacing: 1.3px;
  min-height: 56px;
  padding: 0 28px;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--orange); color: var(--white); }
.button-primary:hover { background: var(--orange-dark); }
.button-ghost { border: 1px solid rgba(255,255,255,.35); color: var(--white); }
.button-ghost:hover { background: var(--white); color: var(--ink); }
.hero-services {
  bottom: 30px;
  display: flex;
  gap: 34px;
  left: clamp(22px, 7vw, 118px);
  position: absolute;
  z-index: 2;
}
.hero-services p {
  color: var(--orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  margin: 0;
  text-transform: uppercase;
}
.hero-services div { display: flex; flex-wrap: wrap; gap: 10px 24px; max-width: 700px; }
.hero-services span { color: rgba(255,255,255,.5); font-family: var(--display); font-size: 12px; letter-spacing: 1.2px; text-transform: uppercase; }
.hero-badge {
  align-items: center;
  border-left: 2px solid var(--orange);
  bottom: 34px;
  display: flex;
  gap: 12px;
  padding-left: 13px;
  position: absolute;
  right: clamp(22px, 4vw, 68px);
  z-index: 3;
}
.hero-badge strong { font-family: var(--display); font-size: 30px; line-height: 1; }
.hero-badge span { color: rgba(255,255,255,.7); font-size: 8px; font-weight: 700; letter-spacing: 1px; line-height: 1.5; text-transform: uppercase; }

.trust-strip {
  align-items: center;
  background: var(--orange);
  color: var(--white);
  display: flex;
  gap: 60px;
  min-height: 100px;
  padding: 20px clamp(22px, 7vw, 118px);
}
.trust-strip > p { font-family: var(--display); font-size: 16px; font-weight: 800; letter-spacing: 1px; margin: 0; text-transform: uppercase; }
.trust-items { display: flex; flex: 1; justify-content: space-between; }
.trust-items span { font-size: 10px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; }
.trust-items b { color: rgba(255,255,255,.5); margin-right: 9px; }

.section { padding: clamp(90px, 11vw, 170px) clamp(22px, 7vw, 118px); }
.about { display: grid; gap: 7vw; grid-template-columns: .85fr 1.15fr; }
.about .section-heading { position: relative; }
.about .section-heading::after {
  background: var(--line);
  bottom: 2px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 70%;
}
.about-content { padding-top: 50px; }
.about-content .lead { font-size: clamp(21px, 2.2vw, 32px); font-weight: 500; letter-spacing: -.7px; line-height: 1.5; margin: 0 0 25px; }
.about-content > p:not(.lead) { color: var(--muted); max-width: 670px; }
.about-values { border-top: 1px solid var(--line); display: grid; gap: 40px; grid-template-columns: 1fr 1fr; margin-top: 60px; padding-top: 35px; }
.about-values article span, .career-benefits span { color: var(--orange-dark); font-family: var(--display); font-size: 13px; font-weight: 800; letter-spacing: 1px; }
.about-values h3, .career-content h3, .project-table-title h3 { font-family: var(--display); font-size: 24px; letter-spacing: .5px; margin: 10px 0; text-transform: uppercase; }
.about-values p { color: var(--muted); font-size: 12px; margin: 0; }

.services { background: var(--ink); color: var(--white); }
.services-intro {
  align-items: end;
  border-bottom: 1px solid rgba(255,255,255,.13);
  display: grid;
  gap: 8vw;
  grid-template-columns: 1.4fr .6fr;
  padding-bottom: 70px;
}
.services-intro > p { color: rgba(255,255,255,.55); font-size: 13px; margin: 0 0 5px; max-width: 400px; }
.service-list { display: grid; }
.service-item {
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.13);
  display: grid;
  gap: clamp(20px, 3vw, 50px);
  grid-template-columns: 45px 60px 1fr .7fr;
  min-height: 185px;
  padding: 30px 0;
  position: relative;
  transition: padding .25s ease;
}
.service-item::after { background: var(--orange); bottom: -1px; content: ""; height: 2px; left: 0; position: absolute; transition: width .35s ease; width: 0; }
.service-item:hover { padding-left: 12px; }
.service-item:hover::after { width: 100%; }
.service-number { color: rgba(255,255,255,.35); font-family: var(--display); font-size: 12px; font-weight: 800; }
.service-icon { align-items: center; background: var(--orange); display: flex; height: 56px; justify-content: center; transform: skew(-5deg); width: 56px; }
.service-icon svg { fill: none; height: 34px; stroke: var(--white); stroke-linecap: square; stroke-width: 1.6; transform: skew(5deg); width: 34px; }
.service-item h3 { font-family: var(--display); font-size: clamp(28px, 3vw, 42px); letter-spacing: .2px; line-height: 1; margin: 0 0 12px; text-transform: uppercase; }
.service-item p { color: rgba(255,255,255,.52); font-size: 11px; line-height: 1.7; margin: 0; max-width: 500px; }
.service-item ul { color: rgba(255,255,255,.72); font-size: 10px; font-weight: 700; letter-spacing: .8px; line-height: 2; list-style: none; margin: 0; padding: 0; text-transform: uppercase; }
.service-item li::before { color: var(--orange); content: "+"; margin-right: 10px; }

.projects-heading {
  align-items: end;
  display: grid;
  gap: 8vw;
  grid-template-columns: 1.4fr .6fr;
  margin-bottom: 70px;
}
.projects-heading > p { color: var(--muted); font-size: 12px; margin: 0; }
.project-grid { display: grid; gap: 24px; grid-template-columns: 1fr 1fr; }
.project-card-large { grid-column: 1 / -1; }
.project-image {
  background-color: #999;
  background-position: center;
  background-size: cover;
  height: 410px;
  overflow: hidden;
  position: relative;
}
.project-card-large .project-image { height: 570px; }
.project-image::after {
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.35));
  content: "";
  inset: 0;
  position: absolute;
  transition: background .3s ease;
}
.project-card:hover .project-image::after { background: linear-gradient(180deg, rgba(243,107,34,.07), rgba(0,0,0,.45)); }
.image-one { background-image: url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1800&q=85"); }
.image-two { background-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1400&q=85"); }
.image-three { background-image: url("https://images.unsplash.com/photo-1531835551805-16d864c8d311?auto=format&fit=crop&w=1400&q=85"); }
.project-tag, .project-count {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.5px;
  position: absolute;
  text-transform: uppercase;
  z-index: 2;
}
.project-tag { background: var(--orange); color: var(--white); left: 18px; padding: 8px 12px; top: 18px; }
.project-count { bottom: 18px; color: var(--white); right: 18px; }
.project-info {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 25px;
  justify-content: space-between;
  padding: 25px 0 30px;
}
.project-info p { color: var(--orange-dark); font-size: 8px; font-weight: 800; letter-spacing: 1.5px; margin: 0 0 5px; text-transform: uppercase; }
.project-info h3 { font-family: var(--display); font-size: clamp(25px, 3vw, 36px); letter-spacing: .4px; line-height: 1; margin: 0; text-transform: uppercase; }
.project-info ul { color: var(--muted); display: flex; flex-wrap: wrap; font-size: 8px; font-weight: 800; gap: 8px 18px; justify-content: end; letter-spacing: 1px; list-style: none; margin: 5px 0 0; padding: 0; text-transform: uppercase; }
.project-info li::before { color: var(--orange); content: "/"; margin-right: 6px; }
.project-table-wrap { background: var(--paper-bright); margin-top: 80px; padding: 35px; }
.project-table-title { align-items: center; display: flex; justify-content: space-between; margin-bottom: 25px; }
.project-table-title h3 { margin: 0; }
.project-table-title span { color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.table-row { align-items: center; border-top: 1px solid var(--line); display: grid; font-size: 11px; gap: 20px; grid-template-columns: 1fr 1fr 120px; min-height: 62px; }
.table-row strong { font-size: 12px; }
.table-row b { color: #3e7b4d; font-size: 9px; letter-spacing: 1px; text-transform: uppercase; }
.table-head { color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: 1.2px; min-height: 42px; text-transform: uppercase; }

.safety { background: var(--orange); color: var(--white); display: grid; grid-template-columns: 1fr 1fr; min-height: 710px; }
.safety-image {
  background-image: linear-gradient(rgba(16,19,17,.15), rgba(16,19,17,.15)), url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=1600&q=85");
  background-position: center;
  background-size: cover;
  filter: grayscale(100%);
  min-height: 600px;
}
.safety-content { align-self: center; padding: 80px clamp(35px, 7vw, 110px); }
.safety-content .eyebrow { color: var(--white); }
.safety-content h2 em { color: var(--ink); }
.safety-content > p:not(.eyebrow) { color: rgba(255,255,255,.78); font-size: 13px; margin: 35px 0 45px; max-width: 520px; }
.safety-points { border-top: 1px solid rgba(255,255,255,.35); display: grid; }
.safety-points span { border-bottom: 1px solid rgba(255,255,255,.35); font-size: 10px; font-weight: 800; letter-spacing: 1px; padding: 17px 0; text-transform: uppercase; }
.safety-points b { color: rgba(255,255,255,.45); display: inline-block; margin-right: 12px; width: 24px; }

.careers { display: grid; gap: 7vw; grid-template-columns: .8fr 1.2fr; }
.careers-heading > p:not(.eyebrow) { color: var(--muted); font-size: 12px; margin-top: 30px; max-width: 430px; }
.career-content { display: grid; gap: 55px; grid-template-columns: 1fr .85fr; padding-top: 40px; }
.career-roles a {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  gap: 12px;
  grid-template-columns: 35px 1fr 30px;
  letter-spacing: .4px;
  padding: 17px 0;
  text-transform: uppercase;
  transition: color .2s ease, padding .2s ease;
}
.career-roles a:last-child { border-bottom: 1px solid var(--line); }
.career-roles a:hover { color: var(--orange-dark); padding-left: 8px; }
.career-roles a span { color: var(--muted); font-family: var(--body); font-size: 8px; letter-spacing: 1px; }
.career-roles a b { color: var(--orange); }
.career-benefits > div { border-top: 1px solid var(--line); display: grid; gap: 15px; grid-template-columns: 30px 1fr; padding: 17px 0; }
.career-benefits p { color: var(--muted); font-size: 10px; line-height: 1.8; margin: 0; }
.career-benefits strong { color: var(--ink); font-size: 11px; text-transform: uppercase; }

.quote { background: var(--ink); color: var(--white); display: grid; gap: 8vw; grid-template-columns: .75fr 1.25fr; padding: clamp(90px, 11vw, 160px) clamp(22px, 7vw, 118px); }
.quote-copy > p:not(.eyebrow) { color: rgba(255,255,255,.55); font-size: 12px; margin: 30px 0 45px; max-width: 400px; }
.contact-details { border-top: 1px solid rgba(255,255,255,.15); display: grid; grid-template-columns: 1fr 1fr; }
.contact-details a, .contact-details div { border-bottom: 1px solid rgba(255,255,255,.15); display: grid; gap: 4px; padding: 15px 0; }
.contact-details a:nth-child(odd), .contact-details div:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.15); padding-right: 12px; }
.contact-details a:nth-child(even), .contact-details div:nth-child(even) { padding-left: 18px; }
.contact-details small { color: var(--orange); font-size: 7px; font-weight: 800; letter-spacing: 1.3px; text-transform: uppercase; }
.contact-details strong { font-size: 10px; font-weight: 600; word-break: break-word; }
.contact-whatsapp { align-items: center; display: grid !important; gap: 12px !important; grid-template-columns: 38px 1fr; }
.contact-whatsapp > span:last-child { display: grid; gap: 4px; }
.contact-whatsapp-icon {
  align-items: center;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}
.contact-whatsapp-icon svg { fill: var(--white); height: 24px; width: 24px; }
.quote-form { background: var(--paper-bright); color: var(--ink); padding: clamp(25px, 4.5vw, 65px); }
.honeypot-field { display: none !important; }
.field-row { display: grid; gap: 25px; grid-template-columns: 1fr 1fr; }
.quote-form label { display: grid; font-size: 8px; font-weight: 800; gap: 8px; letter-spacing: 1px; margin-bottom: 20px; text-transform: uppercase; }
.quote-form input, .quote-form select, .quote-form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  font-size: 12px;
  outline: none;
  padding: 10px 0 12px;
  resize: vertical;
  text-transform: none;
  transition: border .2s ease;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--orange); }
.quote-form textarea { min-height: 90px; }
.quote-form .button { margin-top: 8px; width: 100%; }
.quote-form .button:disabled { cursor: progress; opacity: .65; transform: none; }
.form-status { color: #3e7b4d; font-size: 10px; font-weight: 700; margin: 12px 0 0; text-align: center; }
.form-status.is-error { color: #b84a3a; }

footer { background: #090b0a; color: var(--white); padding: 55px clamp(22px, 7vw, 118px) 25px; }
.footer-main { align-items: center; display: grid; gap: 25px; grid-template-columns: 1fr 1fr 1fr; padding-bottom: 45px; }
.footer-main > p { color: rgba(255,255,255,.38); font-size: 10px; justify-self: center; margin: 0; max-width: 220px; text-align: center; }
.back-top { color: rgba(255,255,255,.65); font-size: 9px; font-weight: 800; justify-self: end; letter-spacing: 1px; text-transform: uppercase; }
.back-top span { color: var(--orange); font-size: 16px; margin-left: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.3); display: flex; font-size: 7px; font-weight: 700; justify-content: space-between; letter-spacing: 1px; padding-top: 22px; text-transform: uppercase; }

.whatsapp-float {
  align-items: center;
  background: #25d366;
  border-radius: 999px;
  bottom: 24px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .24);
  color: var(--white);
  display: inline-flex;
  font-size: 10px;
  font-weight: 900;
  gap: 9px;
  letter-spacing: 1.1px;
  min-height: 54px;
  padding: 0 20px 0 16px;
  position: fixed;
  right: 24px;
  text-transform: uppercase;
  transition: box-shadow .25s ease, transform .25s ease;
  z-index: 95;
}
.whatsapp-float:hover {
  box-shadow: 0 22px 48px rgba(0, 0, 0, .3);
  transform: translateY(-3px);
}
.whatsapp-float svg { fill: currentColor; height: 26px; width: 26px; }

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

@media (max-width: 1050px) {
  .main-nav { gap: 18px; }
  .main-nav > a:not(.nav-quote) { display: none; }
  .about, .careers { gap: 60px; grid-template-columns: 1fr; }
  .about .section-heading::after { display: none; }
  .about-content { padding-top: 0; }
  .services-intro, .projects-heading { grid-template-columns: 1fr; }
  .service-item { grid-template-columns: 35px 55px 1fr; }
  .service-item ul { display: none; }
  .project-card-large .project-image { height: 480px; }
  .career-content { padding-top: 0; }
  .quote { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-header { height: 70px; padding: 0 20px; }
  .site-header.scrolled { height: 64px; }
  .brand-mark { height: 34px; width: 40px; }
  .brand-copy strong { font-size: 18px; }
  .menu-toggle {
    background: transparent;
    border: 0;
    display: grid;
    gap: 5px;
    padding: 10px 0 10px 10px;
    z-index: 102;
  }
  .menu-toggle span { background: var(--white); display: block; height: 1px; transition: transform .25s ease, opacity .25s ease; width: 25px; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .main-nav {
    align-items: start;
    background: var(--ink);
    display: flex;
    flex-direction: column;
    gap: 0;
    inset: 0;
    justify-content: center;
    opacity: 0;
    padding: 80px 30px;
    pointer-events: none;
    position: fixed;
    transform: translateY(-10px);
    transition: opacity .25s ease, transform .25s ease;
  }
  .main-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav > a:not(.nav-quote) { border-bottom: 1px solid rgba(255,255,255,.12); color: var(--white); display: block; font-family: var(--display); font-size: 35px; padding: 9px 0; width: 100%; }
  .nav-quote { border: 0; background: var(--orange); margin-top: 25px; padding: 16px 20px; width: 100%; }
  .hero { min-height: 720px; padding: 150px 22px 140px; }
  h1 { font-size: clamp(65px, 20vw, 100px); }
  h2 { font-size: clamp(54px, 16vw, 82px); }
  .hero-intro { font-size: 13px; max-width: 88%; }
  .hero-actions { align-items: stretch; flex-direction: column; max-width: 280px; }
  .hero-services { bottom: 28px; display: block; left: 22px; right: 22px; }
  .hero-services div { gap: 4px 14px; margin-top: 8px; max-width: calc(100% - 65px); }
  .hero-services span { font-size: 9px; }
  .hero-badge { bottom: 26px; right: 18px; }
  .trust-strip { align-items: start; gap: 15px; overflow: hidden; padding: 25px 22px; }
  .trust-strip > p { min-width: 75px; }
  .trust-items { display: grid; gap: 7px; grid-template-columns: 1fr 1fr; }
  .trust-items span { font-size: 7px; }
  .section { padding: 85px 22px; }
  .about-values { gap: 25px; grid-template-columns: 1fr; margin-top: 40px; }
  .services-intro { padding-bottom: 45px; }
  .service-item { gap: 14px; grid-template-columns: 30px 46px 1fr; min-height: 145px; }
  .service-icon { height: 43px; width: 43px; }
  .service-icon svg { height: 27px; width: 27px; }
  .service-item h3 { font-size: 25px; }
  .service-item p { font-size: 9px; }
  .projects-heading { margin-bottom: 45px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card-large { grid-column: auto; }
  .project-card-large .project-image, .project-image { height: 360px; }
  .project-info { display: block; }
  .project-info ul { justify-content: start; margin-top: 16px; }
  .project-table-wrap { margin-top: 55px; padding: 22px 18px; }
  .project-table-title { align-items: start; flex-direction: column; gap: 2px; }
  .table-row { gap: 12px; grid-template-columns: 1.25fr 1fr 60px; }
  .table-row, .table-row strong { font-size: 8px; }
  .table-row b { font-size: 6px; }
  .safety { grid-template-columns: 1fr; }
  .safety-image { min-height: 400px; }
  .safety-content { padding: 75px 22px; }
  .career-content { gap: 50px; grid-template-columns: 1fr; }
  .quote { padding: 85px 22px; }
  .contact-details { grid-template-columns: 1fr; }
  .contact-details a:nth-child(odd), .contact-details div:nth-child(odd) { border-right: 0; padding-right: 0; }
  .contact-details a:nth-child(even), .contact-details div:nth-child(even) { padding-left: 0; }
  .quote-form { padding: 26px 20px; }
  .whatsapp-float {
    bottom: 18px;
    min-height: 50px;
    padding: 0 16px 0 14px;
    right: 18px;
  }
  .whatsapp-float span { display: none; }
  .whatsapp-float svg { height: 27px; width: 27px; }
  .field-row { gap: 0; grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; justify-items: start; }
  .footer-main > p, .back-top { justify-self: start; text-align: left; }
  .footer-bottom { gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
