/* ============================================================
   SHREE SAI CONSTRUCTION — main.css
   Corporate · Industrial · Premium
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --navy-950: #060b13;
  --navy-900: #0b1420;
  --navy-800: #101d31;
  --navy-700: #16263f;
  --navy-600: #1f3452;
  --ink: #0c1522;
  --body: #36455a;
  --muted: #64748b;
  --line: rgba(12, 21, 34, 0.1);
  --line-strong: rgba(12, 21, 34, 0.18);
  --paper: #ffffff;
  --paper-2: #f4f6f9;
  --paper-3: #eaeef3;
  --amber: #e8a013;
  --amber-strong: #d18f05;
  --amber-soft: #fdf3dd;
  --amber-ink: #4a3100;
  --ok: #2f9e5f;
  --font-h: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-b: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono: "SF Mono", "Cascadia Code", Consolas, monospace;
  --shadow-sm: 0 2px 8px rgba(10, 18, 32, 0.06);
  --shadow-md: 0 14px 40px rgba(10, 18, 32, 0.1);
  --shadow-lg: 0 24px 70px rgba(8, 14, 26, 0.16);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1240px;
  --ease: cubic-bezier(0.22, 0.61, 0.2, 1);
  --nav-h: 78px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-b);
  color: var(--body);
  background: var(--paper);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, video, iframe { display: block; max-width: 100%; }
a { color: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible,
textarea:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}
h1, h2, h3, h4 { font-family: var(--font-h); color: var(--ink); line-height: 1.14; font-weight: 800; letter-spacing: -0.015em; }
ul, ol { padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
.mono { font-family: var(--mono); letter-spacing: 0.04em; }
.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 200;
  background: var(--navy-900); color: #fff; padding: 10px 18px;
  border-radius: 8px; text-decoration: none; transition: top 0.2s;
}
.skip-link:focus { top: 14px; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }

/* ---------- Section scaffolding ---------- */
.section { padding-block: clamp(76px, 9vw, 132px); position: relative; }
.section--white { background: var(--paper); }
.section--gray { background: var(--paper-2); }
.section--navy { background: var(--navy-900); color: #c7d2e0; }

.sec-head { margin-bottom: clamp(40px, 5vw, 64px); }
.sec-head__row {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(28px, 4vw, 72px);
  align-items: end;
}
.sec-title { font-size: clamp(30px, 3.6vw, 46px); letter-spacing: -0.02em; }
.sec-lead { font-size: 16.5px; color: var(--muted); max-width: 52ch; }
.sec-head--light .sec-title { color: #fff; }
.sec-head--light .sec-lead { color: #9db0c7; }

.kicker {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-h); font-size: 12px; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--amber-strong);
  margin-bottom: 18px;
}
.kicker::before {
  content: ""; width: 34px; height: 2px; background: var(--amber);
  display: inline-block; flex: none;
}
.kicker__n { color: var(--muted); font-family: var(--mono); letter-spacing: 0.1em; }
.kicker--amber { color: var(--amber); }
.kicker--amber .kicker__n { color: #8fa1b8; }

/* Buttons */
.btn {
  --pad-x: 26px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-h); font-weight: 700; font-size: 15px;
  padding: 15px var(--pad-x); border-radius: 12px; text-decoration: none;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), background 0.22s, color 0.22s, border-color 0.22s;
  will-change: transform;
  white-space: nowrap;
}
.btn--primary { background: linear-gradient(180deg, #f0ad2d, var(--amber)); color: #3a2a02; box-shadow: 0 8px 22px rgba(232, 160, 19, 0.35); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(232, 160, 19, 0.45); }
.btn--navy { background: var(--navy-900); color: #fff; box-shadow: var(--shadow-sm); }
.btn--navy:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn--ghost { border: 1.5px solid rgba(255, 255, 255, 0.55); color: #fff; background: rgba(10, 17, 30, 0.25); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: #fff; color: var(--navy-900); border-color: #fff; transform: translateY(-2px); }
.btn--lg { padding: 17px 34px; font-size: 16px; border-radius: 14px; }
.btn--sm { padding: 10px 18px; font-size: 14px; border-radius: 10px; }
.btn--block { width: 100%; }

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 90; height: var(--nav-h);
  transition: background 0.35s, box-shadow 0.35s, backdrop-filter 0.35s;
}
.site-header::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: linear-gradient(90deg, var(--amber) 0%, var(--amber) 18%, transparent 18.2%);
  opacity: 0.9;
}
.site-header.is-scrolled, .site-header.is-open {
  background: rgba(9, 16, 28, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(4, 8, 16, 0.35);
}
.nav-inner { height: var(--nav-h); display: flex; align-items: center; gap: 26px; }
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; flex: none; }
.brand__logo {
  width: 68px; height: 54px; padding: 4px; background: #fff; border-radius: 10px;
  display: grid; place-items: center; box-shadow: 0 2px 10px rgba(4, 8, 16, 0.22);
  flex: none;
}
.brand__logo img {
  /* Explicit box so the logo never escapes the chip/navbar: percentage max-height
     alone is ignored by Chrome (attr height wins), which previously let the
     artwork paint below the bar. Content area = chip minus 4px padding. */
  width: 60px; height: 46px; object-fit: contain;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: var(--font-h); font-weight: 800; font-size: 16.5px; letter-spacing: 0.01em; color: #fff; }
.brand__tag { font-size: 9.5px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--amber); margin-top: 4px; }

.site-nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 2px; }
.nav-link {
  display: inline-block; padding: 10px 13px; position: relative;
  color: rgba(255, 255, 255, 0.86); text-decoration: none;
  font-family: var(--font-h); font-size: 14.5px; font-weight: 600;
  transition: color 0.2s;
}
.nav-link::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 4px; height: 2px;
  background: var(--amber); transform: scaleX(0); transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }
.nav-link.is-active { color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 14px; flex: none; }

.hamburger { display: none; width: 44px; height: 44px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border-radius: 10px; }
.hamburger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer */
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 110;
  width: min(86vw, 400px); background: var(--navy-950);
  transform: translateX(102%); transition: transform 0.42s var(--ease);
  padding: calc(var(--nav-h) + 12px) 30px 34px;
  overflow-y: auto; display: flex; flex-direction: column;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.35);
}
.drawer.is-open { transform: translateX(0); }
.drawer__list { display: flex; flex-direction: column; }
.drawer__list a {
  display: block; padding: 14px 4px; color: #e6ecf5; text-decoration: none;
  font-family: var(--font-h); font-size: 18px; font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: color 0.2s, padding-left 0.25s var(--ease);
}
.drawer__list a:hover { color: var(--amber); padding-left: 10px; }
.drawer__meta { margin-top: 26px; color: #8fa1b8; font-size: 14px; }
.drawer__meta a { color: #e6ecf5; }
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 105; background: rgba(3, 6, 12, 0.6);
  backdrop-filter: blur(3px);
}

/* ---------- Hero / video slider ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; flex-direction: column;
  justify-content: flex-end; overflow: hidden; background: var(--navy-950);
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  /* constant translateY = framing shift down (~1.2%); scale covers the offset so no gap
     appears at the hero top; object-position nudges lower only where cover leaves slack */
  object-fit: cover; object-position: 50% 48%; opacity: 0;
  transform: scale(1.06) translateY(1.2%);
  transition: opacity 1.1s ease, transform 6.5s var(--ease);
}
.hero__video.is-on { opacity: 1; transform: scale(1.03) translateY(1.2%); }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(5, 10, 18, 0.86) 4%, rgba(5, 10, 18, 0.55) 46%, rgba(5, 10, 18, 0.28) 100%),
    linear-gradient(0deg, rgba(5, 10, 18, 0.9) 0%, rgba(5, 10, 18, 0.15) 30%, rgba(5, 10, 18, 0.35) 100%);
}
.hero__shade {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 78% 20%, transparent 40%, rgba(4, 8, 16, 0.5) 100%);
  pointer-events: none;
}

.hero__content {
  padding-top: calc(var(--nav-h) + 46px);
  padding-bottom: 140px;
  position: relative; z-index: 2;
}
.hero__slide { max-width: 820px; }
.hero__slide:not(.is-active) { display: none; }
.hero__kicker { color: #ffd88a; font-size: 12.5px; margin-bottom: 20px; }
.hero__kicker em { font-style: normal; color: rgba(255, 255, 255, 0.85); font-weight: 500; }
.hero__kicker .n {
  font-family: var(--mono); color: var(--amber); background: rgba(232, 160, 19, 0.12);
  border: 1px solid rgba(232, 160, 19, 0.35); padding: 3px 9px; border-radius: 6px; margin-right: 10px;
}
.hero__title {
  font-size: clamp(40px, 6.2vw, 76px); line-height: 1.03; color: #fff;
  letter-spacing: -0.025em; font-weight: 800; margin-bottom: 24px;
  font-family: var(--font-h);
}
.hero__title-accent { color: var(--amber); }
.hero__lead { color: rgba(226, 235, 247, 0.92); font-size: clamp(16px, 1.5vw, 18.5px); max-width: 62ch; margin-bottom: 34px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* slide entrance */
.hero__slide .hero__kicker, .hero__slide .hero__title, .hero__slide .hero__lead, .hero__slide .hero__actions {
  animation: slideUp 0.85s var(--ease) both;
}
.hero__slide .hero__title { animation-delay: 0.08s; }
.hero__slide .hero__lead { animation-delay: 0.18s; }
.hero__slide .hero__actions { animation-delay: 0.3s; }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}

/* hero meta / controls */
.hero__meta {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 3; width: min(var(--container), calc(100% - 48px));
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.hero__facts {
  display: flex; gap: 8px 26px; flex-wrap: wrap;
  font-size: 12.5px; letter-spacing: 0.06em; color: rgba(235, 243, 252, 0.75);
  text-transform: uppercase; font-weight: 600;
}
.hero__facts span { display: inline-flex; align-items: center; gap: 10px; }
.hero__facts span::before { content: ""; width: 6px; height: 6px; background: var(--amber); transform: rotate(45deg); }
.hero__controls { display: flex; align-items: center; gap: 16px; }
.hero__arrow {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3); color: #fff;
  display: grid; place-items: center; transition: background 0.2s, border-color 0.2s, transform 0.2s var(--ease);
}
.hero__arrow:hover { background: rgba(255, 255, 255, 0.14); border-color: rgba(255, 255, 255, 0.7); transform: translateY(-1px); }
.hero__dots { display: flex; align-items: center; gap: 8px; }
.dot {
  position: relative; width: 64px; height: 40px;
  display: flex; align-items: center; justify-content: flex-start;
  color: rgba(255, 255, 255, 0.55); font-family: var(--mono); font-size: 11px;
}
.dot i { position: absolute; right: 0; bottom: 6px; font-style: normal; opacity: 0; transition: opacity 0.25s; }
.dot .dot__fill { position: absolute; left: 0; top: 14px; width: 46px; height: 2px; background: rgba(255, 255, 255, 0.25); border-radius: 2px; overflow: hidden; }
.dot .dot__fill::after {
  content: ""; position: absolute; inset: 0; background: var(--amber);
  transform: scaleX(var(--dp, 0)); transform-origin: left; will-change: transform;
}
.dot.is-on { color: #fff; }
.dot.is-on i { opacity: 1; }
.dot:hover .dot__fill { background: rgba(255, 255, 255, 0.5); }

/* scroll cue */
.hero::before {
  content: "SCROLL"; position: absolute; right: 26px; bottom: 140px; z-index: 3;
  font-size: 10px; letter-spacing: 0.4em; color: rgba(255, 255, 255, 0.4);
  writing-mode: vertical-rl; transform: rotate(180deg);
}
.hero::after {
  content: ""; position: absolute; right: 30px; bottom: 96px; z-index: 3;
  width: 1px; height: 44px;
  background: linear-gradient(180deg, var(--amber), transparent);
  animation: cue 2.2s ease-in-out infinite;
}
@keyframes cue { 0% { transform: translateY(-8px); opacity: 0; } 35% { opacity: 1; } 100% { transform: translateY(10px); opacity: 0; } }

/* ---------- Ribbon stats ---------- */
.ribbon { background: var(--navy-900); position: relative; z-index: 5; }
.ribbon::before {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 4px;
  background: linear-gradient(180deg, var(--amber), #ffd88a 55%, var(--amber));
}
.ribbon__list {
  display: grid; grid-template-columns: repeat(4, 1fr);
  counter-reset: r;
}
.ribbon__item {
  position: relative; padding: 30px 34px 30px 30px;
  display: flex; flex-direction: column; gap: 6px; justify-content: center;
}
.ribbon__item:not(:first-child) { border-left: 1px solid rgba(255, 255, 255, 0.09); }
.ribbon__val { font-family: var(--font-h); font-size: clamp(30px, 3vw, 44px); font-weight: 800; color: #fff; letter-spacing: -0.02em; line-height: 1; display: flex; align-items: baseline; }
.ribbon__val .rupee { color: var(--amber); font-size: 0.7em; margin-right: 5px; }
.ribbon__lbl { font-size: 12.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #93a7bf; }
.ribbon__item::after {
  content: ""; position: absolute; left: 30px; top: 18px; width: 26px; height: 2px;
  background: linear-gradient(90deg, var(--amber), transparent);
}

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); transition-delay: var(--rd, 0s); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__slide .hero__kicker, .hero__slide .hero__title, .hero__slide .hero__lead, .hero__slide .hero__actions { animation: none; }
  .hero__video { transition: opacity 0.7s ease, transform none; }
  .hero::before, .hero::after { display: none; }
}

/* ---------- About ---------- */
.about {
  display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.about__story > p { margin-bottom: 18px; color: var(--body); }
.about__story strong { color: var(--ink); font-weight: 600; }
.about__seal {
  width: 118px; height: 118px; border-radius: 50%; flex: none;
  margin-bottom: 30px; position: relative;
  display: grid; place-content: center; text-align: center;
  background: var(--navy-900); color: #fff;
}
.about__seal::before {
  content: ""; position: absolute; inset: 6px; border-radius: 50%;
  border: 1px dashed rgba(232, 160, 19, 0.75);
  animation: spinSlow 30s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }
.about__seal-yr { font-family: var(--font-h); font-size: 30px; font-weight: 800; color: var(--amber); line-height: 1; }
.about__seal-tx { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: #9db0c7; margin-top: 4px; }

.checklist { margin: 22px 0 24px; display: grid; gap: 12px; }
.checklist li {
  position: relative; padding-left: 34px; font-weight: 500; color: var(--ink);
}
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 20px; height: 20px;
  border-radius: 6px; background: var(--amber-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c98d00' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 12px; background-position: center; background-repeat: no-repeat;
}
.about__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.chip {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13.5px; font-weight: 600; color: var(--ink);
  background: var(--paper-2); border: 1px solid var(--line);
  padding: 8px 14px; border-radius: 100px;
}
.chip__dot { width: 7px; height: 7px; background: var(--amber); border-radius: 2px; transform: rotate(45deg); flex: none; }
.about__group { font-size: 14px; color: var(--muted); padding-top: 18px; border-top: 1px solid var(--line); }

.about__visual { position: relative; display: grid; gap: 18px; }
.about__img { margin: 0; position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.about__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.about__img:hover img { transform: scale(1.035); }
.about__img--wide { aspect-ratio: 16/9.2; }
.about__img--flyer {
  aspect-ratio: 2/3; width: min(46%, 260px); justify-self: end; margin-top: -17%;
  box-shadow: var(--shadow-lg);
}
.about__img--flyer img { object-fit: cover; object-position: top; }
.about__img--flyer figcaption {
  position: absolute; inset: auto 0 0 0; padding: 34px 16px 12px;
  background: linear-gradient(0deg, rgba(6, 10, 18, 0.75), transparent);
  color: #fff; font-size: 12.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
}

/* ---------- Services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.svc {
  padding: 26px 24px 24px; display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.svc::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--amber), transparent 70%);
  transform: scaleX(0); transform-origin: left; transition: transform 0.45s var(--ease);
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(232, 160, 19, 0.4); }
.svc:hover::before { transform: scaleX(1); }
.svc__head { display: flex; justify-content: space-between; align-items: center; }
.svc__n {
  font-family: var(--mono); font-size: 13px; color: #b6c2d0;
  background: var(--paper-2); border: 1px solid var(--line);
  padding: 5px 11px; border-radius: 8px; letter-spacing: 0.08em;
}
.svc__arrow {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  color: var(--ink); background: var(--paper-3);
  transform: rotate(-45deg); transition: background 0.25s, color 0.25s, transform 0.4s var(--ease);
}
.svc:hover .svc__arrow { background: var(--amber); color: #3a2a02; transform: rotate(0); }
.svc__title { font-size: 19px; margin: 0; letter-spacing: -0.01em; }
.svc__desc { font-size: 14.5px; color: var(--muted); flex: 1; }
.svc__tags { display: flex; flex-wrap: wrap; gap: 7px; }
.svc__tags span {
  font-size: 11.5px; font-weight: 600; color: var(--navy-800);
  background: var(--paper-2); border: 1px solid var(--line);
  padding: 4px 10px; border-radius: 100px;
}

/* ---------- Projects ---------- */
.clients { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(28px, 4vw, 64px); margin-bottom: clamp(44px, 5vw, 70px); }
.clients__cap {
  font-family: var(--font-h); font-size: 12px; font-weight: 800; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
}
.clients__cap::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.client-list { display: grid; gap: 10px; }
.client-list li {
  display: flex; align-items: center; gap: 16px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 14px; padding: 15px 18px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}
.client-list li:hover { transform: translateX(5px); box-shadow: var(--shadow-sm); border-color: var(--line-strong); }
.client-mark {
  width: 46px; height: 46px; flex: none; border-radius: 10px;
  background: var(--navy-900); color: var(--amber);
  display: grid; place-items: center;
  font-family: var(--font-h); font-weight: 800; font-size: 15px; letter-spacing: 0.02em;
}
.client-name { display: flex; flex-direction: column; line-height: 1.35; }
.client-name strong { color: var(--ink); font-size: 15.5px; font-family: var(--font-h); }
.client-name small { color: var(--muted); font-size: 13px; margin-top: 2px; }

.subtitle {
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 800;
  color: var(--muted); display: flex; align-items: center; gap: 14px; margin: 0 0 22px;
}
.subtitle::after { content: ""; width: 60px; height: 1px; background: var(--amber); }

.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 26px; }
.feat {
  padding: 28px; display: flex; flex-direction: column; gap: 10px; position: relative;
  overflow: hidden; transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.feat::before {
  content: ""; position: absolute; top: 0; right: 0; width: 110px; height: 110px;
  background: radial-gradient(circle at top right, rgba(232, 160, 19, 0.14), transparent 68%);
}
.feat:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(232, 160, 19, 0.45); }
.feat__client { font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--amber-strong); }
.feat__value {
  font-family: var(--font-h); font-weight: 800; color: var(--ink);
  font-size: clamp(34px, 3vw, 46px); line-height: 1; letter-spacing: -0.02em;
  margin: 4px 0 2px; display: flex; align-items: baseline;
}
.feat__rupee { color: var(--amber); font-size: 0.55em; margin-right: 4px; }
.feat__cr { font-size: 0.42em; color: var(--muted); font-weight: 700; margin-left: 4px; }
.feat__title { font-size: 21px; margin: 0; }
.feat__desc { font-size: 14.5px; color: var(--muted); flex: 1; }
.feat__tags { display: flex; flex-wrap: wrap; gap: 7px; }
.feat__tags span {
  font-size: 11.5px; font-weight: 600; color: var(--navy-800);
  background: var(--paper-2); border: 1px solid var(--line); padding: 4px 10px; border-radius: 100px;
}

.engagements { display: grid; gap: 10px; margin-bottom: clamp(40px, 4vw, 56px); }
.engagement {
  display: grid; grid-template-columns: 240px 1fr auto; gap: 20px; align-items: center;
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 14px;
  padding: 15px 20px; transition: background 0.25s, border-color 0.25s;
}
.engagement:hover { background: #fff; border-color: rgba(232, 160, 19, 0.4); }
.engagement__client { font-family: var(--font-h); font-weight: 700; font-size: 14.5px; color: var(--ink); }
.engagement__desc { font-size: 14px; color: var(--muted); }
.engagement__amt {
  font-family: var(--font-h); font-weight: 800; font-size: 16.5px; color: var(--navy-900);
  white-space: nowrap;
}

.pwd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 26px; }
.pwd {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 13px 4px; border-bottom: 1px dashed var(--line-strong);
}
.pwd__w { font-weight: 500; color: var(--ink); font-size: 15px; }
.pwd__amt { font-family: var(--mono); font-size: 14.5px; font-weight: 600; color: var(--amber-ink); background: var(--amber-soft); padding: 4px 12px; border-radius: 8px; white-space: nowrap; }
.projects__note { margin-top: 30px; font-size: 12.5px; color: var(--muted); max-width: 90ch; }

/* ---------- Fleet (navy) ---------- */
.fleet { overflow: hidden; }
.fleet__gridline {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(90% 90% at 50% 40%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(90% 90% at 50% 40%, #000 30%, transparent 100%);
}
.fleet__nums {
  display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: clamp(36px, 4vw, 56px);
}
.fleet__num {
  flex: 1 1 220px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px; padding: 20px 24px; display: flex; flex-direction: column; gap: 4px;
  backdrop-filter: blur(4px);
}
.fleet__num strong { font-family: var(--font-h); font-size: clamp(28px, 2.6vw, 38px); color: var(--amber); font-weight: 800; line-height: 1.1; }
.fleet__num span { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: #a9bccf; font-weight: 600; }
.fleet-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.fleet-tile {
  background: rgba(255, 255, 255, 0.045); border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px; padding: 22px 20px; display: flex; flex-direction: column; gap: 12px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}
.fleet-tile:hover { background: rgba(255, 255, 255, 0.085); border-color: rgba(232, 160, 19, 0.55); transform: translateY(-4px); }
.fleet-tile__g { width: 56px; height: 56px; border-radius: 14px; background: rgba(232, 160, 19, 0.13); border: 1px solid rgba(232, 160, 19, 0.3); color: var(--amber); display: grid; place-items: center; }
.fleet-tile__t { color: #fff; font-size: 17px; margin: 0; letter-spacing: -0.01em; }
.fleet-tile p { font-size: 13.5px; color: #9db0c7; }
.fleet__note { margin-top: 26px; font-size: 12.5px; color: #7e93ab; max-width: 96ch; border-left: 2px solid rgba(232, 160, 19, 0.6); padding-left: 16px; }

/* ---------- Capabilities ---------- */
.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: clamp(40px, 5vw, 64px); }
.cap { padding: 30px 28px 26px; position: relative; overflow: hidden; transition: transform 0.3s var(--ease), box-shadow 0.3s; }
.cap:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.cap__n {
  font-family: var(--mono); font-size: 14px; color: var(--amber-strong);
  border: 1px solid rgba(232, 160, 19, 0.5); background: var(--amber-soft);
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  margin-bottom: 20px; font-weight: 700;
}
.cap__title { font-size: 21px; margin: 0 0 12px; }
.cap__desc { font-size: 14.5px; color: var(--muted); margin-bottom: 18px; }
.cap__chips { display: grid; gap: 9px; }
.cap__chips li {
  position: relative; padding-left: 26px; font-size: 13.5px; font-weight: 500; color: var(--ink);
}
.cap__chips li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 8px; height: 8px;
  background: var(--amber); transform: rotate(45deg);
}

.flow {
  display: grid; grid-template-columns: 1fr 90px 1fr 90px 1fr; align-items: start;
  background: var(--navy-900); border-radius: 22px; padding: clamp(30px, 4vw, 52px);
}
.flow__step { position: relative; }
.flow__n {
  font-family: var(--mono); color: var(--amber); font-size: 13px; display: inline-block;
  border: 1px solid rgba(232, 160, 19, 0.4); border-radius: 8px; padding: 3px 10px; margin-bottom: 16px;
  background: rgba(232, 160, 19, 0.08);
}
.flow__step h3 { color: #fff; font-size: 19px; margin: 0 0 10px; }
.flow__step p { color: #9db0c7; font-size: 14px; }
.flow__line { display: flex; align-items: center; padding-top: 4px; }
.flow__line i {
  width: 100%; height: 1px; background: rgba(255, 255, 255, 0.16); position: relative;
  display: block; overflow: visible;
}
.flow__line i::after {
  content: ""; position: absolute; right: -1px; top: -3px; width: 7px; height: 7px;
  background: var(--amber); transform: rotate(45deg);
}

/* ---------- Safety & quality ---------- */
.sq { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.sq__panel { border-radius: 22px; padding: clamp(28px, 3.4vw, 46px); }
.sq__panel--dark { background: var(--navy-900); }
.sq__panel--dark .sq__title { color: #fff; }
.sq__title { font-size: 24px; margin: 0 0 24px; display: flex; align-items: center; gap: 14px; }
.sq__title::before { content: ""; width: 26px; height: 2px; background: var(--amber); }
.sq__list { display: grid; gap: 16px; }
.sq__list li { display: flex; gap: 14px; align-items: flex-start; font-weight: 500; color: var(--ink); font-size: 15px; }
.sq__panel--dark .sq__list li { color: #d7e1ec; }
.sq__list svg { flex: none; margin-top: 2px; color: var(--amber); }
.sq__panel--light { background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.sq__panel--light .sq__list svg { color: var(--ok); }

/* ---------- Sustainability ---------- */
.sus-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.sus { padding: 28px 24px; transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s; }
.sus:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(232, 160, 19, 0.45); }
.sus__ic {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  color: #fff; background: linear-gradient(135deg, #1e5c3a, #14402a); margin-bottom: 18px;
}
.sus:nth-child(2n) .sus__ic { background: linear-gradient(135deg, #b58509, #7d5c06); }
.sus:nth-child(3n) .sus__ic { background: linear-gradient(135deg, var(--navy-600), var(--navy-800)); }
.sus__title { font-size: 18px; margin: 0 0 10px; }
.sus__desc { font-size: 14.5px; color: var(--muted); }

/* ---------- Work With Us ---------- */
.wwu {
  background:
    radial-gradient(90% 120% at 85% -10%, rgba(232, 160, 19, 0.16), transparent 55%),
    radial-gradient(70% 100% at 0% 110%, rgba(31, 52, 86, 0.5), transparent 60%),
    var(--navy-900);
  color: #c7d2e0;
}
.wwu__hazard {
  position: absolute; inset: 0 0 auto 0; height: 6px; opacity: 0.35;
  background: repeating-linear-gradient(-45deg, var(--amber) 0 14px, transparent 14px 30px);
}
.wwu__in { position: relative; text-align: center; max-width: 980px; }
.wwu__title { color: #fff; font-size: clamp(34px, 4.6vw, 58px); letter-spacing: -0.02em; margin-bottom: 22px; }
.wwu__title em { font-style: normal; color: var(--amber); }
.wwu__lead { color: #e8eef6; font-size: clamp(17px, 1.6vw, 20px); max-width: 62rem; margin: 0 auto 14px; }
.wwu__lead strong { color: #fff; }
.wwu__cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3vw, 40px);
  text-align: left; max-width: 940px; margin: 26px auto 38px;
}
.wwu__cols p { color: #9db0c7; font-size: 15px; }
.wwu__actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.wwu__sub { color: #8fa1b8; font-size: 14px; }
.wwu__sub a { color: var(--amber); font-weight: 600; }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(28px, 4vw, 60px); align-items: start; }
.contact__info { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.c-card {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 16px;
  padding: 20px 22px;
}
.c-card__title {
  font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 12px; font-weight: 800;
}
.c-card__title--sub { margin-top: 20px; }
.c-card__lines { color: var(--ink); font-size: 15px; font-weight: 500; line-height: 1.65; }
.c-card__lines a { color: var(--navy-700); font-weight: 600; text-decoration-color: var(--amber); text-underline-offset: 3px; }
.c-card__lines a:hover { color: var(--amber-strong); }
.branch-list { display: flex; flex-wrap: wrap; gap: 8px; }
.branch-list li {
  font-size: 13px; font-weight: 600; color: var(--navy-800);
  background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: 5px 13px;
}
.contact__map { grid-column: 1 / -1; background: var(--paper-2); border: 1px solid var(--line); border-radius: 16px; padding: 20px 22px; }
.map-card { border-radius: 12px; overflow: hidden; background: var(--paper-3); }
.map-card__grid {
  position: relative; padding: 26px 24px 22px; min-height: 190px;
  display: flex; flex-direction: column; justify-content: center;
  background:
    radial-gradient(340px 190px at 82% 16%, rgba(232, 160, 19, 0.16), transparent 70%),
    linear-gradient(60deg, #dde4ec 0%, #e8edf3 55%, #dde4ec 100%);
}
.map-card__grid::before {
  content: ""; position: absolute; inset: 0; opacity: 0.55; pointer-events: none;
  background-image:
    linear-gradient(rgba(30, 52, 86, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 52, 86, 0.09) 1px, transparent 1px);
  background-size: 34px 34px;
}
.map-card__pin {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--navy-900); color: var(--amber); position: relative; margin-bottom: 14px;
}
.map-card__pin::after {
  content: ""; position: absolute; inset: 6px; border-radius: 8px;
  border: 1px dashed rgba(232, 160, 19, 0.7); pointer-events: none;
}
.map-card__addr { font-family: var(--font-h); font-weight: 700; color: var(--ink); font-size: 17px; position: relative; }
.map-card__tag {
  display: inline-block; margin-top: 12px; align-self: flex-start; position: relative;
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--navy-800); background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line); padding: 5px 12px; border-radius: 100px;
}
.map-card__cta {
  display: flex; align-items: center; gap: 18px; padding: 13px 18px;
  background: #fff; border-top: 1px solid var(--line);
}
.map-card__osm { font-size: 13.5px; font-weight: 600; color: var(--navy-700); text-decoration-color: var(--amber); text-underline-offset: 3px; }
.map-card__osm:hover { color: var(--amber-strong); }

.contact__form { background: var(--navy-900); border-radius: 22px; padding: clamp(26px, 3vw, 40px); position: relative; overflow: hidden; }
.contact__form::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--amber), #ffd88a 40%, var(--amber) 60%, transparent);
}
.form__lead { color: #d7e1ec; font-size: 15px; margin-bottom: 22px; }
.form { display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-family: var(--font-h); font-size: 12.5px; font-weight: 700; letter-spacing: 0.05em; color: #a9bccf; }
.field input, .field select, .field textarea {
  font: inherit; font-size: 15px; color: #fff;
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 11px; padding: 12px 15px; width: 100%;
  transition: border-color 0.2s, background 0.2s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: #61728a; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239db0c7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 15px;
}
.field select option { color: var(--ink); background: #fff; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--amber); background: rgba(255, 255, 255, 0.09); outline: none; }
.field.is-invalid input, .field.is-invalid textarea, .field.is-invalid select { border-color: #ff7a6e; }
.form__error { color: #ffb3ab; font-size: 13.5px; background: rgba(255, 92, 80, 0.12); border: 1px solid rgba(255, 122, 110, 0.4); border-radius: 10px; padding: 10px 14px; }
.form__note { color: #7e93ab; font-size: 13px; }
.form__note a { color: var(--amber); font-weight: 600; }
.form__note a:hover { text-decoration: none; }
.form.is-sent .btn { background: #1f7a4d; color: #fff; box-shadow: none; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-950); color: #93a7bf; }
.footer__grid {
  display: grid; grid-template-columns: 1.5fr 0.8fr 1.1fr 1.2fr; gap: clamp(28px, 4vw, 60px);
  padding: clamp(48px, 6vw, 76px) 0 44px;
}
.footer__logo {
  /* Same asset & chip treatment as the navbar lockup — compact, proportional, no loose white tile */
  display: inline-grid; place-items: center; width: 132px; height: 104px;
  background: #fff; border-radius: 10px; padding: 6px;
  box-shadow: 0 2px 10px rgba(4, 8, 16, 0.22); margin-bottom: 18px;
}
.footer__logo img { width: 118px; height: 90px; object-fit: contain; display: block; }
.footer__tagline { font-size: 14.5px; margin-bottom: 16px; max-width: 38ch; color: #8fa1b8; }
.footer__gst { font-size: 13px; }
.footer__col h3 {
  color: #fff; font-size: 12.5px; letter-spacing: 0.2em; text-transform: uppercase;
  margin: 0 0 18px;
}
.footer__col ul { display: grid; gap: 10px; }
.footer__col ul a { color: #93a7bf; text-decoration: none; font-size: 14px; transition: color 0.2s, padding-left 0.2s var(--ease); }
.footer__col ul a:hover { color: var(--amber); padding-left: 4px; }
.footer__col--contact p { font-size: 14px; margin-bottom: 8px; }
.footer__col--contact a { color: #c3d0de; text-decoration-color: rgba(232, 160, 19, 0.5); text-underline-offset: 3px; }
.footer__col--contact a:hover { color: var(--amber); }
.footer__branches { color: #7e93ab; font-size: 13px; margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.footer__bottom {
  /* Base: single vertical stack. The three items upgrade to shared rows at wider
     breakpoints below; fonts/gap are tuned so the full-width desktop row fits
     the fixed --container cap without wrapping or shrinking the content. */
  display: flex; flex-direction: column; gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08); padding: 22px 0 30px;
  font-size: 11px; color: #64748b;
}
.footer__credit { margin-left: 0; max-width: 100%; }
.footer__credit a {
  display: flex; align-items: center; gap: 13px; text-decoration: none;
  color: #8fa1b8; line-height: 1.5; transition: color 0.2s;
}
.footer__credit-chip {
  display: inline-flex; flex: none; background: #fff; border-radius: 8px;
  padding: 6px 9px; box-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}
.footer__credit-chip img { display: block; height: 32px; width: auto; }
.footer__credit strong { color: #d3dde8; font-weight: 600; }
.footer__credit a:hover { color: var(--amber); }
.footer__credit a:hover strong { color: #fff; }
@media (min-width: 681px) {
  .footer__credit-text { white-space: nowrap; } /* logo + text stay on one line on desktop */
}
/* Compact credit chip from 820px up — needed so © + credit always share a row on
   tablet widths and the full desktop row fits the container cap. */
@media (min-width: 820px) {
  .footer__credit-chip { padding: 5px 7px; }
  .footer__credit-chip img { height: 20px; }
}
/* Tablet: facts caption on its own centered line, © left + Zodiactech credit right */
@media (min-width: 820px) and (max-width: 1279px) {
  .footer__bottom { flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: space-between; column-gap: 16px; row-gap: 8px; }
  .footer__facts { order: -1; flex: 1 1 100%; text-align: center; }
}
/* Desktop ≥1280: ONE horizontal row — © | facts (centered) | credit (right), all
   vertically centred. Grid auto/1fr/auto; the flexible middle absorbs slack. */
@media (min-width: 1280px) {
  .footer__bottom { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 0 12px; }
  .footer__facts { justify-self: center; text-align: center; }
  .footer__credit { justify-self: end; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .fleet-grid { grid-template-columns: repeat(3, 1fr); }
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .cap:last-child { grid-column: 1 / -1; }
  .sus-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1060px) {
  .site-nav { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-inner { justify-content: space-between; }
  .hero__facts { display: none; }
  .hero__content { padding-bottom: 120px; }
  .sec-head__row { grid-template-columns: 1fr; align-items: start; gap: 20px; }
  .about { grid-template-columns: 1fr; }
  .about__visual { grid-template-columns: 1.4fr 1fr; align-items: end; }
  .about__img--flyer { margin-top: 0; width: 100%; justify-self: auto; }
  .clients { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .feat:last-child { grid-column: 1 / -1; }
  .ribbon__list { grid-template-columns: repeat(2, 1fr); }
  .ribbon__item:nth-child(3) { border-left: 0; }
  .ribbon__item:nth-child(n + 3) { border-top: 1px solid rgba(255, 255, 255, 0.09); }
  .sq { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr; gap: 26px; }
  .flow__line { display: none; }
  .contact { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .engagement { grid-template-columns: 1fr; gap: 6px; }
  .engagement__amt { justify-self: start; }
  .pwd-grid { grid-template-columns: 1fr; }
  .wwu__cols { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  :root { --nav-h: 68px; }
  .container { width: calc(100% - 36px); }
  .brand__logo { width: 58px; height: 46px; }
  .brand__logo img { width: 50px; height: 38px; }
  .brand__name { font-size: 14.5px; }
  .brand__tag { font-size: 8.5px; }
  .svc-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr 1fr; }
  .cap-grid { grid-template-columns: 1fr; }
  .cap:last-child { grid-column: auto; }
  .feat-grid { grid-template-columns: 1fr; }
  .feat:last-child { grid-column: auto; }
  .sus-grid { grid-template-columns: 1fr; }
  .ribbon__list { grid-template-columns: 1fr 1fr; }
  .ribbon__item { padding: 22px 18px 22px 22px; }
  .hero__title { font-size: clamp(36px, 11vw, 48px); }
  .hero::before, .hero::after { display: none; }
  .hero__meta { bottom: 14px; }
  .form__row { grid-template-columns: 1fr; }
  .contact__info { grid-template-columns: 1fr; }
  .contact__map { grid-column: auto; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .ribbon__item:first-child { border-top: 0; }
  .about__visual { grid-template-columns: 1fr; }
  .hero__controls { margin-inline: auto; }
  .hero__meta { flex-direction: column; gap: 8px; }
}
@media (max-width: 400px) {
  .fleet-grid { grid-template-columns: 1fr; }
  .ribbon__list { grid-template-columns: 1fr; }
  .ribbon__item { border-left: 0 !important; }
  .ribbon__item:nth-child(n + 2) { border-top: 1px solid rgba(255, 255, 255, 0.09); }
}

/* ============================================================
   CUSTOM EXCAVATOR CURSOR (desktop fine-pointer only)
   ============================================================ */
.cur {
  position: fixed; inset: 0 auto auto 0; z-index: 2147483000;
  width: 1px; height: 1px; display: none;
  pointer-events: none; opacity: 0; transition: opacity .18s ease;
  will-change: transform;
}
@media (hover: hover) and (pointer: fine) {
  html.has-cursor .cur { display: block; opacity: 1; }
  html.has-cursor, html.has-cursor * { cursor: none !important; }
  html.has-cursor input, html.has-cursor textarea,
  html.has-cursor select, html.has-cursor [contenteditable] { cursor: text !important; }
}
@media (hover: none), (pointer: coarse) {
  html.has-cursor, html.has-cursor * { cursor: auto !important; }
}
.cur__ico {
  position: absolute; left: -17px; top: -12px;
  width: 34px; height: auto; display: block; overflow: visible;
  filter: drop-shadow(0 2px 2px rgba(11, 20, 32, 0.45));
  transform-origin: 24% 78%;
  transition: transform .22s cubic-bezier(.34, 1.56, .64, 1);
}
.cur.is-away { opacity: 0 !important; }
.cur.is-link .cur__ico { transform: scale(1.18); }
.cur.is-down .cur__ico { transform: scale(.86) rotate(-4deg); }
/* palette — industrial amber machine, deep-navy accents */
.cur__track { fill: #e8a013; }
.cur__body { fill: #e8a013; }
.cur__wheel, .cur__window, .cur__teeth { fill: #0b1420; }
.cur__boom, .cur__arm {
  fill: none; stroke: #e8a013; stroke-linecap: round;
  stroke-linejoin: round; stroke-width: 4.6;
}
.cur__arm { stroke-width: 3.6; }
@media (prefers-reduced-motion: reduce) {
  .cur { display: none !important; }
  html.has-cursor, html.has-cursor * { cursor: auto !important; }
}
