:root {
  --milk: #f5f0e7;
  --milk-2: #efe7d7;
  --ink: #0d0d0f;
  --ink-soft: #2f2b27;
  --line: rgba(13, 13, 15, 0.12);
  --white: #ffffff;
  --yellow: #f4d540;
  --sans: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: var(--sans);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.95), transparent 24%),
    linear-gradient(180deg, #faf7f1 0%, var(--milk) 44%, var(--milk-2) 100%);
}

::selection {
  background: rgba(13, 13, 15, 0.88);
  color: var(--white);
  text-shadow: none;
}

.nav-link::selection,
.nav-link span::selection,
.nav-link-active::selection,
.nav-link-active span::selection,
.nav-link.is-indicator-target::selection,
.nav-link.is-indicator-target span::selection,
.nav-link-products.is-open::selection,
.nav-link-products.is-open span::selection,
.products-menu a::selection {
  background: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

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

a:visited,
a:hover,
a:active {
  color: inherit;
}

img {
  display: block;
  width: 100%;
}

button {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: relative;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.1rem 2rem;
  background: rgba(245, 240, 231, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(13, 13, 15, 0.05);
}

.site-header-home {
  position: absolute;
  inset: 4px 0 auto;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 0;
}

.scroll-progress-track {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  height: 4px;
  background: rgba(13, 13, 15, 0.06);
}

.scroll-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #111111 0%, #d8ae34 30%, #2f6df6 65%, #0e9f6e 100%);
  transition: width 120ms linear;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logo-image {
  width: min(12rem, 38vw);
  max-height: 4.4rem;
  height: auto;
  object-fit: contain;
}

.logo-image:not([hidden]) + .logo-fallback {
  display: none;
}

.logo-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.4rem;
  height: 4.4rem;
  padding: 0 1rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.nav-toggle {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  padding: 0;
  border: 1px solid rgba(13, 13, 15, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  cursor: pointer;
}

@media (min-width: 1101px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle-line {
  position: absolute;
  width: 1.2rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-line:nth-child(1) {
  transform: translateY(-0.42rem);
}

.nav-toggle-line:nth-child(3) {
  transform: translateY(0.42rem);
}

.site-header.is-nav-open .nav-toggle-line:nth-child(1) {
  transform: rotate(45deg);
}

.site-header.is-nav-open .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .nav-toggle-line:nth-child(3) {
  transform: rotate(-45deg);
}

.nav-shell {
  position: relative;
  justify-self: center;
  width: max-content;
  max-width: 100%;
  padding: 0.48rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(245, 240, 231, 0.92);
  box-shadow: 0 14px 28px rgba(13, 13, 15, 0.05);
}

.main-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  isolation: isolate;
}

.nav-indicator {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--ink);
  opacity: 0;
  transform: translateX(0);
  transition:
    transform 260ms ease,
    width 260ms ease,
    opacity 180ms ease;
  pointer-events: none;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: 7.7rem;
  padding: 0.92rem 1.24rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: color 180ms ease;
}

.nav-link-active {
  background: var(--ink);
  color: var(--white);
}

.nav-link.is-indicator-target,
.nav-link.is-preview,
.nav-link-products.is-open {
  background: var(--ink);
  color: var(--white);
}

.nav-arrow {
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-link-products.is-open .nav-arrow {
  transform: rotate(225deg) translateY(-1px);
}

[hidden] {
  display: none !important;
}

.products-menu {
  position: absolute;
  top: calc(100% + 0.9rem);
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  gap: 0.28rem;
  width: min(15rem, calc(100vw - 2rem));
  padding: 0.78rem;
  border-radius: 2rem;
  background: rgba(245, 240, 231, 0.98);
  border: 1px solid rgba(13, 13, 15, 0.08);
  box-shadow: 0 24px 60px rgba(13, 13, 15, 0.1);
}

.products-menu a {
  display: flex;
  align-items: center;
  min-height: 2.9rem;
  padding: 0 1.15rem;
  border-radius: 1.4rem;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.05;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.products-menu a:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateX(6px);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: right;
  font-size: 0.89rem;
  color: var(--ink-soft);
  white-space: nowrap;
  min-width: 0;
}

.header-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
  min-height: 170vh;
  padding: 0 2rem;
  overflow: clip;
  background:
    radial-gradient(circle at 82% 24%, rgba(255, 214, 142, 0.18), transparent 16%),
    radial-gradient(circle at 72% 20%, rgba(146, 194, 245, 0.16), transparent 18%),
    radial-gradient(circle at 18% 16%, rgba(255, 206, 132, 0.34), transparent 24%),
    radial-gradient(circle at 78% 22%, rgba(163, 204, 245, 0.22), transparent 22%),
    linear-gradient(180deg, rgba(191, 219, 248, 0.2) 0%, rgba(245, 248, 253, 0.18) 28%, rgba(252, 242, 223, 0.22) 62%, rgba(255, 198, 137, 0.2) 100%);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.4) 28%, transparent 58%),
    linear-gradient(rgba(13, 13, 15, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 13, 15, 0.075) 1px, transparent 1px);
  background-size:
    100% 100%,
    46px 46px,
    46px 46px;
  background-position:
    center,
    center,
    center;
  mask-image: radial-gradient(560px circle at 50% 28%, white, rgba(255, 255, 255, 0.76) 42%, transparent 76%);
  transform: perspective(1200px) rotateX(65deg) scale(1.12);
  transform-origin: center top;
  opacity: 1;
  pointer-events: none;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 78% 26%, rgba(255, 227, 179, 0.22), transparent 14%),
    radial-gradient(circle at 14% 70%, rgba(255, 181, 110, 0.18), transparent 22%),
    radial-gradient(circle at 88% 16%, rgba(183, 214, 245, 0.16), transparent 24%);
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 76% 18%, rgba(255, 255, 255, 0.34), transparent 20%),
    radial-gradient(ellipse at 64% 14%, rgba(166, 206, 255, 0.2), transparent 22%),
    radial-gradient(ellipse at 82% 30%, rgba(255, 196, 126, 0.2), transparent 20%),
    linear-gradient(118deg, transparent 58%, rgba(255, 205, 127, 0.12) 68%, transparent 78%),
    linear-gradient(126deg, transparent 62%, rgba(162, 202, 247, 0.11) 72%, transparent 82%);
  filter: blur(18px);
  opacity: 0.84;
  pointer-events: none;
}

.hero-left-stage {
  position: sticky;
  top: 7rem;
  align-self: start;
  min-height: calc(100svh - 8rem);
  z-index: 5;
  min-width: 0;
}

.hero-scroll-gallery {
  position: absolute;
  left: 0;
  top: 34.5rem;
  width: min(58rem, 76vw);
  height: 14rem;
  z-index: 2;
  pointer-events: none;
  overflow: visible;
}

.scroll-card {
  position: absolute;
  left: 0;
  width: 10.6rem;
  height: 10.6rem;
  padding: 0.72rem;
  border: 1px solid rgba(13, 13, 15, 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 24px 60px rgba(13, 13, 15, 0.08);
  will-change: transform, opacity;
  opacity: 0;
  transform: translate3d(0, 760px, 0) scale(0.82);
  overflow: hidden;
}

.scroll-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.scroll-card-tower {
  top: 0;
  left: 0;
}

.scroll-card-stringing {
  top: 0;
  left: 11.7rem;
}

.scroll-card-hydraulic {
  top: 0;
  left: 23.4rem;
}

.scroll-card-oil {
  top: 0;
  left: 35.1rem;
}

.scroll-card-ev {
  top: 0;
  left: 46.8rem;
}

.hero-copy {
  position: relative;
  display: grid;
  gap: 1.15rem;
  max-width: 36rem;
  padding-top: 10rem;
  z-index: 5;
}

.hero-kicker {
  margin: 0;
  color: rgba(13, 13, 15, 0.56);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  max-width: 9ch;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.hero-visual {
  position: sticky;
  top: 0;
  height: 100svh;
  margin-top: 0;
  overflow: clip;
  z-index: 3;
  background: transparent;
}

.hero-light {
  position: absolute;
  right: 10%;
  top: 6%;
  width: 38rem;
  height: 38rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 244, 210, 0.62) 0%, rgba(255, 214, 148, 0.24) 28%, rgba(173, 211, 252, 0.16) 52%, transparent 76%);
  filter: blur(12px);
}

.tower-wrap {
  position: absolute;
  top: 2rem;
  right: 0;
  bottom: 0;
  width: min(48vw, 46rem);
  display: block;
  transform-origin: 68% 68%;
  will-change: transform;
}

.tower-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  filter: grayscale(1) contrast(1.5) brightness(0.05);
  mix-blend-mode: multiply;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 3rem;
  padding: 4rem 8rem 6rem;
  align-items: stretch;
  margin-top: 3rem;
}

.about-copy-block h2 {
  margin: 0 0 1.25rem;
  max-width: 12ch;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.about-copy-block p:not(.hero-kicker) {
  max-width: 42rem;
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.82;
}

.clients-block {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.clients-label {
  color: rgba(13, 13, 15, 0.56);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.clients-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.clients-logos img {
  width: 100%;
  height: 4.5rem;
  padding: 0.9rem 1rem;
  object-fit: contain;
  border: 1px solid rgba(13, 13, 15, 0.08);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 16px 30px rgba(13, 13, 15, 0.04);
}

.founder-placeholder {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 1rem;
  height: 100%;
}

.founder-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 2.4rem;
  border: 0;
  background: transparent;
  box-shadow: none;
  width: 100%;
  max-width: 43rem;
  height: 55rem;
  min-height: 55rem;
  justify-self: end;
  border-radius: 2.4rem;
  isolation: isolate;
}

.founder-image {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  background: transparent;
  border-radius: 2.4rem;
}

.founder-caption span {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(13, 13, 15, 0.5);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-caption strong {
  font-size: 1rem;
  line-height: 1.6;
}

.founder-caption {
  width: 100%;
  max-width: 38rem;
  justify-self: start;
  padding-left: 1.1rem;
}

.leadership-panel {
  display: grid;
  gap: 2rem;
  align-content: start;
}

.page-section-leadership {
  padding-top: 0;
}

.leadership-panel-copy {
  display: grid;
  gap: 0.9rem;
  width: 100%;
  max-width: none;
}

.leadership-panel-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  max-width: 100%;
}

.leadership-panel-copy p {
  margin: 0;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  align-items: start;
}

.leadership-feature-row {
  display: block;
}

.leadership-grid-secondary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.leadership-grid .leader-card {
  display: grid;
  gap: 0.95rem;
  align-content: start;
  min-height: 100%;
  padding: 1.1rem;
  border: 1px solid rgba(13, 13, 15, 0.08);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 34px rgba(13, 13, 15, 0.05);
}

.leadership-grid .leader-card-featured {
  grid-column: span 1;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
}

.leadership-feature-row .leader-card-featured {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 1.6rem;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.leadership-grid .leader-card .founder-frame,
.leadership-grid .leader-card .founder-caption {
  max-width: 100%;
  width: 100%;
}

.leadership-grid .leader-card .founder-frame {
  height: 25rem;
  min-height: 25rem;
  justify-self: stretch;
}

.leadership-feature-row .leader-card-featured .founder-frame {
  height: 27rem;
  min-height: 27rem;
}

.leadership-grid .leader-card-featured .founder-frame {
  height: auto;
  min-height: 25rem;
  align-self: stretch;
}

.page-section-leadership .founder-frame {
  background: linear-gradient(180deg, rgba(233, 241, 251, 0.98) 0%, rgba(214, 227, 244, 0.98) 100%);
}

.page-section-leadership .founder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.leadership-grid .leader-card .founder-image {
  object-position: center 18%;
}

.leadership-grid .leader-card .founder-caption {
  padding-left: 0;
}

.leadership-grid .leader-card-featured .founder-caption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.leadership-feature-row .leader-card-featured .founder-caption {
  padding-right: 0.6rem;
}

.leadership-grid .leader-card .founder-caption p {
  margin: 0.8rem 0 0;
  color: rgba(13, 13, 15, 0.76);
  font-size: 0.96rem;
  line-height: 1.72;
}

.site-footer {
  position: relative;
  padding: 10rem 2rem 6rem;
  color: var(--ink);
  background: transparent;
}

.footer-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.95rem;
  margin: 0 auto 2rem;
  flex-wrap: wrap;
}

.footer-trust-text {
  color: rgba(13, 13, 15, 0.66);
  font-size: 0.95rem;
  font-weight: 700;
}

.footer-avatar-circles {
  display: inline-flex;
  align-items: center;
}

.footer-avatar-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-left: -0.6rem;
  overflow: hidden;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(13, 13, 15, 0.08);
}

.footer-avatar-circle:first-child {
  margin-left: 0;
}

.footer-avatar-circle img {
  width: 78%;
  height: 78%;
  object-fit: contain;
}

.footer-avatar-count {
  background: var(--ink);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
}

.footer-brand {
  margin: 0 auto 10rem;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(6rem, 14vw, 12rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-transform: lowercase;
}

.footer-brand-sparkle {
  position: relative;
  display: block;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(
    90deg,
    rgba(13, 13, 15, 0.94) 0%,
    rgba(13, 13, 15, 0.98) 35%,
    rgba(182, 142, 33, 0.94) 50%,
    rgba(13, 13, 15, 0.98) 65%,
    rgba(13, 13, 15, 0.94) 100%
  );
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: sparkle-text-shift 14s ease-in-out infinite;
}

.footer-brand-sparkle::before,
.footer-brand-sparkle::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(244, 213, 64, 0.82) 45%, transparent 72%);
  filter: blur(0.4px);
  opacity: 0.45;
  pointer-events: none;
}

.footer-brand-sparkle::before {
  transform: translate(-10rem, -1.2rem) scale(0.75);
  animation: sparkle-float-one 12s ease-in-out infinite;
}

.footer-brand-sparkle::after {
  transform: translate(8rem, 1rem) scale(0.58);
  animation: sparkle-float-two 16s ease-in-out infinite;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-column h3 {
  margin: 0 0 1.2rem;
  font-family: var(--serif);
  font-size: 2rem;
}

.footer-column-intro {
  padding-top: 4.2rem;
}

.footer-column p,
.footer-list li {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.footer-list strong {
  color: var(--ink);
}

.footer-note-small {
  display: block;
  margin-top: 0.18rem;
  color: rgba(13, 13, 15, 0.56);
  font-size: 0.84rem;
  line-height: 1.45;
}

.footer-inline-link {
  transition: color 180ms ease;
}

.footer-inline-link:hover,
.footer-inline-link:focus-visible {
  color: #b88c10;
}

.footer-meta {
  display: grid;
  gap: 0.6rem;
  margin-top: 3rem;
}

.footer-meta strong {
  font-size: 0.98rem;
}

.footer-list {
  display: grid;
  gap: 1.6rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(13, 13, 15, 0.08);
  color: var(--ink-soft);
}

.footer-bottom-left {
  display: grid;
  gap: 0.45rem;
}

.footer-credit {
  margin-top: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  text-align: left;
}

.labs-products-section {
  padding: 2rem 2rem 1rem;
}

.labs-products-heading {
  max-width: 48rem;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.labs-products-heading h2 {
  margin: 0.8rem 0 0;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.labs-products-heading p:not(.hero-kicker) {
  margin: 0.8rem auto 0;
  max-width: 36rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.72;
}

.labs-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  max-width: 1220px;
  margin: 0 auto;
}

.labs-product-card {
  display: grid;
  gap: 0.72rem;
  padding: 1rem;
  border-radius: 2.2rem;
  min-height: 19.2rem;
  box-shadow: 0 24px 60px rgba(13, 13, 15, 0.07);
}

.labs-product-blue {
  background: #6e91ea;
}

.labs-product-pink {
  background: #e9a7df;
}

.labs-product-violet {
  background: #9794f1;
}

.labs-product-green {
  background: #97d6a9;
}

.labs-product-amber {
  background: #f3ca73;
}

.labs-product-coral {
  background: #f2a48f;
}

.labs-product-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 6.3rem;
}

.labs-visual-frame {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 8.2rem);
  height: 6rem;
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.labs-visual-label {
  position: absolute;
  top: 1.05rem;
  left: 1.05rem;
  z-index: 2;
  padding: 0.52rem 0.8rem;
  border-radius: 999px;
  background: rgba(13, 13, 15, 0.08);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: none;
}

.labs-visual-icon {
  width: min(100%, 4.2rem);
  height: min(100%, 4.2rem);
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(13, 13, 15, 0.12));
}

.labs-product-card h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.02;
}

.labs-product-card p {
  margin: 0;
  color: rgba(13, 13, 15, 0.88);
  font-size: 0.8rem;
  line-height: 1.46;
}

.labs-product-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  margin-top: auto;
  padding: 0.72rem 1.15rem;
  border: 1px solid rgba(13, 13, 15, 0.55);
  border-radius: 999px;
  background: transparent;
  font-size: 0.88rem;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.labs-product-link:hover,
.labs-product-link:focus-visible {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

.privacy-policy-section {
  padding-top: 1rem;
}

.privacy-policy-content {
  max-width: 56rem;
}

.privacy-policy-content h2 {
  margin: 2rem 0 0.8rem;
  font-family: var(--serif);
  font-size: 2rem;
}

.privacy-policy-content p,
.privacy-policy-content li {
  color: var(--ink-soft);
  line-height: 1.9;
}

.privacy-policy-content ul {
  margin: 0.6rem 0 0;
  padding-left: 1.25rem;
}

.inner-hero {
  padding: 5rem 8rem 2rem;
}

.inner-hero h1 {
  margin: 0.65rem 0 0;
  max-width: 9ch;
  font-family: var(--serif);
  font-size: clamp(3.25rem, 7vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.inner-hero-copy {
  max-width: 38rem;
  margin: 1.25rem 0 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.9;
}

.page-section {
  padding: 2rem 8rem 6rem;
}

.page-grid {
  display: grid;
  gap: 3rem;
}

.page-grid-about {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.page-section-about .page-copy {
  width: 100%;
  max-width: 76rem;
}

.page-copy p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.95;
}

.leader-card {
  display: grid;
  gap: 1rem;
}

.page-section-facts {
  padding-top: 0;
}

.page-section-facts h2,
.contact-form-block h2 {
  margin: 0.7rem 0 0;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4.4vw, 4.2rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.fact-card,
.contact-card,
.contact-form-block,
.map-card {
  border: 1px solid rgba(13, 13, 15, 0.08);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 20px 48px rgba(13, 13, 15, 0.06);
}

.fact-card {
  display: grid;
  gap: 0.75rem;
  padding: 1.6rem;
}

.fact-card strong {
  font-size: 1.25rem;
}

.fact-card span {
  color: var(--ink-soft);
  line-height: 1.7;
}

.page-section-contact {
  padding-top: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.contact-copy-block {
  display: grid;
  gap: 1.25rem;
}

.contact-copy-block h2 {
  margin: 0.7rem 0 0;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4.4vw, 4.2rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.contact-text-list,
.branches-list {
  display: grid;
  gap: 0.85rem;
}

.contact-text-list p,
.branches-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.9;
}

.contact-card-link {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.8;
  transition: color 180ms ease;
}

.contact-card-link:hover,
.contact-card-link:focus-visible {
  color: #b88c10;
}

.contact-form-block {
  padding: 2rem;
}

.contact-form-block-green {
  background: rgba(151, 214, 169, 0.72);
}

.branches-block {
  margin-top: 1.2rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(13, 13, 15, 0.12);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  width: max-content;
  min-width: 11rem;
  padding: 1rem 1.4rem;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
}

.contact-form button:disabled {
  opacity: 0.7;
  cursor: wait;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

.form-status.is-success {
  color: #0e7c55;
}

.form-status.is-error {
  color: #a33a2f;
}

.map-card {
  margin-top: 2rem;
  overflow: hidden;
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 34rem;
  border: 0;
}

.site-footer-minimal-spacer {
  height: 1rem;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.96fr);
  gap: clamp(1.8rem, 2.8vw, 3rem);
  align-items: center;
  padding: 4rem 8rem 2.5rem;
  overflow: hidden;
}

.product-hero-copy {
  min-width: 0;
  position: relative;
  z-index: 1;
}

.product-hero-copy h1 {
  margin: 0.8rem 0 0;
  max-width: 10ch;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 7vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.product-hero-body {
  max-width: 38rem;
  margin: 1.4rem 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.9;
}

.product-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.product-hero-meta span {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(13, 13, 15, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  font-weight: 700;
}

.product-hero-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(11rem, 15rem);
  gap: 1rem;
  align-items: stretch;
  width: 100%;
  max-width: 46rem;
  min-width: 0;
  justify-self: end;
}

.product-hero-visual-stringing,
.product-hero-visual-pneumatic {
  grid-template-columns: minmax(0, 1fr) minmax(11rem, 0.48fr);
  align-items: center;
}

.product-hero-side-stack {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.product-hero-main,
.product-hero-side,
.product-family-item figure,
.media-story-visual,
.equipment-feature figure,
.more-product img,
.headboard-item img,
.automatic-clamp-grid img,
.product-rail-item img {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid rgba(13, 13, 15, 0.08);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 24px 60px rgba(13, 13, 15, 0.06);
  aspect-ratio: 4 / 3;
}

.product-hero-main img,
.product-hero-side img,
.product-family-item img,
.media-story-visual img,
.equipment-feature figure img,
.more-product img,
.headboard-item img,
.automatic-clamp-grid img,
.product-rail-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-section,
.labs-products-section,
.page-section,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 48rem;
}

.product-hero-visual-stringing .product-hero-main,
.product-hero-visual-stringing .product-hero-side,
.product-hero-visual-pneumatic .product-hero-main,
.product-hero-visual-pneumatic .product-hero-side {
  min-height: 0;
  background: transparent;
  border-color: rgba(13, 13, 15, 0.06);
}

.product-hero-visual-stringing .product-hero-main img,
.product-hero-visual-stringing .product-hero-side img,
.product-hero-visual-pneumatic .product-hero-main img,
.product-hero-visual-pneumatic .product-hero-side img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.product-hero-stringing .product-hero-copy h1 {
  max-width: 13ch;
  font-size: clamp(2.2rem, 3vw, 3.45rem);
  line-height: 0.98;
  white-space: normal;
}

.product-hero-pneumatic .product-hero-copy h1,
.product-hero-oil .product-hero-copy h1 {
  max-width: 16ch;
  font-size: clamp(2rem, 2.55vw, 3rem);
  line-height: 0.98;
  white-space: normal;
}

.product-hero-stringing {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
}

.product-hero-stringing .product-hero-copy {
  max-width: 46rem;
}

.product-hero-stringing .product-hero-copy p:not(.hero-kicker) {
  max-width: 42rem;
}

.product-hero-stringing .product-hero-visual {
  align-self: center;
}

.page-stringing .product-hero-side:first-child img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-hero-oil {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 1.7rem;
}

.product-hero-oil .product-hero-copy {
  max-width: 41rem;
}

.product-hero-oil .product-hero-copy p:not(.hero-kicker) {
  max-width: 38rem;
}

.product-hero-visual-oil {
  grid-template-columns: minmax(0, 1fr) minmax(9rem, 0.28fr);
  gap: 1.1rem;
  align-items: center;
  max-width: 43rem;
}

.product-hero-visual-oil .product-hero-main {
  align-self: stretch;
}

.product-hero-visual-oil .product-hero-side {
  align-self: center;
  max-width: 16rem;
  justify-self: start;
}

.product-hero-visual-oil .product-hero-main img {
  width: 100%;
  height: 100%;
  min-height: 30rem;
  object-fit: cover;
  object-position: center;
}

.product-hero-visual-oil .product-hero-side img {
  width: 100%;
  height: 100%;
  min-height: 14rem;
  object-fit: cover;
  object-position: center;
}

.product-hero-main {
  min-height: 40rem;
}

.product-hero-side {
  min-height: 24rem;
}

.product-intro-section {
  padding-top: 2rem;
}

.product-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.product-intro-grid h2,
.section-heading-wrap h2,
.product-enquiry-copy h2,
.product-contact-card h2 {
  margin: 0.7rem 0 0;
  max-width: 12ch;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.section-heading-wrap-wide h2,
.section-heading-wrap-casting h2,
.product-family-section .section-heading-wrap h2,
.product-media-split .section-heading-wrap h2,
.product-headboard-section .section-heading-wrap h2,
.product-more-section .section-heading-wrap h2 {
  max-width: 100%;
}

.product-intro-copy p,
.media-story-copy p,
.equipment-feature p,
.more-product p,
.product-enquiry-copy p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.9;
}

.section-heading-wrap {
  margin-bottom: 2rem;
}

.product-family-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.product-family-item {
  display: grid;
  gap: 1rem;
}

.product-family-item h3,
.media-story-copy h3,
.product-rail-item h3,
.headboard-item h3,
.more-product h3 {
  margin: 0;
  font-size: 1.2rem;
}

.product-family-item p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.product-family-featured {
  grid-column: span 2;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.9fr);
  align-items: center;
  gap: 1.4rem;
}

.product-family-featured figure {
  min-height: 20rem;
}

.product-family-item:not(.product-family-featured) figure {
  aspect-ratio: 1 / 0.9;
}

.product-family-grid .product-family-item:nth-child(6) {
  grid-column: span 2;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 1.2rem;
}

.product-family-grid .product-family-item:nth-child(6) figure {
  aspect-ratio: 1 / 0.72;
}

.media-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.media-story {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 1rem;
  align-items: center;
}

.media-story-secondary {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
}

.media-story-visual {
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.media-story-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.product-rail-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.product-rail-item {
  display: grid;
  gap: 0.85rem;
}

.product-rail-item img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 1rem;
}

.headboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.headboard-item {
  display: grid;
  gap: 0.85rem;
}

.headboard-item img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 1rem;
}

.headboard-item-wide {
  grid-column: span 3;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 1.4rem;
}

.headboard-item-wide img {
  aspect-ratio: auto;
  min-height: 18rem;
  object-fit: cover;
  padding: 0;
}

.headboard-item-wide p {
  margin: 0.85rem 0 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.equipment-feature {
  display: grid;
  gap: 1.2rem;
}

.equipment-feature figure {
  min-height: 20rem;
}

.automatic-clamp-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.automatic-clamp-grid img {
  aspect-ratio: 1 / 1.12;
  object-fit: cover;
}

.more-products-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(0, 0.95fr));
  gap: 1rem;
}

.more-product {
  display: grid;
  gap: 0.95rem;
}

.more-product img {
  min-height: 19rem;
}

.more-product-feature img {
  min-height: 24rem;
}

.product-enquiry-section {
  display: block;
  max-width: none;
  margin: 0;
}

.product-form-block {
  padding-top: 1.8rem;
}

.product-enquiry-copy {
  display: none;
}

.product-contact-card {
  display: grid;
  gap: 1.15rem;
  width: 100%;
  padding: 2.4rem;
  border: 1px solid rgba(13, 13, 15, 0.08);
  border-radius: 2rem;
  box-shadow: 0 20px 48px rgba(13, 13, 15, 0.06);
}

.product-contact-card p {
  margin: 0;
  line-height: 1.85;
  max-width: 58rem;
}

.product-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.product-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-width: 11rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(13, 13, 15, 0.52);
  background: rgba(255, 255, 255, 0.48);
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.product-contact-button:hover,
.product-contact-button:focus-visible {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

.product-contact-button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  line-height: 1;
}

.product-contact-button-whatsapp {
  background: #25d366;
  border-color: #25d366;
  color: #ffffff;
}

.product-contact-button-whatsapp:hover,
.product-contact-button-whatsapp:focus-visible {
  background: #1fb85a;
  border-color: #1fb85a;
  color: #ffffff;
}

.product-contact-button-email {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(13, 13, 15, 0.18);
  color: var(--ink);
}

.product-contact-button-email:hover,
.product-contact-button-email:focus-visible {
  background: rgba(255, 255, 255, 1);
  color: var(--ink);
}

.product-contact-blue {
  background: rgba(110, 145, 234, 0.7);
}

.product-contact-pink {
  background: rgba(233, 167, 223, 0.72);
}

.product-contact-violet {
  background: rgba(151, 148, 241, 0.72);
}

.product-contact-green {
  background: rgba(151, 214, 169, 0.75);
}

.product-contact-amber {
  background: rgba(243, 202, 115, 0.78);
}

.product-contact-coral {
  background: rgba(242, 164, 143, 0.78);
}

@keyframes sparkle-text-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes sparkle-float-one {
  0%,
  100% {
    transform: translate(-10rem, -1.2rem) scale(0.72);
    opacity: 0.28;
  }

  50% {
    transform: translate(-1rem, -2.8rem) scale(1);
    opacity: 0.72;
  }
}

@keyframes sparkle-float-two {
  0%,
  100% {
    transform: translate(8rem, 1rem) scale(0.58);
    opacity: 0.22;
  }

  50% {
    transform: translate(2rem, -1.8rem) scale(0.9);
    opacity: 0.62;
  }
}

.product-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 2rem;
  align-items: start;
}

.product-story-copy p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.9;
}

.product-feature-list {
  display: grid;
  gap: 1rem;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}

.product-feature-list li {
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(13, 13, 15, 0.08);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink-soft);
  line-height: 1.8;
}

.product-feature-list strong {
  color: var(--ink);
}

.product-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.product-gallery-card {
  display: grid;
  gap: 0.8rem;
  min-width: 0;
}

.product-gallery-card figure {
  margin: 0;
  overflow: hidden;
  border-radius: 1.8rem;
  border: 1px solid rgba(13, 13, 15, 0.08);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 24px 60px rgba(13, 13, 15, 0.06);
  aspect-ratio: 1 / 1;
}

.product-gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
}

.product-hero-casting {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: clamp(1.8rem, 2.4vw, 2.8rem);
  padding-top: 4.8rem;
  padding-bottom: 2.6rem;
  background:
    radial-gradient(circle at 18% 18%, rgba(214, 228, 247, 0.72), transparent 29%),
    radial-gradient(circle at 84% 16%, rgba(197, 213, 233, 0.45), transparent 24%),
    linear-gradient(180deg, rgba(220, 233, 249, 0.88) 0%, rgba(230, 238, 248, 0.8) 52%, rgba(241, 244, 249, 0.56) 100%);
}

.product-hero-copy-casting {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 0.6rem 0 0.8rem;
}

.product-hero-casting .product-hero-copy h1 {
  display: grid;
  gap: 0.18em;
  max-width: 7.4ch;
  font-size: clamp(3.35rem, 5.8vw, 6.45rem);
  line-height: 0.86;
}

.product-hero-casting .product-hero-copy h1 span {
  display: block;
}

.product-hero-casting .product-hero-body {
  max-width: 28rem;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

.casting-hero-note {
  max-width: 25rem;
  margin: 0;
  color: rgba(17, 42, 76, 0.74);
  font-size: 0.96rem;
  line-height: 1.65;
}

.product-hero-visual-casting {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.1rem;
  align-self: start;
  align-items: start;
  min-width: 0;
}

.casting-collage-card {
  margin: 0;
  overflow: hidden;
  border-radius: 2.2rem;
  border: 1px solid rgba(13, 13, 15, 0.04);
  background: transparent;
  box-shadow: none;
  align-self: start;
}

.casting-collage-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.casting-collage-column {
  display: grid;
  gap: 1.1rem;
  align-content: start;
  align-items: start;
}

.casting-collage-column-major {
  grid-template-rows: auto auto auto;
}

.casting-collage-column-minor {
  grid-template-rows: auto auto auto;
}

.casting-collage-banner,
.casting-collage-landscape,
.casting-collage-portrait,
.casting-collage-square {
  aspect-ratio: auto;
}

.casting-category-stack {
  display: grid;
  gap: 3.2rem;
}

.section-heading-wrap-casting h2 {
  max-width: 100%;
}

.casting-category-group {
  display: grid;
  gap: 1.3rem;
  padding: 2rem;
  border: 1px solid rgba(13, 13, 15, 0.08);
  border-radius: 2rem;
  background: rgba(233, 241, 251, 0.45);
  box-shadow: 0 24px 60px rgba(13, 13, 15, 0.05);
}

.casting-category-header {
  display: grid;
  gap: 0.3rem;
}

.casting-category-header h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.casting-category-text {
  max-width: 44rem;
  margin: 0;
  color: rgba(13, 13, 15, 0.74);
  line-height: 1.75;
}

.casting-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.05rem;
  align-items: stretch;
}

.casting-category-grid-tight {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 38rem;
}

.casting-category-grid-single {
  grid-template-columns: minmax(0, 1fr);
}

.casting-category-grid .product-gallery-card,
.casting-category-grid-single .product-gallery-card {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  border-radius: 1.55rem;
  border: 0;
  background: transparent;
  box-shadow: none;
  aspect-ratio: 1 / 1;
  padding: 0;
}

.casting-category-grid .product-gallery-card figure,
.casting-category-grid-single .product-gallery-card figure {
  border: 0;
  background: transparent;
  box-shadow: none;
  height: 100%;
}

.casting-category-grid img,
.casting-category-grid-single img {
  display: block;
  min-width: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.casting-category-group-single {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: stretch;
}

.casting-category-group-single .casting-category-header {
  align-content: center;
}

.casting-category-group-single .casting-category-grid-single {
  min-height: 24rem;
}

.casting-category-group-single .product-gallery-card {
  height: 100%;
  aspect-ratio: auto;
}

.casting-category-group-split {
  grid-template-columns: minmax(0, 1.12fr) minmax(18rem, 0.88fr);
  align-items: center;
  column-gap: 1.75rem;
}

.casting-category-group-split .casting-category-grid {
  grid-column: 1;
  align-self: stretch;
  min-width: 0;
}

.casting-category-group-split .casting-category-header {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: center;
  min-width: 0;
  height: auto;
  padding-left: 0.2rem;
}

.casting-category-group-split.casting-category-group-text-right {
  grid-template-columns: minmax(0, 1.15fr) minmax(19rem, 0.85fr);
  gap: 1.5rem;
}

.casting-category-group-split.casting-category-group-text-right .casting-category-grid {
  grid-column: 1;
  align-self: center;
}

.casting-category-group-split.casting-category-group-text-right .casting-category-header {
  grid-column: 2;
  justify-content: flex-start;
  align-self: center;
  max-width: 32rem;
  padding-left: 0.25rem;
}

.casting-category-group-split-three .casting-category-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.casting-category-group-split-compact .casting-category-grid-duo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: none;
}

.casting-category-group-split-compact .casting-category-grid-duo .product-gallery-card,
.casting-category-group-split-three .casting-category-grid-three .product-gallery-card {
  min-height: clamp(16rem, 22vw, 20rem);
}

.casting-category-group-split-compact .casting-category-grid-duo img,
.casting-category-group-split-three .casting-category-grid-three img {
  object-fit: cover;
}

.casting-category-group-split-three.casting-category-group-text-right {
  grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.78fr);
}

.casting-category-group-split-three.casting-category-group-text-right .casting-category-grid-three {
  gap: 0.9rem;
}

.casting-category-group-split-compact.casting-category-group-text-right {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.casting-category-group-split-compact.casting-category-group-text-right .casting-category-grid-duo {
  gap: 0.95rem;
}

.casting-category-group-split-compact.casting-category-group-text-right .casting-category-header,
.casting-category-group-split-three.casting-category-group-text-right .casting-category-header {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: auto;
}

.page-casting .casting-category-group-text-right .casting-category-header {
  justify-content: center;
  align-self: center;
}

.page-pneumatic .casting-category-group-text-right,
.page-oil .casting-category-group-text-right {
  align-items: start;
}

.page-pneumatic .casting-category-group-text-right .casting-category-header,
.page-oil .casting-category-group-text-right .casting-category-header {
  justify-content: flex-start;
  align-self: start;
  padding-top: 0.25rem;
}

.page-pneumatic .casting-category-header h3,
.page-oil .casting-category-header h3 {
  max-width: 11ch;
  font-size: clamp(1.95rem, 2.8vw, 3rem);
  line-height: 1;
}

.page-railway .product-hero {
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.9fr);
}

.page-railway .product-hero-copy h1 {
  max-width: 15ch;
  font-size: clamp(2.5rem, 4.1vw, 5rem);
  line-height: 0.94;
}

.page-railway .product-hero-visual {
  grid-template-columns: minmax(0, 1fr) minmax(12rem, 0.48fr);
  max-width: 42rem;
}

.product-hero-visual-oil .product-hero-main,
.product-hero-visual-oil .product-hero-side {
  min-height: 0;
  background: transparent;
  border-color: rgba(13, 13, 15, 0.06);
}

.product-hero-visual-oil .product-hero-main img,
.product-hero-visual-oil .product-hero-side img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.page-oil .product-hero-copy h1 {
  max-width: 18ch;
  font-size: clamp(1.85rem, 2.3vw, 2.7rem);
}

.page-oil .product-hero-visual-oil .product-hero-main img,
.page-oil .product-hero-visual-oil .product-hero-side img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1100px) {
  .site-header {
    position: sticky;
    top: 0;
    grid-template-columns: auto auto;
    justify-content: space-between;
    justify-items: stretch;
    gap: 0.9rem 1rem;
    padding: 0.85rem 1.25rem;
  }

  .logo-link {
    justify-self: start;
  }

  .site-header-home {
    position: relative;
    inset: auto;
    background: rgba(245, 240, 231, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(13, 13, 15, 0.05);
  }

  .nav-toggle {
    display: inline-flex;
    position: absolute;
    top: 50%;
    right: 1.25rem;
    transform: translateY(-50%);
    justify-self: end;
  }

  .nav-shell {
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 1.45rem;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    transition: max-height 220ms ease, opacity 160ms ease, padding 180ms ease, border-color 180ms ease;
  }

  .site-header.is-nav-open .nav-shell {
    max-height: 32rem;
    padding: 0.7rem;
    border: 1px solid var(--line);
    background: rgba(245, 240, 231, 0.98);
    box-shadow: 0 18px 42px rgba(13, 13, 15, 0.08);
    opacity: 1;
  }

  .main-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.28rem;
  }

  .nav-indicator {
    display: none;
  }

  .nav-link {
    justify-content: space-between;
    width: 100%;
    min-width: 0;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
  }

  .nav-link-active,
  .nav-link.is-indicator-target {
    background: var(--ink);
    color: var(--white);
  }

  .products-menu {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 0.3rem;
    padding: 0.45rem;
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, 0.55);
    box-shadow: none;
  }

  .products-menu a {
    min-height: 2.65rem;
    padding: 0 0.85rem;
    border-radius: 0.85rem;
  }

  .header-contact {
    grid-column: 1 / -1;
    display: none;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
    white-space: normal;
    row-gap: 0.5rem;
  }

  .site-header.is-nav-open .header-contact {
    display: flex;
  }

  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 1.5rem;
    padding: 2rem 2rem 3rem;
    overflow: hidden;
  }

  .hero-copy,
  .hero-left-stage,
  .hero-visual {
    position: relative;
    top: auto;
  }

  .hero-left-stage {
    min-height: auto;
  }

  .hero-copy {
    max-width: 44rem;
    padding-top: 0;
  }

  .hero-visual {
    height: auto;
    min-height: 0;
    order: -1;
    overflow: visible;
  }

  .tower-wrap {
    position: relative;
    inset: auto;
    display: grid;
    place-items: center;
    width: min(30rem, 78vw);
    max-width: min(30rem, 78vw);
    aspect-ratio: 1030 / 1200;
    margin: 0 auto;
    transform: none !important;
  }

  .tower-image {
    width: 100%;
    height: 100%;
    object-position: center top;
  }

  .hero-scroll-gallery {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.5rem;
    pointer-events: auto;
  }

  .scroll-card,
  .scroll-card-stringing,
  .scroll-card-oil,
  .scroll-card-ev,
  .scroll-card-hydraulic,
  .scroll-card-tower {
    position: relative;
    top: auto;
    left: auto;
    width: min(100%, 9.5rem);
    height: auto;
    aspect-ratio: 1 / 1;
    justify-self: center;
    opacity: 1 !important;
    transform: none !important;
  }

  .about-section {
    grid-template-columns: 1fr;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .inner-hero,
  .page-section {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .page-grid-about,
  .contact-grid,
  .facts-grid {
    grid-template-columns: 1fr;
  }

  .labs-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-hero,
  .product-intro-grid,
  .product-story-grid,
  .media-story-grid,
  .equipment-grid,
  .product-enquiry-section {
    grid-template-columns: 1fr;
  }

  .product-hero {
    padding: 3rem 2rem 2rem;
    align-items: start;
  }

  .product-hero-stringing .product-hero-copy h1,
  .product-hero-pneumatic .product-hero-copy h1,
  .product-hero-oil .product-hero-copy h1 {
    white-space: normal;
  }

  .page-railway .product-hero-copy h1 {
    white-space: normal;
  }

  .product-hero-casting {
    gap: 1.8rem;
    padding-top: 3rem;
  }

  .product-hero-visual-casting {
    grid-template-columns: 1fr;
  }

  .product-hero-visual-stringing,
  .product-hero-visual-pneumatic,
  .page-railway .product-hero-visual,
  .product-hero-visual-oil {
    grid-template-columns: 1fr;
  }

  .casting-collage-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .casting-category-group {
    padding: 1.6rem;
  }

  .casting-category-group-single {
    grid-template-columns: 1fr;
  }

  .casting-category-group-split {
    grid-template-columns: 1fr;
  }

  .casting-category-group-split .casting-category-grid,
  .casting-category-group-split .casting-category-header {
    grid-column: auto;
  }

  .casting-category-group-single .casting-category-grid-single {
    min-height: 20rem;
  }

  .product-family-grid,
  .product-rail-grid,
  .headboard-grid,
  .more-products-grid,
  .automatic-clamp-grid,
  .product-gallery-grid,
  .casting-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-family-featured,
  .headboard-item-wide,
  .media-story {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .product-family-grid .product-family-item:nth-child(6) {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .product-hero-visual {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    max-width: none;
  }

  .clients-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .founder-frame,
  .founder-caption {
    max-width: 34rem;
    justify-self: start;
  }

  .founder-frame {
    height: 44rem;
    min-height: 44rem;
  }

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

  .leadership-grid-secondary {
    grid-template-columns: 1fr;
  }

  .leadership-feature-row .leader-card-featured {
    grid-template-columns: 1fr;
  }

  .leadership-grid .leader-card-featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .leadership-feature-row .leader-card-featured .founder-frame {
    height: 24rem;
    min-height: 24rem;
  }

  .leadership-grid .leader-card .founder-frame,
  .leadership-grid .leader-card-featured .founder-frame {
    height: 25rem;
    min-height: 25rem;
  }

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

  .footer-column-intro {
    padding-top: 0;
  }
}

@media (max-width: 760px) {
  .site-header,
  .hero-section,
  .about-section,
  .site-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.9rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .nav-shell {
    width: 100%;
  }

  .main-nav {
    display: grid;
    justify-content: stretch;
  }

  .nav-link {
    min-width: 0;
    width: 100%;
  }

  .header-contact {
    font-size: 0.82rem;
    gap: 0.65rem 1rem;
  }

  .header-contact a {
    justify-content: center;
  }

  .products-menu {
    width: 100%;
    gap: 0.35rem;
    padding: 0.45rem;
  }

  .products-menu a {
    font-size: 1rem;
  }

  .hero-copy h1 {
    max-width: 10ch;
    font-size: clamp(2.75rem, 12vw, 4.5rem);
  }

  .hero-visual {
    height: auto;
  }

  .scroll-card,
  .scroll-card-stringing,
  .scroll-card-oil,
  .scroll-card-ev,
  .scroll-card-hydraulic,
  .scroll-card-tower {
    width: min(100%, 8.25rem);
    height: auto;
    opacity: 1;
  }

  .hero-scroll-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scroll-card-tower {
    grid-column: span 2;
  }

  .contact-grid,
  .page-grid-about,
  .product-hero,
  .product-intro-grid,
  .product-story-grid,
  .media-story-grid,
  .equipment-grid {
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-trust-strip {
    gap: 0.7rem;
  }

  .clients-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .labs-products-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .labs-products-grid {
    grid-template-columns: 1fr;
  }

  .labs-product-card {
    min-height: auto;
  }

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

  .product-contact-card {
    padding: 1.5rem;
  }

  .product-contact-actions {
    flex-direction: column;
  }

  .product-contact-button {
    width: 100%;
  }

  .product-family-grid,
  .product-rail-grid,
  .headboard-grid,
  .more-products-grid,
  .automatic-clamp-grid,
  .product-gallery-grid,
  .casting-category-grid,
  .casting-category-grid-tight,
  .casting-category-grid-single {
    grid-template-columns: 1fr;
  }

  .product-family-grid .product-family-item:nth-child(6) {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .product-hero-casting .product-hero-copy h1 {
    max-width: 7.8ch;
    font-size: clamp(3.1rem, 14vw, 4.6rem);
  }

  .page-railway .product-hero-copy h1,
  .product-hero-stringing .product-hero-copy h1,
  .product-hero-pneumatic .product-hero-copy h1,
  .product-hero-oil .product-hero-copy h1 {
    max-width: 100%;
  }

  .casting-category-group {
    padding: 1.35rem;
    border-radius: 1.5rem;
  }

  .casting-category-header h3 {
    font-size: 1.9rem;
  }

  .casting-collage-column {
    grid-template-columns: 1fr;
  }

  .casting-category-group-single .casting-category-grid-single {
    min-height: 16rem;
  }

  .product-hero-main {
    min-height: 22rem;
  }

  .product-hero-side,
  .media-story-visual,
  .equipment-feature figure,
  .more-product img,
  .more-product-feature img {
    min-height: 16rem;
  }

  .clients-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .founder-frame,
  .founder-caption {
    max-width: 100%;
    width: 100%;
  }

  .founder-frame {
    height: 36rem;
    min-height: 36rem;
  }

  .leadership-grid .leader-card {
    padding: 0.9rem;
    border-radius: 1.5rem;
  }

  .leadership-feature-row .leader-card-featured {
    gap: 1rem;
  }

  .leadership-grid .leader-card .founder-frame,
  .leadership-grid .leader-card-featured .founder-frame {
    height: 21rem;
    min-height: 21rem;
    border-radius: 1.5rem;
  }

  .leadership-feature-row .leader-card-featured .founder-frame {
    height: 21rem;
    min-height: 21rem;
  }
}
