:root {
  --ink: #101814;
  --ink-soft: #27352e;
  --steel: #687873;
  --line: #d9e2dd;
  --paper: #f7faf7;
  --white: #ffffff;
  --lime: #86c541;
  --lime-dark: #2d7b28;
  --teal: #168b91;
  --amber: #d7a236;
  --graphite: #1b211f;
  --danger: #a23825;
  --shadow: 0 18px 45px rgba(16, 24, 20, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(16, 24, 20, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, rgba(16, 24, 20, 0.022) 1px, transparent 1px),
    #ffffff;
  background-size: 56px 56px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

.three-bg {
  position: fixed;
  inset: 0;
  z-index: 2;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  opacity: 0.12;
  mix-blend-mode: multiply;
}

.three-bg-fallback {
  background:
    linear-gradient(90deg, rgba(16, 24, 20, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(16, 24, 20, 0.028) 1px, transparent 1px);
  background-size: 56px 56px;
}

.site-footer,
.floating-actions {
  position: relative;
  z-index: 3;
}

main > section > * {
  position: relative;
  z-index: 3;
}

img,
video {
  max-width: 100%;
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 14px;
  background: var(--lime);
  color: var(--ink);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(247, 250, 247, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(16, 24, 20, 0.1);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 32px rgba(16, 24, 20, 0.12);
  background: rgba(247, 250, 247, 0.98);
}

body[data-page="home"] .site-header:not(.is-scrolled) {
  background: linear-gradient(180deg, rgba(8, 14, 11, 0.78), rgba(8, 14, 11, 0));
  backdrop-filter: none;
  border-bottom-color: transparent;
}

body[data-page="home"] .site-header:not(.is-scrolled) .top-rail {
  color: rgba(255, 255, 255, 0.82);
  border-bottom-color: rgba(255, 255, 255, 0.18);
}

body[data-page="home"] .site-header:not(.is-scrolled) .brand strong,
body[data-page="home"] .site-header:not(.is-scrolled) .brand small,
body[data-page="home"] .site-header:not(.is-scrolled) .nav-links a {
  color: var(--white);
}

body[data-page="home"] .site-header:not(.is-scrolled) .nav-links a:hover,
body[data-page="home"] .site-header:not(.is-scrolled) .nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

body[data-page="home"] .site-header:not(.is-scrolled) .nav-cta {
  background: rgba(25, 135, 84, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.46);
  box-shadow: none;
}

.top-rail,
.nav-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: 22px;
}

.top-rail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 34px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(16, 24, 20, 0.08);
}

.rail-link,
.strip-item,
.nav-cta,
.button,
.search-box,
.contact-actions {
  display: inline-flex;
  align-items: center;
}

.rail-link {
  gap: 7px;
  white-space: nowrap;
}

.rail-link svg,
.strip-item svg {
  width: 16px;
  height: 16px;
}

.rail-note {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top-socials,
.footer-socials {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-socials a {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: inherit;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.84;
}

.top-socials svg {
  width: 13px;
  height: 13px;
}

.top-socials span,
.footer-socials span {
  font-size: 0.66rem;
  line-height: 1;
  font-weight: 950;
}

.footer-socials span {
  font-size: 0.76rem;
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 76px;
  gap: 22px;
}

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

.brand img,
.footer-brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: transparent;
  border-radius: 50%;
  border: 1px solid rgba(16, 24, 20, 0.12);
}

.brand strong,
.footer-brand strong {
  display: block;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.1;
}

.brand small,
.footer-brand span {
  display: block;
  color: var(--steel);
  font-size: 0.78rem;
}

.nav-links {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 13px;
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.92rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: rgba(134, 197, 65, 0.18);
}

.nav-cta {
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 15px;
  color: var(--white);
  background: var(--lime-dark);
  border-radius: var(--radius);
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(45, 123, 40, 0.24);
}

.nav-cta svg,
.button svg,
.icon-button svg,
.floating-actions svg,
.service-card svg,
.career-grid svg,
.search-box svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.menu-toggle.icon-button {
  display: none;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(16, 24, 20, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.nav-shell > .menu-toggle.icon-button {
  display: none;
}

.hero {
  position: relative;
  z-index: 3;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: #111815;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
  transition: opacity 500ms ease;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.04);
  transform: scale(1.015);
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 13, 10, 0.78) 0%, rgba(7, 13, 10, 0.34) 46%, rgba(7, 13, 10, 0.08) 78%),
    linear-gradient(0deg, rgba(7, 13, 10, 0.76) 0%, rgba(7, 13, 10, 0) 52%),
    linear-gradient(180deg, rgba(7, 13, 10, 0.38) 0%, rgba(7, 13, 10, 0) 30%);
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #111815;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.025);
  filter: saturate(0.92) contrast(1.04);
  transition: opacity 1200ms ease, transform 6200ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero.has-slideshow .hero-media {
  opacity: 0;
}

.page-hero.has-slideshow {
  background-image: none;
}

.hero-slide-controls {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 7;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.hero-slide-controls button {
  width: 34px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.42);
  transition: width 240ms ease, background 240ms ease;
}

.hero-slide-controls button.is-active {
  width: 58px;
  background: var(--lime);
}

.page-hero {
  position: relative;
  min-height: 72svh;
  padding: 170px 22px 72px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--ink);
  background-size: cover;
  background-position: center;
}

.page-hero-services {
  background-image: url("assets/projects/heat-exchanger-condenser.jpg");
}

.page-hero-projects {
  background-image: url("assets/projects/avar-skid.jpg");
}

.page-hero-career {
  background-image: url("assets/brand/gi-workshop-profile-v2.webp");
}

.page-hero-contact {
  background-image: url("assets/brand/gi-hero-banner-v2.webp");
}

.page-hero-content {
  position: relative;
  z-index: 4;
  width: min(var(--max), 100%);
  margin: 0 auto;
  max-width: 1100px;
  text-align: center;
}

.page-hero h1 {
  margin: 0;
  max-width: none;
  font-size: 5rem;
  line-height: 0.98;
  text-transform: uppercase;
  white-space: nowrap;
}

.page-hero p:not(.eyebrow) {
  margin: 22px 0 0;
  max-width: 820px;
  margin-inline: auto;
  color: var(--steel);
  font-size: 1.38rem;
  line-height: 1.55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 48%, rgba(255, 255, 255, 0.58) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.94));
}

.page-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 13, 10, 0.78), rgba(7, 13, 10, 0.34), rgba(7, 13, 10, 0.62)),
    linear-gradient(0deg, rgba(7, 13, 10, 0.72), transparent 62%);
}

.page-hero h1,
.page-hero p:not(.eyebrow) {
  color: var(--white);
}

.hero-caption,
.hero-equipment-label,
.hero-scroll {
  position: absolute;
  z-index: 4;
}

.hero-caption {
  left: 50%;
  top: 54%;
  bottom: auto;
  width: min(1060px, calc(100% - 44px));
  text-align: center;
  transform: translate(-50%, -50%);
}

.hero-caption.reveal {
  transform: translate(-50%, calc(-50% + 18px));
}

.hero-caption.reveal.is-visible {
  transform: translate(-50%, -50%);
}

.hero-logo {
  width: 84px;
  height: 84px;
  margin: 0 auto 16px;
  object-fit: contain;
  border: 0;
  border-radius: 50%;
  clip-path: circle(49% at 50% 50%);
  background: transparent;
}

.hero-title {
  display: grid;
  gap: 3px;
  margin: 22px 0 0;
  color: var(--white);
  line-height: 0.93;
  text-transform: uppercase;
}

.hero-title-brand {
  font-size: 1.05rem;
  font-weight: 850;
}

.hero-title-product {
  display: block;
  min-height: 1.88em;
  max-width: 1060px;
  margin-inline: auto;
  font-size: 6.3rem;
  font-weight: 920;
  transform-origin: left center;
}

.hero-title-product.is-leaving {
  animation: titleLeave 360ms cubic-bezier(0.6, 0, 0.8, 1) forwards;
}

.hero-title-product.is-entering {
  animation: titleEnter 640ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes titleLeave {
  to { opacity: 0; transform: translateY(-22px) skewX(-4deg); filter: blur(5px); }
}

@keyframes titleEnter {
  from { opacity: 0; transform: translateY(38px) scaleY(0.84); filter: blur(7px); }
  to { opacity: 1; transform: translateY(0) scaleY(1); filter: blur(0); }
}

.hero-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.82);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
}

.hero-statement {
  max-width: 560px;
  margin: 18px auto 0;
  color: var(--white);
  font-size: 1.28rem;
  line-height: 1.08;
  font-weight: 760;
}

.hero-kicker {
  justify-content: center;
}

.hero-kicker span + span {
  margin-left: 30px;
}

.hero-actions {
  justify-content: center;
}

.hero-equipment-label {
  display: none;
}

.equipment-universe {
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding: 52px 0 56px;
  color: var(--white);
  background: #121a16;
}

.equipment-universe-head {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 8px 24px;
}

.equipment-universe-head .eyebrow {
  grid-column: 1 / -1;
  margin: 0;
}

.equipment-universe-head h2 {
  margin: 0;
  color: var(--white);
  font-size: 2.4rem;
}

.equipment-universe-head a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
  font-weight: 850;
}

.equipment-universe-head svg {
  width: 18px;
  height: 18px;
}

.equipment-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.equipment-track {
  width: max-content;
  display: flex;
  gap: 14px;
  padding: 0 7px;
  animation: equipmentDrift 62s linear infinite;
}

.equipment-track:hover {
  animation-play-state: paused;
}

.equipment-track figure {
  position: relative;
  width: 290px;
  height: 220px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #e9eeeb;
}

.equipment-track img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 300ms ease;
}

.equipment-track figure:hover img {
  transform: scale(1.025);
}

.equipment-track figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 28px 14px 12px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(8, 14, 11, 0.92));
  font-weight: 900;
}

.product-jump-zone {
  position: relative;
  z-index: 3;
  min-height: 760px;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 100px 22px;
  background:
    linear-gradient(90deg, rgba(16, 24, 20, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(16, 24, 20, 0.03) 1px, transparent 1px),
    #f8faf8;
  background-size: 52px 52px;
}

.jump-zone-copy {
  position: relative;
  z-index: 5;
  width: min(480px, 100%);
  text-align: center;
}

.jump-zone-copy h2 {
  margin: 0;
  font-size: 3.25rem;
  line-height: 0.98;
}

.jump-zone-copy p:not(.eyebrow) {
  color: var(--steel);
}

.jump-zone-copy .button {
  margin-top: 14px;
}

.jump-product {
  --jump-y: 0px;
  position: absolute;
  z-index: 2;
  margin: 0;
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: translateY(var(--jump-y));
  will-change: transform;
}

.jump-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 26px rgba(16, 24, 20, 0.18));
}

.jump-product figcaption {
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  padding: 8px 12px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.jump-product-heat {
  width: min(37vw, 520px);
  height: 330px;
  left: -3vw;
  top: 48px;
  rotate: -5deg;
}

.jump-product-blender {
  width: min(31vw, 440px);
  height: 330px;
  right: -2vw;
  top: 42px;
  rotate: 5deg;
}

.jump-product-cooler {
  width: min(39vw, 560px);
  height: 300px;
  right: 7vw;
  bottom: 18px;
  rotate: -3deg;
}

.jump-product.is-jumping {
  animation: productJump 720ms cubic-bezier(0.2, 0.9, 0.35, 1);
}

@keyframes productJump {
  0%, 100% { translate: 0 0; }
  42% { translate: 0 -54px; rotate: 2deg; }
  70% { translate: 0 7px; }
}

@keyframes equipmentDrift {
  to { transform: translateX(calc(-50% - 7px)); }
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--lime);
  text-transform: uppercase;
  font-weight: 900;
  font-size: 0.78rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}

.button.hero-primary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
  box-shadow: none;
}

.button.hero-primary:hover {
  color: var(--white);
  background: var(--lime-dark);
  border-color: var(--lime-dark);
}

.hero-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  font-weight: 760;
}

.hero-text-link svg,
.hero-scroll svg,
.home-feature > svg {
  width: 18px;
  height: 18px;
}

.hero-equipment-label {
  right: max(22px, calc((100vw - var(--max)) / 2));
  bottom: clamp(92px, 14vh, 138px);
  width: 270px;
  padding-left: 18px;
  border-left: 3px solid var(--lime);
}

.hero-equipment-label span,
.hero-equipment-label strong,
.hero-equipment-label small {
  display: block;
}

.hero-equipment-label span {
  color: var(--lime);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 900;
}

.hero-equipment-label strong {
  margin-top: 8px;
  color: var(--white);
  font-size: 1rem;
}

.hero-equipment-label small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.7);
}

.hero-scroll {
  right: auto;
  left: 50%;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 850;
  transform: translateX(-50%);
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.button {
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.nav-cta:hover,
.floating-actions a:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
  box-shadow: none;
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.page-hero .button.ghost {
  color: var(--ink);
  border-color: rgba(16, 24, 20, 0.2);
  background: rgba(255, 255, 255, 0.72);
}

.button.ghost.dark {
  color: var(--ink);
  border-color: rgba(16, 24, 20, 0.18);
  background: var(--white);
}

.button.whatsapp {
  color: var(--white);
  background: #198754;
}

.metric {
  display: block;
  color: var(--lime);
  font-size: 2rem;
  font-weight: 950;
  line-height: 1;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-inline: max(22px, calc((100vw - var(--max)) / 2));
  background: var(--white);
  color: var(--ink);
  border-block: 1px solid rgba(16, 24, 20, 0.1);
}

.strip-item {
  gap: 12px;
  min-height: 92px;
  padding: 20px 22px;
  border-right: 1px solid rgba(16, 24, 20, 0.1);
  font-weight: 800;
}

.strip-item svg {
  color: var(--lime);
}

.section {
  padding: 92px 22px;
}

.section-head,
.section-copy,
.industries-copy,
.career-copy,
.contact-copy {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 38px;
}

.section h2,
.section-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.6rem;
  line-height: 1.05;
}

.section-head p:not(.eyebrow),
.section-copy p,
.industries-copy p,
.career-copy p,
.contact-copy p {
  margin: 0;
  color: var(--steel);
  font-size: 1.18rem;
  line-height: 1.7;
}

.shared-product-section {
  position: relative;
  z-index: 3;
  padding: 82px 0 88px;
  overflow: hidden;
  background: #f8faf8;
  border-block: 1px solid rgba(16, 24, 20, 0.09);
}

.shared-product-head {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.55fr) auto;
  align-items: end;
  gap: 30px;
}

.shared-product-head h2 {
  margin: 0;
  font-size: 2.75rem;
  line-height: 1;
}

.shared-product-head > p {
  margin: 0;
  color: var(--steel);
  font-size: 1.16rem;
  line-height: 1.65;
}

.carousel-actions {
  display: flex;
  gap: 8px;
}

.shared-product-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, 22vw);
  gap: 14px;
  padding: 0 max(22px, calc((100vw - var(--max)) / 2));
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
}

.shared-product-carousel a {
  position: relative;
  height: 310px;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid rgba(16, 24, 20, 0.1);
  background: #e9eeeb;
}

.shared-product-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.shared-product-carousel a:hover img {
  transform: scale(1.035);
}

.shared-product-carousel span {
  position: absolute;
  inset: auto 0 0;
  padding: 36px 16px 15px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(9, 15, 12, 0.92));
  font-size: 1rem;
  font-weight: 900;
}

.falling-product {
  position: fixed;
  z-index: 120;
  top: -280px;
  left: var(--fall-x);
  width: clamp(150px, 18vw, 270px);
  height: 220px;
  margin: 0;
  pointer-events: none;
  animation: fallProduct 7.5s cubic-bezier(0.42, 0, 0.58, 1) forwards;
  filter: drop-shadow(0 20px 20px rgba(16, 24, 20, 0.24));
}

.falling-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
}

.falling-product figcaption {
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);
  padding: 7px 10px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
  white-space: nowrap;
  font-size: 0.72rem;
  font-weight: 900;
}

@keyframes fallProduct {
  0% { opacity: 0; transform: translate(-50%, -20vh) rotate(0); }
  8% { opacity: 1; }
  86% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, calc(100vh + 360px)) rotate(var(--fall-rotate)); }
}

.about-band {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.66fr);
  align-items: center;
  gap: 46px;
  max-width: var(--max);
  margin: 0 auto;
}

.about-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--white);
}

.about-media img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center 18%;
}

.services-section,
.projects-section,
.career-section {
  background: rgba(255, 255, 255, 0.94);
}

.service-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.home-feature-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.home-feature {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  background: var(--ink);
}

.home-feature::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(7, 13, 10, 0.78), rgba(7, 13, 10, 0));
  pointer-events: none;
}

.home-feature img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #e9eeeb;
  opacity: 1;
  transition: transform 320ms ease, filter 320ms ease;
}

.home-feature:hover img {
  transform: scale(1.035);
  filter: saturate(0.82);
}

.home-feature span {
  position: absolute;
  inset: auto 74px 22px 22px;
  z-index: 2;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 1.15rem;
  font-weight: 800;
}

.home-feature > svg {
  position: absolute;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  width: 42px;
  height: 42px;
  padding: 11px;
  color: var(--ink);
  background: var(--white);
  border-radius: 50%;
}

.service-card,
.project-card,
.career-grid > div,
.enquiry-form,
.capability-matrix > div,
.materials-strip > div,
.poster-track figure {
  border: 1px solid rgba(16, 24, 20, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 28px rgba(16, 24, 20, 0.07);
}

.service-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.48fr) 1fr;
  min-height: 360px;
  overflow: hidden;
}

.service-card img {
  height: 100%;
  min-height: 360px;
  object-fit: contain;
  object-position: center;
  background: #eef1ef;
}

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

.service-card svg,
.career-grid svg {
  color: var(--teal);
  width: 28px;
  height: 28px;
}

.service-card h3,
.project-card h3,
.capability-matrix h3,
.download-band h3,
.career-grid h3 {
  margin: 14px 0 10px;
  font-size: 1.24rem;
  line-height: 1.16;
}

.service-card p,
.project-card p,
.capability-matrix p,
.download-band p,
.career-grid p {
  color: var(--steel);
  margin: 0;
}

.service-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--ink-soft);
  font-weight: 650;
}

.capability-matrix,
.materials-strip {
  max-width: var(--max);
  margin: 24px auto 0;
  display: grid;
  gap: 14px;
}

.capability-matrix {
  grid-template-columns: repeat(3, 1fr);
}

.capability-matrix > div,
.materials-strip > div {
  padding: 24px;
}

.materials-strip {
  grid-template-columns: repeat(4, 1fr);
}

.materials-strip span {
  display: block;
  color: var(--lime-dark);
  font-weight: 950;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.materials-strip p {
  margin: 10px 0 0;
  color: var(--ink-soft);
}

.industries-section {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 24, 20, 0.88), rgba(16, 24, 20, 0.62)),
    url("assets/brand/gi-product-panorama-v1.webp") center / cover;
}

.industries-copy h2,
.industries-copy p {
  color: var(--white);
}

.industries-copy p {
  max-width: 800px;
  color: rgba(255, 255, 255, 0.82);
}

.industry-grid {
  max-width: var(--max);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.industry-grid span {
  padding: 16px 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  font-weight: 900;
}

.project-controls {
  max-width: var(--max);
  margin: 0 auto 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(16, 24, 20, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink-soft);
  font-weight: 850;
}

.filter-button.active {
  background: var(--ink);
  color: var(--white);
}

.search-box {
  min-width: 260px;
  gap: 8px;
  padding: 0 12px;
  min-height: 44px;
  background: var(--white);
  border: 1px solid rgba(16, 24, 20, 0.14);
  border-radius: var(--radius);
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
}

.project-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.project-card {
  overflow: hidden;
}

.project-card.is-hidden {
  display: none;
}

.project-media {
  width: 100%;
  aspect-ratio: 1.3;
  padding: 0;
  border: 0;
  background: #eef1ef;
  overflow: hidden;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 240ms ease;
}

.project-media:hover img {
  transform: scale(1.04);
}

.project-card div {
  padding: 20px;
}

.project-card span {
  color: var(--teal);
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 950;
}

.download-band {
  max-width: var(--max);
  margin: 26px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--graphite);
  color: var(--white);
}

.home-project-preview,
.cta-panel {
  max-width: var(--max);
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.home-project-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(320px, 0.38fr);
  background: var(--white);
}

.home-project-preview img {
  width: 100%;
  height: 430px;
  object-fit: contain;
  object-position: center;
  background: #eef1ef;
}

.home-project-preview > div {
  padding: 34px;
  display: grid;
  align-content: center;
}

.home-project-preview span {
  color: var(--teal);
  text-transform: uppercase;
  font-weight: 950;
  font-size: 0.8rem;
}

.home-project-preview h3 {
  margin: 10px 0;
  font-size: 1.8rem;
  line-height: 1.05;
}

.home-project-preview p {
  color: var(--steel);
  margin: 0 0 24px;
}

.cta-section {
  background:
    linear-gradient(90deg, rgba(16, 24, 20, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, rgba(16, 24, 20, 0.022) 1px, transparent 1px),
    rgba(255, 255, 255, 0.88);
  background-size: 48px 48px;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(11, 18, 14, 0.96), rgba(11, 18, 14, 0.68) 52%, rgba(11, 18, 14, 0.18)),
    url("assets/brand/gi-fabrication-cta-v1.webp") center / cover;
}

.cta-panel h2,
.cta-panel p {
  color: var(--white);
}

.cta-panel h2 {
  margin: 0;
}

.cta-panel p:not(.eyebrow) {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.download-band h3,
.download-band p {
  color: var(--white);
}

.download-band > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-section {
  background:
    linear-gradient(90deg, rgba(16, 24, 20, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(16, 24, 20, 0.025) 1px, transparent 1px),
    rgba(255, 255, 255, 0.9);
  background-size: 44px 44px;
}

.social-action {
  max-width: var(--max);
  margin: -20px auto 28px;
}

.poster-track {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(160px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.poster-track figure {
  margin: 0;
  overflow: hidden;
  min-width: 180px;
}

.poster-track img {
  width: 100%;
  aspect-ratio: 0.8;
  object-fit: cover;
  background: #eef1ef;
}

.poster-track figcaption {
  padding: 12px 14px;
  color: var(--ink-soft);
  font-weight: 900;
  font-size: 0.9rem;
}

.process-section {
  background:
    linear-gradient(135deg, rgba(16, 24, 20, 0.97), rgba(36, 52, 45, 0.92)),
    url("assets/projects/process-column.jpg") center / cover;
  color: var(--white);
}

.process-section .section-head h2,
.process-section .section-head p {
  color: var(--white);
}

.process-flow {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.12);
}

.process-flow li {
  min-height: 230px;
  padding: 22px;
  background: rgba(16, 24, 20, 0.62);
}

.process-flow span {
  color: var(--lime);
  font-weight: 950;
}

.process-flow strong {
  display: block;
  margin-top: 28px;
  font-size: 1.12rem;
}

.process-flow p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.career-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.72fr);
  gap: 46px;
  align-items: center;
}

.career-copy,
.career-grid {
  width: min(100%, 560px);
}

.career-copy {
  justify-self: end;
  margin: 0;
}

.career-copy .button {
  margin-top: 26px;
}

.career-grid {
  display: grid;
  gap: 14px;
}

.career-grid > div {
  padding: 24px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.62fr);
  gap: 44px;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
}

.policy-content {
  width: min(820px, calc(100% - 44px));
  margin: 0 auto;
}

.policy-content h2 {
  margin: 34px 0 10px;
  font-size: 1.45rem;
}

.policy-content p {
  color: var(--steel);
  line-height: 1.75;
}

.contact-copy,
.enquiry-form {
  margin: 0;
}

.contact-actions {
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0;
}

address {
  font-style: normal;
  padding: 22px;
  border-left: 5px solid var(--lime);
  background: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  color: var(--ink-soft);
}

address a {
  font-weight: 900;
  color: var(--lime-dark);
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 24px;
}

.enquiry-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-weight: 850;
}

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

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 24, 20, 0.16);
  border-radius: var(--radius);
  background: #fbfdfb;
  padding: 12px 13px;
  color: var(--ink);
  outline: none;
}

.enquiry-form textarea {
  resize: vertical;
  min-height: 140px;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--lime-dark);
  box-shadow: 0 0 0 4px rgba(134, 197, 65, 0.2);
}

.site-footer {
  padding: 34px 22px;
  color: rgba(255, 255, 255, 0.8);
  background: var(--ink);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.site-footer.detailed-footer {
  display: block;
  padding: 70px 22px 24px;
}

.footer-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 46px;
  align-items: start;
}

.footer-about p {
  max-width: 420px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.footer-socials {
  margin-top: 22px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.footer-socials a:hover {
  color: var(--ink);
  background: var(--lime);
}

.footer-socials svg {
  width: 17px;
  height: 17px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-column h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 1rem;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-column a:hover {
  color: var(--lime);
}

.footer-contact address {
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  line-height: 1.65;
}

.footer-bottom {
  width: min(var(--max), 100%);
  margin: 52px auto 0;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom > div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.74);
}

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

.footer-brand strong {
  color: var(--white);
}

.footer-links {
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: grid;
  gap: 8px;
}

.floating-actions a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  transition: transform 160ms ease;
}

.floating-actions a:nth-child(2) {
  background: #198754;
}

.lightbox {
  width: min(960px, calc(100vw - 28px));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 28px 80px rgba(16, 24, 20, 0.28);
}

.lightbox::backdrop {
  background: rgba(16, 24, 20, 0.72);
}

.lightbox img {
  width: 100%;
  max-height: 78svh;
  object-fit: contain;
  background: #eef3ef;
}

.lightbox h3 {
  margin: 0;
  padding: 18px 22px;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  color: var(--white);
  background: rgba(16, 24, 20, 0.78);
  border-color: rgba(255, 255, 255, 0.2);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal,
  .button,
  .project-media img {
    transition: none;
  }

  .equipment-track {
    animation: none;
  }

  .hero-title-product.is-leaving,
  .hero-title-product.is-entering {
    animation: none;
  }

  .jump-product {
    transition: none;
  }

  .jump-product.is-jumping {
    animation: none;
  }

  .falling-product {
    display: none;
  }
}

@media (max-width: 1100px) {
  .page-hero h1 {
    font-size: 3.6rem;
  }

  .shared-product-head {
    grid-template-columns: 1fr auto;
  }

  .shared-product-head > p {
    grid-column: 1 / -1;
    grid-row: 2;
    max-width: 720px;
  }

  .quick-strip,
  .materials-strip,
  .industry-grid,
  .home-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-grid,
  .section-head,
  .about-band,
  .career-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .career-copy,
  .career-grid,
  .contact-copy,
  .enquiry-form {
    width: min(var(--max), 100%);
    max-width: none;
    justify-self: auto;
    margin-inline: auto;
  }

  .capability-matrix {
    grid-template-columns: 1fr;
  }

  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-flow {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .home-project-preview img {
    height: 360px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    justify-content: center;
  }

  .hero-caption {
    width: min(700px, calc(100% - 44px));
  }

  .hero-equipment-label {
    display: none;
  }
}

@media (max-width: 820px) {
  .top-rail {
    display: none;
  }

  .site-header {
    background: rgba(247, 250, 247, 0.97);
  }

  body[data-page="home"] .site-header:not(.is-scrolled) .menu-toggle.icon-button {
    color: var(--white);
    background: rgba(7, 13, 10, 0.18);
    border-color: rgba(255, 255, 255, 0.48);
  }

  .nav-shell {
    grid-template-columns: auto auto;
    min-height: 70px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand small {
    display: none;
  }

  .nav-shell > .menu-toggle.icon-button {
    display: inline-grid;
    justify-self: end;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 14px;
    right: 14px;
    padding: 10px;
    background: var(--white);
    border: 1px solid rgba(16, 24, 20, 0.12);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
    justify-items: stretch;
  }

  .nav-links a {
    padding: 13px;
  }

  .hero {
    min-height: 92svh;
  }

  .page-hero {
    min-height: 46svh;
    padding-top: 118px;
    padding-bottom: 56px;
  }

  .hero-media img {
    object-position: 60% center;
    transform: scale(1.015);
  }

  .hero-caption {
    left: 50%;
    top: 54%;
    bottom: auto;
    width: calc(100% - 44px);
  }

  .page-hero h1 {
    font-size: 2.7rem;
    white-space: normal;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 1.18rem;
  }

  .shared-product-head {
    grid-template-columns: 1fr;
  }

  .shared-product-head h2 {
    font-size: 2.25rem;
  }

  .shared-product-head > p {
    grid-column: auto;
    grid-row: auto;
  }

  .shared-product-carousel {
    grid-auto-columns: 78vw;
  }

  .shared-product-carousel a {
    height: 290px;
  }

  .hero-statement {
    font-size: 1.08rem;
  }

  .hero-title-product {
    min-height: 1.9em;
    font-size: 3.25rem;
  }

  .product-jump-zone {
    min-height: 880px;
    align-items: start;
    padding-top: 80px;
  }

  .jump-zone-copy {
    width: min(100%, 430px);
  }

  .jump-zone-copy h2 {
    font-size: 2.35rem;
  }

  .jump-product-heat {
    width: 58vw;
    height: 230px;
    top: 360px;
    left: -7vw;
  }

  .jump-product-blender {
    width: 54vw;
    height: 230px;
    top: 400px;
    right: -8vw;
  }

  .jump-product-cooler {
    width: 75vw;
    height: 230px;
    right: 10vw;
    bottom: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: left;
  }

  .detailed-footer .footer-brand {
    justify-content: flex-start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
  }

  .hero-logo {
    width: 66px;
    height: 66px;
    margin-bottom: 12px;
  }

  .equipment-universe-head {
    grid-template-columns: 1fr;
  }

  .equipment-universe-head h2 {
    font-size: 2rem;
  }

  .equipment-track figure {
    width: 250px;
    height: 190px;
  }

  .hero-scroll {
    right: auto;
    bottom: 16px;
  }

  .section {
    padding-block: 70px;
  }

  .section h2,
  .section-head h2 {
    font-size: 2rem;
  }

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

  .service-card img {
    height: 260px;
    min-height: 260px;
    width: 100%;
  }

  .project-controls {
    display: grid;
  }

  .search-box {
    min-width: 0;
  }

  .project-grid,
  .process-flow,
  .quick-strip,
  .materials-strip,
  .industry-grid,
  .home-feature-grid {
    grid-template-columns: 1fr;
  }

  .home-feature {
    min-height: 290px;
  }

  .strip-item {
    border-right: 0;
    border-bottom: 1px solid rgba(16, 24, 20, 0.1);
  }

  .download-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .enquiry-form {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 520px) {
  .hero-kicker span:last-child {
    display: none;
  }

  .hero-statement {
    font-size: 1rem;
  }

  .hero-title-product {
    min-height: 2.02em;
    font-size: 2.55rem;
  }

  .hero-actions,
  .contact-actions,
  .download-band > div:last-child {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .poster-track {
    grid-template-columns: repeat(6, 78vw);
  }
}
