:root {
  --text: #111111;
  --muted: #4f4f52;
  --light-bg: #f3f3f3;
  --dark: #04070d;
  --container: 870px;
  --brand-logo-height: 76px;
  --font-body: "DM Sans", "Segoe UI", sans-serif;
  --font-display: "Space Grotesk", "DM Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--light-bg);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.025em;
}

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

img,
svg {
  max-width: 100%;
}

.container {
  width: min(100% - 72px, var(--container));
  margin: 0 auto;
}

.site-header {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  overflow: visible;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    backdrop-filter 0.25s ease,
    -webkit-backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(243, 243, 243, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(17, 17, 17, 0.08);
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.06);
}

.page-home .site-header {
  position: fixed;
  left: 0;
  right: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
  box-shadow: none;
  transition:
    background 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    backdrop-filter 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    -webkit-backdrop-filter 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-home .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(17, 17, 17, 0.08);
  box-shadow: 0 10px 32px rgba(17, 17, 17, 0.08);
}

.page-home .site-header:not(.is-scrolled) .main-nav a {
  color: rgba(255, 255, 255, 0.92);
}

.page-home .site-header:not(.is-scrolled) .main-nav a:hover {
  color: #fff;
}

.page-home .site-header:not(.is-scrolled) .main-nav a.is-active::after {
  background: #fff;
}

.page-home .site-header:not(.is-scrolled) .header-actions .btn {
  color: rgba(255, 255, 255, 0.92);
}

.page-home .site-header:not(.is-scrolled) .menu-toggle {
  color: rgba(255, 255, 255, 0.92);
}

.page-home .site-header .main-nav.open a {
  color: #111;
}

.page-home .site-header .main-nav.open a:hover {
  color: #111;
  opacity: 0.65;
}

.page-home .site-header .main-nav.open a.is-active {
  background: rgba(17, 17, 17, 0.06);
  opacity: 1;
}

.page-home .site-header .main-nav.open a.is-active::after {
  display: none;
}

.brand-logo.brand-logo--light {
  display: none;
}

.page-home .site-header:not(.is-scrolled) .brand-logo--dark {
  display: none;
}

.page-home .site-header:not(.is-scrolled) .brand-logo--light {
  display: block;
}

.page-home .site-header.is-scrolled .brand-logo--light {
  display: none;
}

.site-header .container {
  width: min(100% - 56px, 1460px);
}

.nav-row {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: visible;
}

.brand img,
.brand-logo {
  display: block;
  height: var(--brand-logo-height);
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: left center;
  transition: opacity 0.35s ease;
}

.brand:hover img,
.brand:hover .brand-logo {
  opacity: 0.85;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  align-self: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
  line-height: 0;
  height: var(--brand-logo-height);
}

.page-home .brand {
  width: calc(var(--brand-logo-height) * 68 / 88);
}

.page-home .brand .brand-logo {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.main-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.main-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #111;
  display: inline-flex;
  align-items: center;
  min-height: auto;
  padding: 0;
  border-radius: 0;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.main-nav a:hover {
  color: #111;
  background: transparent;
  opacity: 0.65;
}

.main-nav a:active {
  opacity: 0.65;
}

.main-nav a.is-active {
  opacity: 1;
}

.main-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: #111;
}

.header-actions .btn {
  --btn-border: transparent;
  --btn-fill: transparent;
  min-height: auto;
  min-width: auto;
  padding: 0;
  clip-path: none;
  -webkit-clip-path: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #111;
}

.header-actions .btn::before {
  display: none;
}

.header-actions .btn::after {
  display: none;
}

.header-actions .btn:hover {
  --btn-fill: transparent;
  opacity: 0.65;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  position: relative;
  z-index: 2;
}

.icon-btn {
  border: 0;
  background: transparent;
  padding: 0;
  width: 40px;
  height: 40px;
  color: #2d323a;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn {
  --btn-border-width: 1.5px;
  --btn-border: #111;
  --btn-fill: transparent;
  --btn-ink: #111;
  --btn-rail: currentColor;
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  min-width: 168px;
  padding: 0 56px 0 50px;
  border: var(--btn-border-width) solid var(--btn-border);
  border-radius: 2px;
  background-color: var(--btn-fill);
  color: var(--btn-ink);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: inset 0 -3px 0 color-mix(in srgb, var(--btn-border) 18%, transparent);
  box-sizing: border-box;
  overflow: hidden;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 17px;
  z-index: 1;
  width: 18px;
  height: 26px;
  border-top: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  opacity: 0.74;
  transform: translateY(-50%);
  background:
    linear-gradient(90deg, currentColor 0 2px, transparent 2px 8px, currentColor 8px 10px, transparent 10px 16px, currentColor 16px 18px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.btn::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 13px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-left: 1.5px solid color-mix(in srgb, currentColor 34%, transparent);
  font-size: 1.05em;
  font-weight: 600;
  line-height: 1;
  transform: translateY(-50%);
  pointer-events: none;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease;
}

.btn:hover::before {
  opacity: 1;
  transform: translateY(-50%) scaleY(1.08);
}

.btn:hover::after,
.btn-dark:hover::after,
.btn-light:hover::after,
.btn-outline:hover::after,
.btn-outline-dark:hover::after,
.btn-dark:active::after,
.btn-light:active::after,
.btn-outline:active::after,
.btn-outline-dark:active::after {
  border-left-color: color-mix(in srgb, currentColor 54%, transparent);
  transform: translate(4px, -50%);
}

.btn:hover {
  box-shadow:
    inset 0 -5px 0 color-mix(in srgb, var(--btn-border) 22%, transparent),
    0 10px 24px rgba(17, 17, 17, 0.1);
}

.btn.small {
  min-height: 46px;
  min-width: auto;
  padding: 0 44px 0 38px;
  font-size: 13px;
}

.btn.small::before {
  left: 13px;
  width: 15px;
  height: 22px;
  background:
    linear-gradient(90deg, currentColor 0 2px, transparent 2px 6.5px, currentColor 6.5px 8.5px, transparent 8.5px 13px, currentColor 13px 15px);
}

.btn.small::after {
  right: 9px;
  width: 24px;
  height: 24px;
}

.btn-no-arrow {
  padding-right: 24px;
}

.btn-no-arrow::after {
  content: none;
  transform: none;
}

.btn-no-arrow:hover::after {
  transform: none;
}

.btn-dark {
  --btn-border: #111;
  --btn-fill: #111;
  --btn-ink: #fff;
  color: #fff;
}

.btn-dark:hover {
  --btn-fill: #1a2433;
  --btn-border: #1a2433;
}

.btn-dark:active {
  --btn-fill: #0a0d12;
  --btn-border: #0a0d12;
}

.btn-light {
  --btn-border: #fff;
  --btn-fill: #fff;
  --btn-ink: #111;
  color: #111;
}

.btn-light:hover {
  --btn-fill: #f2f2f2;
  --btn-border: #f2f2f2;
}

.btn-light:active {
  --btn-fill: #e8e8e8;
  --btn-border: #e8e8e8;
}

.btn-outline {
  --btn-border: #fff;
  --btn-fill: transparent;
  --btn-ink: #fff;
  color: #fff;
  border-color: var(--btn-border);
}

.btn-outline::after {
  border-left-color: color-mix(in srgb, currentColor 34%, transparent);
}

.btn-outline:hover {
  --btn-fill: rgba(255, 255, 255, 0.1);
}

.btn-outline:active {
  --btn-fill: rgba(255, 255, 255, 0.16);
}

.btn-outline-dark {
  --btn-border: #111;
  --btn-fill: transparent;
  --btn-ink: #111;
  color: #111;
  border-color: var(--btn-border);
}

.btn-outline-dark::after {
  border-left-color: color-mix(in srgb, currentColor 34%, transparent);
}

.btn-outline-dark:hover {
  --btn-fill: rgba(17, 17, 17, 0.06);
}

.btn-outline-dark:active {
  --btn-fill: rgba(17, 17, 17, 0.1);
}

.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
}

button.btn {
  appearance: none;
  -webkit-appearance: none;
}

body.quote-modal-open {
  overflow: hidden;
}

.quote-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 6, 12, 0.55);
  z-index: 2100;
  display: grid;
  place-items: center;
  padding: 20px;
}

.quote-modal-overlay[hidden] {
  display: none !important;
}

.quote-modal {
  width: min(100%, 540px);
  background: #ffffff;
  border: 1px solid #e5e6e8;
  padding: 30px 28px 24px;
  position: relative;
}

.quote-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 0;
  background: transparent;
  color: #363941;
  font-size: 28px;
  line-height: 1;
  width: 34px;
  height: 34px;
  cursor: pointer;
}

.quote-modal h2 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 36px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.quote-modal p {
  margin: 10px 0 0;
  color: #53565d;
  font-size: 14px;
  line-height: 1.55;
}

.quote-modal-form {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.quote-modal-form label {
  display: grid;
  gap: 6px;
  color: #262b34;
  font-size: 13px;
  font-weight: 500;
}

.quote-modal-form input,
.quote-modal-form textarea {
  width: 100%;
  border: 1px solid #d9dce2;
  background: #fbfbfc;
  color: #1f232b;
  font: inherit;
  font-size: 14px;
  padding: 10px 12px;
  outline: none;
}

.quote-modal-form input:focus,
.quote-modal-form textarea:focus {
  border-color: #222834;
}

.quote-modal-form textarea {
  resize: vertical;
  min-height: 104px;
}

.intro .btn {
  margin-top: 32px;
}

.quote-modal-feedback,
.contact-form-feedback {
  margin: 8px 0 0;
  min-height: 20px;
  font-size: 13px;
  line-height: 1.5;
  color: #4f5156;
}

.quote-modal-feedback.is-success,
.contact-form-feedback.is-success {
  color: #0f7a3a;
}

.quote-modal-feedback.is-error,
.contact-form-feedback.is-error {
  color: #b42318;
}

.page-home .hero {
  min-height: clamp(580px, 100vh, 920px);
}

.hero {
  --hero-parallax-y: 0px;
  --hero-mouse-x: 0px;
  --hero-mouse-y: 0px;
  --hero-float-x: 0px;
  --hero-float-y: 0px;
  position: relative;
  min-height: clamp(580px, 92vh, 920px);
  overflow: hidden;
  isolation: isolate;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.55;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  transition:
    opacity 1.35s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 1.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide.is-leaving {
  opacity: 0;
  z-index: 0;
  transition-duration: 1.1s;
}

.hero-slide-media {
  position: absolute;
  inset: -12% 0;
  will-change: transform;
  transform: translate3d(var(--hero-mouse-x), calc(var(--hero-parallax-y) + var(--hero-mouse-y)), 0);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.14);
  filter: saturate(1.06) contrast(1.03);
  transition: transform 1.6s cubic-bezier(0.22, 1, 0.36, 1), filter 1.2s ease;
}

.hero-slide.is-active .hero-slide-media img {
  animation: heroKenBurnsIn 16s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-slide[data-zoom="out"].is-active .hero-slide-media img {
  animation-name: heroKenBurnsOut;
}

.hero-slide.is-leaving .hero-slide-media img {
  transform: scale(1.22);
  filter: saturate(0.95) brightness(0.88);
  transition: transform 1.1s cubic-bezier(0.4, 0, 0.2, 1), filter 1.1s ease;
}

@keyframes heroKenBurnsIn {
  from {
    transform: scale(1.14) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.24) translate3d(-1.4%, -1.6%, 0);
  }
}

@keyframes heroKenBurnsOut {
  from {
    transform: scale(1.24) translate3d(-1%, -1%, 0);
  }

  to {
    transform: scale(1.12) translate3d(1.2%, 1.4%, 0);
  }
}

.hero .container {
  width: min(100% - 56px, 1460px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(4, 7, 13, 0.82) 0%, rgba(4, 7, 13, 0.52) 40%, rgba(4, 7, 13, 0.2) 68%, rgba(4, 7, 13, 0.1) 100%),
    linear-gradient(180deg, rgba(4, 7, 13, 0.18) 0%, transparent 30%, rgba(4, 7, 13, 0.42) 100%),
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(13, 148, 136, 0.08), transparent 70%);
  z-index: 2;
  pointer-events: none;
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: overlay;
}

.hero-floats {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-float {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transform: translate3d(var(--hero-float-x), var(--hero-float-y), 0);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-float--1 {
  top: 18%;
  right: 12%;
  width: clamp(64px, 8vw, 110px);
  height: clamp(64px, 8vw, 110px);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  animation: heroFloatDrift 9s ease-in-out infinite;
}

.hero-float--2 {
  bottom: 28%;
  right: 22%;
  width: clamp(28px, 3vw, 44px);
  height: clamp(28px, 3vw, 44px);
  border-radius: 4px;
  transform: rotate(45deg) translate3d(var(--hero-float-x), var(--hero-float-y), 0);
  background: rgba(255, 255, 255, 0.04);
  animation: heroFloatDrift 7s ease-in-out 1.2s infinite reverse;
}

.hero-float--3 {
  top: 32%;
  right: 8%;
  width: clamp(18px, 2vw, 28px);
  height: clamp(18px, 2vw, 28px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  animation: heroFloatDrift 11s ease-in-out 0.6s infinite;
}

.hero-float--4 {
  bottom: 38%;
  right: 6%;
  width: clamp(120px, 14vw, 180px);
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  animation: heroFloatLine 8s ease-in-out infinite;
}

@keyframes heroFloatDrift {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -18px;
  }
}

@keyframes heroFloatLine {
  0%,
  100% {
    opacity: 0.35;
    translate: 0 0;
  }

  50% {
    opacity: 0.85;
    translate: -12px -8px;
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  padding-top: clamp(148px, 24vh, 260px);
  padding-left: clamp(24px, 8vw, 144px);
  padding-bottom: clamp(120px, 16vh, 168px);
  max-width: 820px;
  margin-left: 0;
  margin-right: auto;
  transform: translate3d(calc(var(--hero-mouse-x) * 0.15), calc(var(--hero-mouse-y) * 0.2), 0);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-copy-track {
  position: relative;
  min-height: clamp(280px, 38vh, 420px);
}

.hero-copy {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 32px, 0);
  transition:
    opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.65s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.65s;
}

.hero-copy.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  overflow: hidden;
}

.hero-eyebrow-text {
  display: inline-block;
}

.hero-eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
  transform-origin: left center;
  transform: scaleX(0);
  flex-shrink: 0;
}

.hero.is-ready .hero-copy.is-active .hero-eyebrow::before,
.hero-copy.is-entering .hero-eyebrow::before {
  animation: heroLineReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.8vw, 4.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.96;
}

.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 100%, 0);
  clip-path: inset(0 0 100% 0);
}

.hero-accent .hero-word {
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.hero-accent {
  display: inline-block;
  background: linear-gradient(120deg, #fff 0%, rgba(255, 255, 255, 0.72) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-desc {
  margin: 22px 0 30px;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.58;
  opacity: 0;
  transform: translate3d(0, 20px, 0);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-cta .btn {
  min-height: 56px;
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease;
}

.hero-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.26);
}

.hero-cta .btn:active {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.hero-cta .btn-light {
  color: #111;
}

.hero.is-ready .hero-copy.is-active .hero-eyebrow-text,
.hero-copy.is-entering .hero-eyebrow-text {
  animation: heroTextReveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.06s both;
}

.hero.is-ready .hero-copy.is-active .hero-word,
.hero-copy.is-entering .hero-word {
  animation: heroWordReveal 0.78s cubic-bezier(0.22, 1, 0.36, 1) calc(var(--word-i, 0) * 0.055s + 0.12s) both;
}

.hero.is-ready .hero-copy.is-active .hero-desc,
.hero-copy.is-entering .hero-desc {
  animation: heroTextReveal 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.48s both;
}

.hero.is-ready .hero-copy.is-active .hero-cta .btn,
.hero-copy.is-entering .hero-cta .btn {
  animation: heroBtnReveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero.is-ready .hero-copy.is-active .hero-cta .btn:nth-child(1),
.hero-copy.is-entering .hero-cta .btn:nth-child(1) {
  animation-delay: 0.62s;
}

.hero.is-ready .hero-copy.is-active .hero-cta .btn:nth-child(2),
.hero-copy.is-entering .hero-cta .btn:nth-child(2) {
  animation-delay: 0.74s;
}

@keyframes heroTextReveal {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroWordReveal {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
    clip-path: inset(0 0 100% 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes heroBtnReveal {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroLineReveal {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.hero-controls {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: clamp(24px, 4vh, 42px);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-left: clamp(24px, 8vw, 144px);
  padding-right: clamp(24px, 4vw, 56px);
}

.hero-slider-dots {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.hero-slider-dots button {
  position: relative;
  width: clamp(36px, 4vw, 52px);
  height: 3px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero-slider-dots button:hover {
  background: rgba(255, 255, 255, 0.42);
  transform: scaleY(1.35);
}

.hero-slider-dots button::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: #fff;
  border-radius: inherit;
}

.hero-slider-dots button.is-active::after {
  animation: heroDotProgress var(--hero-progress-duration, 6000ms) linear forwards;
}

.hero-slider-dots button.is-active.is-paused::after {
  animation-play-state: paused;
}

@keyframes heroDotProgress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.hero-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.hero-nav-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
}

.hero-nav-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-nav-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.68);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.hero-nav-prev:hover svg {
  transform: translateX(-2px);
}

.hero-nav-next:hover svg {
  transform: translateX(2px);
}

.hero-nav-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.hero-counter {
  margin: 0;
  min-width: 72px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.88);
}

.hero-counter-current {
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.hero-counter.is-changing .hero-counter-current {
  transform: translateY(-6px);
  opacity: 0;
}

.hero-counter-sep {
  margin: 0 4px;
  opacity: 0.45;
}

.hero-counter-total {
  opacity: 0.55;
}

.hero-scroll-hint {
  position: absolute;
  right: clamp(18px, 3vw, 42px);
  bottom: clamp(24px, 4vh, 42px);
  z-index: 3;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0;
  cursor: pointer;
  transition: color 0.25s ease, transform 0.3s ease;
}

.hero-scroll-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-scroll-line {
  width: 1px;
  height: 54px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  animation: heroScrollPulse 2.2s ease-in-out infinite;
}

@keyframes heroScrollPulse {
  0% {
    transform: translateY(-100%);
  }

  55% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(100%);
  }
}

.hero-scroll-hint:hover {
  color: #fff;
  transform: translateY(2px);
}

.intro {
  padding: 76px 0 72px;
  background: #efeff0;
}

.intro-inner {
  text-align: center;
  max-width: 760px;
}

.intro h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.intro p {
  margin: 0 auto;
  max-width: 720px;
  color: #5a5b60;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.6;
}

.intro .inline-link {
  margin-top: 30px;
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 500;
}

/* Our products — Urban Group style */
.our-products {
  background: #efeff0;
  padding: 72px 0 80px;
}

.our-products-page {
  padding: 72px 0 80px;
  background: #fff;
  border-bottom: 1px solid #e4e4e6;
}

.our-products-page .container.our-products-inner {
  width: min(100% - 72px, 1360px);
  max-width: 1360px;
}

.our-products-page .our-products-header {
  margin-bottom: 56px;
}

.our-products-page .our-products-header h2 {
  font-family: var(--font-display);
  font-weight: 600;
}

.our-products-page .our-product-tile {
  background: #fafbfc;
  border: 1px solid #e8eaed;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.our-products-page .our-product-tile:hover {
  transform: translateY(-6px);
  border-color: #d0d3d8;
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.08);
}

.our-products-page .our-product-tile-link {
  padding: 14px 14px 18px;
}

.our-products-page .our-product-tile-media {
  position: relative;
  margin-bottom: 16px;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #ddd;
}

.our-products-page .our-product-tile-media img {
  transform: scale(1.04);
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.our-products-page .our-product-tile:hover .our-product-tile-media img,
.our-products-page .our-product-tile:focus-within .our-product-tile-media img {
  transform: scale(1.12);
}

.our-products-page .our-product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 12px;
  background: rgba(17, 17, 17, 0.72);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.our-products-page .our-product-tagline {
  margin: 0 0 14px;
  color: #5c6570;
  font-size: 14px;
  line-height: 1.55;
}

.our-products-page .our-product-tile-cta {
  font-weight: 600;
}

.our-products-inner {
  max-width: 1360px;
}

.our-products-home .container.our-products-inner {
  width: min(100% - 56px, 1460px);
  max-width: 1460px;
}

.our-products-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}

.our-products-header h2 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.2vw, 3.5rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.our-products-header p {
  margin: 0;
  color: #5a5b60;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
}

.our-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.our-product-tile-link {
  display: block;
  color: inherit;
}

.our-product-tile-media {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #ddd;
  margin-bottom: 18px;
}

.our-product-tile-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.04);
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.our-product-tile:hover .our-product-tile-media img,
.our-product-tile:focus-within .our-product-tile-media img {
  transform: scale(1.12);
}

.our-product-tile-body h3 {
  margin: 0 0 12px;
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.our-product-tile-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #212121;
  transition: gap 0.3s ease;
}

.our-product-tile:hover .our-product-tile-cta {
  gap: 12px;
}

.product-position {
  margin: 0 0 10px;
  color: #0d9488;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Homepage products — enhanced showcase */
.our-products-home {
  position: relative;
  padding: 88px 0 96px;
  background: linear-gradient(180deg, #fafafa 0%, #efeff0 45%, #f3f5f7 100%);
  overflow: hidden;
}

.our-products-home::before,
.our-products-home::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.our-products-home::before {
  width: 520px;
  height: 520px;
  top: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.08), transparent 68%);
}

.our-products-home::after {
  width: 420px;
  height: 420px;
  bottom: -140px;
  left: -100px;
  background: radial-gradient(circle, rgba(17, 17, 17, 0.04), transparent 70%);
}

.our-products-home .our-products-inner {
  position: relative;
  z-index: 1;
}

.our-products-eyebrow {
  margin: 0 0 14px;
  color: #0d9488;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.our-products-home .our-products-header {
  margin-bottom: 56px;
}

.our-products-home .our-products-header h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #0d9488, #0891b2);
}

.our-products-home .our-products-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 3.5vw, 48px);
}

.our-products-home .our-product-tile-link {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(0, 0.62fr);
  min-height: 440px;
}

.our-products-home .our-product-tile {
  position: relative;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: 0 8px 32px rgba(17, 17, 17, 0.06);
  overflow: hidden;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease;
}

.our-products-home .our-product-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  box-shadow: inset 0 0 0 1px rgba(13, 148, 136, 0.35);
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.our-products-home .our-product-tile:hover::after {
  opacity: 1;
}

.our-products-home .our-product-tile:hover {
  transform: translateY(-10px);
  border-color: rgba(13, 148, 136, 0.18);
  box-shadow: 0 24px 56px rgba(17, 17, 17, 0.12);
}

.our-products-home .our-product-tile-featured {
  border-color: rgba(13, 148, 136, 0.14);
  box-shadow: 0 12px 40px rgba(13, 148, 136, 0.1);
}

.our-products-home .our-product-tile-media {
  position: relative;
  margin-bottom: 0;
  aspect-ratio: auto;
  min-height: 440px;
  height: 100%;
  overflow: hidden;
  isolation: isolate;
}

.our-products-home .our-product-tile-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.32) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.our-products-home .our-product-tile:hover .our-product-tile-media::before {
  transform: translateX(120%);
}

.our-products-home .our-product-tile-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.06);
  transition: transform 1.05s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.our-products-home .our-product-tile:hover .our-product-tile-media img,
.our-products-home .our-product-tile:focus-within .our-product-tile-media img {
  transform: scale(1.2);
}

.our-product-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(4, 7, 13, 0.08) 0%, transparent 28%),
    linear-gradient(180deg, transparent 35%, rgba(4, 7, 13, 0.62) 100%);
  opacity: 0.62;
  transition: opacity 0.45s ease;
}

.our-products-home .our-product-tile:hover .our-product-overlay,
.our-products-home .our-product-tile:focus-within .our-product-overlay {
  opacity: 0.82;
}

.our-product-index {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 52px;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(4, 7, 13, 0.88);
  color: #fff;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.our-products-home .our-product-tile:hover .our-product-index {
  transform: scale(1.06);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.our-products-home .our-product-tile-featured .our-product-index {
  background: linear-gradient(135deg, #0d9488, #0891b2);
  border-color: rgba(255, 255, 255, 0.28);
}

.our-product-tag {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 4;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  transform: translateY(6px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.our-product-tag-accent {
  background: linear-gradient(135deg, #0d9488, #0891b2);
  color: #fff;
}

.our-products-home .our-product-tile:hover .our-product-tag,
.our-products-home .our-product-tile.is-visible .our-product-tag {
  transform: translateY(0);
  opacity: 1;
}

.our-products-home .our-product-tile-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 36px 32px 36px 28px;
}

.our-products-home .our-product-tile-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 1.75vw, 2rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 16px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

.our-product-tagline {
  margin: 0 0 24px;
  color: #5f636a;
  font-size: 16px;
  line-height: 1.65;
}

.our-products-home .our-product-tile-cta {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #111;
}

.our-product-arrow {
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.our-products-home .our-product-tile:hover .our-product-arrow {
  transform: translateX(4px);
}

.our-products-footer {
  margin-top: 48px;
  text-align: center;
}

.custom-solution-inner .btn {
  margin-top: 26px;
}

.ready-section-inner .btn {
  flex-shrink: 0;
}

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.reveal-left {
  transform: translate(-48px, 32px);
}

.reveal-right {
  transform: translate(48px, 32px);
}

.reveal-left.is-visible,
.reveal-right.is-visible {
  transform: translate(0, 0);
}

.our-products-home .our-product-tile.reveal-left,
.our-products-home .our-product-tile.reveal-right {
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-slide,
  .hero-slide-media,
  .hero-slide-media img,
  .hero-copy,
  .hero-eyebrow,
  .hero-eyebrow::before,
  .hero-eyebrow-text,
  .hero-word,
  .hero-desc,
  .hero-cta .btn,
  .hero-counter-current,
  .hero-scroll-line::after,
  .hero-float {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    clip-path: none !important;
    opacity: 1 !important;
  }

  .hero-particles {
    display: none;
  }

  .hero-floats {
    display: none;
  }

  .hero-slide-media img {
    transform: scale(1.05);
  }

  .hero-slider-dots button.is-active::after {
    width: 100%;
    animation: none;
  }

  .our-product-tile-media img {
    transition: none;
    transform: none;
  }

  .our-products-home .our-product-tile-media img,
  .our-products-page .our-product-tile-media img {
    transform: none;
  }

  .reveal-left,
  .reveal-right {
    transform: none;
  }

  .our-products-home .our-product-tile:hover {
    transform: none;
  }

  .our-products-home .our-product-tag {
    opacity: 1;
    transform: translateY(0);
  }
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  color: #212121;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.inline-link.strong {
  margin-top: 18px;
  font-weight: 600;
}

.inline-link span {
  font-size: 14px;
}

.solutions {
  padding: 62px 0 8px;
}

.page-hero {
  background: linear-gradient(180deg, #f7f7f8 0%, #efeff0 100%);
  padding: 120px 0 72px;
  border-bottom: 1px solid #e4e4e6;
}

.page-hero-inner {
  width: min(100% - 72px, 1200px);
}

.page-hero-eyebrow {
  margin: 0 0 12px;
  color: #0d9488;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-hero h1 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.page-hero p {
  margin: 0;
  max-width: 620px;
  color: #5f6063;
  font-size: clamp(15px, 1.22vw, 20px);
  line-height: 1.5;
}

.products-listing {
  background: linear-gradient(180deg, #efeff0 0%, #f5f5f6 100%);
  padding: 72px 0 96px;
}

.our-products + .products-listing {
  padding-top: 0;
}

.products-listing .products-grid {
  gap: 40px;
}

.product-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(28px, 4.2vw, 48px);
  background: #fff;
  border: 1px solid #e7e8eb;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 10px 36px rgba(17, 17, 17, 0.05);
  scroll-margin-top: 100px;
}

.product-media img {
  width: 100%;
  height: clamp(260px, 24vw, 360px);
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

.product-details h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.product-highlights {
  background: #090d14;
  padding: 58px 0 54px;
}

.product-highlights-grid {
  width: min(100% - 72px, 1200px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 2.4vw, 46px);
}

.product-highlight-item svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: #8f96a3;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-highlight-item h2 {
  margin: 20px 0 12px;
  color: #f2f4f8;
  font-size: clamp(26px, 1.75vw, 32px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.product-highlight-item p {
  margin: 0;
  max-width: 350px;
  color: #8a919f;
  font-size: clamp(14px, 0.95vw, 15px);
  line-height: 1.65;
}

.custom-solution-cta {
  background: #fff;
  border-top: 1px solid #e4e4e6;
  padding: 80px 0 88px;
}

.custom-solution-inner {
  width: min(100% - 72px, 1200px);
  display: grid;
  place-items: center;
  text-align: center;
  gap: 8px;
}

.custom-solution-inner h2 {
  margin: 0;
  font-family: var(--font-display);
  color: #15171d;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

/* Products page — clean surfaces + premium zoom */
.page-products {
  background: #f3f3f3;
}

.page-products .products-hero {
  min-height: clamp(460px, 58vh, 620px);
  padding: 140px 0 clamp(56px, 7vw, 80px);
  margin-bottom: 0;
}

.page-products .our-products-page {
  background: transparent;
  border-bottom: 0;
  padding: clamp(56px, 7vw, 88px) 0 clamp(64px, 7vw, 80px);
}

.page-products .our-products-page .our-products-header {
  margin-bottom: 48px;
  padding-top: 0;
}

.page-products .our-products-page .container.our-products-inner {
  width: min(100% - 56px, 1460px);
  max-width: 1460px;
}

.page-products .our-products-page .our-products-header h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #0d9488, #0891b2);
}

.page-products .our-products-grid {
  gap: clamp(20px, 2.2vw, 28px);
}

.page-products .our-products-page .our-product-tile {
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(17, 17, 17, 0.04);
}

.page-products .our-products-page .our-product-tile:hover,
.page-products .our-products-page .our-product-tile:focus-within {
  transform: translateY(-10px);
  border-color: rgba(13, 148, 136, 0.2);
  box-shadow: 0 22px 52px rgba(17, 17, 17, 0.11);
}

.page-products .our-products-page .our-product-tile-link {
  padding: 0;
}

.page-products .our-products-page .our-product-tile-media {
  margin-bottom: 0;
  aspect-ratio: 3 / 4;
  border-radius: 0;
  background: #e8e9eb;
  isolation: isolate;
}

.page-products .our-products-page .our-product-tile-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.34) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.page-products .our-products-page .our-product-tile-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 40%, rgba(4, 7, 13, 0.45) 100%);
  opacity: 0.45;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.page-products .our-products-page .our-product-tile:hover .our-product-tile-media::before,
.page-products .our-products-page .our-product-tile:focus-within .our-product-tile-media::before {
  transform: translateX(120%);
}

.page-products .our-products-page .our-product-tile:hover .our-product-tile-media::after,
.page-products .our-products-page .our-product-tile:focus-within .our-product-tile-media::after {
  opacity: 0.72;
}

.page-products .our-products-page .our-product-tile-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.06);
  transition: transform 1.05s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.page-products .our-products-page .our-product-tile:hover .our-product-tile-media img,
.page-products .our-products-page .our-product-tile:focus-within .our-product-tile-media img {
  transform: scale(1.2);
}

.page-products .our-products-page .our-product-tag {
  top: 16px;
  left: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  backdrop-filter: blur(8px);
  z-index: 4;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.page-products .our-products-page .our-product-tile:hover .our-product-tag,
.page-products .our-products-page .our-product-tile:focus-within .our-product-tag {
  transform: translateY(-2px);
}

.page-products .our-products-page .our-product-tile-body {
  padding: 22px 24px 26px;
}

.page-products .our-products-page .our-product-tile-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.2vw, 1.35rem);
  font-weight: 600;
  margin-bottom: 10px;
}

.page-products .products-listing {
  background: transparent;
  padding: clamp(40px, 6vw, 64px) 0 88px;
}

.page-products .our-products + .products-listing {
  padding-top: clamp(40px, 6vw, 64px);
  border-top: 1px solid rgba(17, 17, 17, 0.07);
}

.page-products .products-listing .products-grid {
  gap: 0;
}

.page-products .product-row {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 0;
  box-shadow: none;
  padding: clamp(48px, 6vw, 72px) 0;
  scroll-margin-top: 110px;
  transition: border-color 0.35s ease;
}

.page-products .product-row:last-child {
  border-bottom: 0;
}

.page-products .product-media {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  isolation: isolate;
}

.page-products .product-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.28) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.page-products .product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(4, 7, 13, 0.04) 0%, transparent 35%, rgba(4, 7, 13, 0.18) 100%);
  opacity: 0.55;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.page-products .product-row:hover .product-media::before,
.page-products .product-row:focus-within .product-media::before {
  transform: translateX(120%);
}

.page-products .product-row:hover .product-media::after,
.page-products .product-row:focus-within .product-media::after {
  opacity: 0.82;
}

.page-products .product-media img {
  width: 100%;
  height: clamp(300px, 28vw, 440px);
  object-fit: cover;
  object-position: center 42%;
  border-radius: 0;
  transform: scale(1.06);
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.page-products .product-row:hover .product-media img,
.page-products .product-row:focus-within .product-media img {
  transform: scale(1.18);
}

.page-products .product-media {
  overflow: visible;
  border-radius: 0;
}

.page-products .product-media::before,
.page-products .product-media::after {
  display: none;
}

.product-gallery {
  display: grid;
  gap: 14px;
}

.product-gallery-stage {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.page-products .product-gallery-image {
  width: 100%;
  height: clamp(300px, 28vw, 440px);
  display: block;
  object-fit: cover;
  object-position: center 42%;
  border-radius: 0;
  transform: none;
  transition: opacity 0.22s ease;
}

.product-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: clamp(44px, 4.2vw, 58px);
  height: clamp(44px, 4.2vw, 58px);
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  background: rgba(9, 13, 20, 0.42);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.product-gallery-arrow span {
  position: absolute;
  top: 50%;
  width: clamp(13px, 1.2vw, 16px);
  height: clamp(13px, 1.2vw, 16px);
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  opacity: 0.95;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.product-gallery-arrow-prev {
  left: clamp(12px, 1.5vw, 20px);
}

.product-gallery-arrow-prev span {
  left: 52%;
  transform: translateY(-50%) rotate(-45deg);
}

.product-gallery-arrow-next {
  right: clamp(12px, 1.5vw, 20px);
}

.product-gallery-arrow-next span {
  right: 52%;
  transform: translateY(-50%) rotate(135deg);
}

.product-gallery-arrow:hover span,
.product-gallery-arrow:focus-visible span {
  opacity: 1;
}

.product-gallery-arrow:hover,
.product-gallery-arrow:focus-visible {
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(9, 13, 20, 0.68);
}

.product-gallery-arrow-prev:hover span,
.product-gallery-arrow-prev:focus-visible span {
  transform: translate(-2px, -50%) rotate(-45deg);
}

.product-gallery-arrow-next:hover span,
.product-gallery-arrow-next:focus-visible span {
  transform: translate(2px, -50%) rotate(135deg);
}

.product-gallery-arrow:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.page-products .product-row:hover .product-gallery-image,
.page-products .product-row:focus-within .product-gallery-image {
  transform: none;
}

.product-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}

.product-thumb {
  flex: 0 0 clamp(92px, 8vw, 128px);
  height: clamp(58px, 5.2vw, 82px);
  min-width: 0;
  padding: 0;
  border: 2px solid rgba(17, 17, 17, 0.1);
  border-radius: 0;
  background: #e4e4df;
  cursor: pointer;
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

.product-thumb img,
.page-products .product-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  opacity: 0.72;
  transform: none;
  transition: opacity 0.2s ease;
}

.product-thumb:hover,
.product-thumb:focus-visible {
  border-color: rgba(17, 17, 17, 0.5);
}

.product-thumb.is-active {
  border-color: #111;
}

.product-thumb.is-active img,
.product-thumb:hover img,
.product-thumb:focus-visible img {
  opacity: 1;
}

.page-products .product-details h2 {
  font-size: clamp(1.85rem, 2.8vw, 2.75rem);
}

.page-products .custom-solution-cta {
  background: transparent;
  border-top: 1px solid rgba(17, 17, 17, 0.07);
  padding: 72px 0 80px;
}

.page-products .ready-section {
  background: #fff;
  border-top: 1px solid rgba(17, 17, 17, 0.07);
}

.page-products .ready-section::before {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .page-products .our-products-page .our-product-tile-media img,
  .page-products .product-media img {
    transform: none;
    transition: none;
  }

  .page-products .our-products-page .our-product-tile:hover,
  .page-products .our-products-page .our-product-tile:focus-within {
    transform: none;
  }
}

/* About page — premium pool fencing showcase */
.page-about {
  background: #f3f3f3;
}

.page-about .site-header.is-scrolled {
  background: rgba(243, 243, 243, 0.94);
}

.about-section-eyebrow {
  margin: 0 0 12px;
  color: #0d9488;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-section-header {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.about-section-header h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3.4vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.about-section-header p {
  margin: 0 auto;
  max-width: 620px;
  color: #5f6063;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.55;
}

.zoom-media {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  isolation: isolate;
}

.zoom-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.28) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.zoom-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(4, 7, 13, 0.04) 0%, transparent 35%, rgba(4, 7, 13, 0.22) 100%);
  opacity: 0.5;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.zoom-media:hover::before,
.zoom-media:focus-within::before {
  transform: translateX(120%);
}

.zoom-media:hover::after,
.zoom-media:focus-within::after {
  opacity: 0.78;
}

.zoom-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.zoom-media:hover img,
.zoom-media:focus-within img {
  transform: scale(1.18);
}

.about-hero {
  position: relative;
  min-height: clamp(520px, 72vh, 760px);
  display: flex;
  align-items: flex-end;
  padding: 140px 0 72px;
  overflow: hidden;
}

.about-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.04);
  animation: about-hero-zoom 18s ease-in-out infinite alternate;
}

@keyframes about-hero-zoom {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1.12);
  }
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(4, 7, 13, 0.28) 0%, rgba(4, 7, 13, 0.62) 58%, rgba(4, 7, 13, 0.82) 100%);
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 72px, 1200px);
  margin: 0 auto;
  color: #fff;
}

.about-hero-inner .page-hero-eyebrow {
  color: #5eead4;
}

.about-hero-inner h1 {
  margin: 0 0 16px;
  max-width: 820px;
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.about-hero-inner p {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.55;
}

.about-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.about-intro {
  padding: 88px 0;
  background: #fff;
  border-bottom: 1px solid rgba(17, 17, 17, 0.07);
}

.about-intro-grid {
  width: min(100% - 72px, 1200px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}

.about-intro-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.about-intro-copy p {
  margin: 0 0 14px;
  color: #4f5156;
  font-size: clamp(15px, 1.08vw, 17px);
  line-height: 1.62;
}

.about-intro-copy p:last-child {
  margin-bottom: 0;
}

.about-intro-media {
  aspect-ratio: 4 / 5;
  min-height: 420px;
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.12);
}

.about-gallery {
  padding: 88px 0;
  background: linear-gradient(180deg, #f3f3f3 0%, #ececed 100%);
}

.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px);
}

.about-gallery-item {
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(17, 17, 17, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.about-gallery-item:hover {
  transform: translateY(-8px);
  border-color: rgba(13, 148, 136, 0.18);
  box-shadow: 0 22px 52px rgba(17, 17, 17, 0.11);
}

.about-gallery-item .zoom-media {
  aspect-ratio: 4 / 3;
  height: auto;
  border-radius: 0;
}

.about-gallery-item .zoom-media img {
  object-position: center center;
}

.about-gallery-item figcaption {
  display: grid;
  gap: 6px;
  flex: 1;
  min-height: 118px;
  padding: 18px 20px 22px;
}

.about-gallery-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(13, 148, 136, 0.1);
  color: #0f766e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-gallery-item figcaption strong {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  font-weight: 600;
  line-height: 1.25;
  color: #15171d;
}

.about-gallery-item figcaption span:last-child {
  color: #6b7078;
  font-size: 14px;
  line-height: 1.45;
}

.about-reasons {
  padding: 88px 0;
  background: #fff;
}

.about-reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 24px);
}

.about-reason-card {
  background: linear-gradient(180deg, #fafafa 0%, #f5f5f6 100%);
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 18px;
  padding: 28px 24px 30px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.about-reason-card:hover {
  transform: translateY(-6px);
  border-color: rgba(13, 148, 136, 0.16);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
}

.about-reason-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(13, 148, 136, 0.1);
}

.about-reason-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #0d9488;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-reason-card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.1rem, 1.15vw, 1.3rem);
  line-height: 1.2;
}

.about-reason-card p {
  margin: 0;
  color: #5f6168;
  font-size: 15px;
  line-height: 1.58;
}

.about-colours {
  padding: 88px 0;
  background: linear-gradient(180deg, #ececed 0%, #f3f3f3 100%);
}

.about-colours-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 24px);
}

.about-colour-card {
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(17, 17, 17, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-colour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 52px rgba(17, 17, 17, 0.11);
}

.about-colour-card .zoom-media {
  aspect-ratio: 4 / 3;
  border-radius: 0;
}

.about-colour-card:nth-child(1) .zoom-media img {
  object-position: center 62%;
}

.about-colour-card:nth-child(2) .zoom-media img {
  object-position: center 66%;
}

.about-colour-card:nth-child(3) .zoom-media img {
  object-position: center 64%;
}

.about-colour-body {
  padding: 22px 24px 26px;
}

.about-colour-swatch {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 999px;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px rgba(17, 17, 17, 0.12);
}

.about-colour-swatch-black {
  background: #111111;
}

.about-colour-swatch-white {
  background: #f5f5f5;
}

.about-colour-swatch-charcoal {
  background: #4a4f57;
}

.about-colour-body h3 {
  margin: 0 0 8px;
  font-size: clamp(1.15rem, 1.2vw, 1.35rem);
}

.about-colour-body p {
  margin: 0;
  color: #5f6168;
  font-size: 15px;
  line-height: 1.55;
}

.about-specs {
  padding: 88px 0;
  background: #fff;
}

.about-specs-inner {
  width: min(100% - 72px, 900px);
}

.about-specs-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  box-shadow: 0 10px 36px rgba(17, 17, 17, 0.05);
}

.about-specs-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.about-specs-table th,
.about-specs-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid rgba(17, 17, 17, 0.07);
  font-size: 15px;
  line-height: 1.45;
}

.about-specs-table tr:last-child th,
.about-specs-table tr:last-child td {
  border-bottom: 0;
}

.about-specs-table th {
  width: 42%;
  color: #15171d;
  font-weight: 600;
  background: #fafafa;
}

.about-specs-table td {
  color: #4f5156;
}

.about-faq {
  padding: 88px 0;
  background: linear-gradient(180deg, #f3f3f3 0%, #ececed 100%);
}

.about-faq-inner {
  width: min(100% - 72px, 820px);
}

.about-faq-list {
  display: grid;
  gap: 12px;
}

.about-faq-item {
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-faq-item[open] {
  border-color: rgba(13, 148, 136, 0.2);
  box-shadow: 0 12px 32px rgba(17, 17, 17, 0.06);
}

.about-faq-item summary {
  position: relative;
  padding: 20px 52px 20px 22px;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  font-weight: 600;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.about-faq-item summary::-webkit-details-marker {
  display: none;
}

.about-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #0d9488;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  transition: transform 0.3s ease;
}

.about-faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.about-faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: #5f6168;
  font-size: 15px;
  line-height: 1.6;
}

.about-company {
  padding: 88px 0;
  background: #fff;
  border-bottom: 1px solid rgba(17, 17, 17, 0.07);
}

.about-company-inner {
  width: min(100% - 72px, 1200px);
}

.about-company-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: stretch;
}

.about-company-visual {
  position: relative;
}

.about-company-photo {
  height: 100%;
  min-height: clamp(420px, 42vw, 560px);
  border-radius: 20px;
  box-shadow: 0 28px 64px rgba(17, 17, 17, 0.14);
}

.about-company-photo img {
  object-position: center center;
}

.about-company-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 3;
  display: grid;
  gap: 4px;
  padding: 16px 20px;
  border-radius: 14px;
  background: rgba(9, 13, 20, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 16px 40px rgba(4, 7, 13, 0.28);
}

.about-company-badge-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #5eead4;
}

.about-company-badge-label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

.about-company-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.about-company-story,
.about-company-why {
  border-radius: 20px;
  overflow: hidden;
}

.about-company-story {
  padding: clamp(24px, 3vw, 32px);
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: 0 10px 36px rgba(17, 17, 17, 0.05);
  border-left: 4px solid #0d9488;
}

.about-company-label {
  display: inline-block;
  margin-bottom: 12px;
  color: #0d9488;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-company-label-light {
  color: #5eead4;
}

.about-company-story h3 {
  margin: 0 0 14px;
  font-size: clamp(1.65rem, 2.4vw, 2.15rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.about-company-story p {
  margin: 0 0 12px;
  color: #4f5156;
  font-size: clamp(15px, 1.05vw, 16px);
  line-height: 1.62;
}

.about-company-story p:last-child {
  margin-bottom: 0;
}

.about-company-why {
  padding: clamp(24px, 3vw, 32px);
  background: linear-gradient(145deg, #10141d 0%, #090d14 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 48px rgba(4, 7, 13, 0.18);
}

.about-company-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}

.about-company-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 14px 14px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: #d7dbe3;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.about-company-points li:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(45, 212, 191, 0.22);
  transform: translateY(-2px);
}

.about-company-point-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(13, 148, 136, 0.18);
  color: #2dd4bf;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.about-company-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 4px;
}

.page-about .ready-section {
  background: #fff;
  border-top: 1px solid rgba(17, 17, 17, 0.07);
}

.page-about .ready-section::before {
  display: none;
}

@media (max-width: 1100px) {
  .about-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .about-intro-grid,
  .about-company-layout {
    grid-template-columns: 1fr;
  }

  .about-company-photo {
    min-height: 320px;
  }

  .about-company-points {
    grid-template-columns: 1fr;
  }

  .about-intro-media {
    min-height: 320px;
  }

  .about-reasons-grid,
  .about-colours-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .about-hero,
  .page-products .products-hero {
    min-height: 480px;
    padding: 120px 0 44px;
  }

  .page-products .our-products-page {
    padding: 44px 0 52px;
  }

  .about-hero-inner,
  .about-intro-grid,
  .about-specs-inner,
  .about-faq-inner,
  .about-company-inner {
    width: min(100% - 28px, 1200px);
  }

  .about-intro,
  .about-gallery,
  .about-reasons,
  .about-colours,
  .about-specs,
  .about-faq,
  .about-company {
    padding: 64px 0;
  }

  .about-gallery-grid,
  .about-reasons-grid,
  .about-colours-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .about-hero-cta .btn {
    width: 100%;
    min-height: 52px;
  }

  .about-company-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about-company-actions .btn {
    width: 100%;
    min-height: 52px;
  }

  .about-specs-table th,
  .about-specs-table td {
    display: block;
    width: 100%;
    padding: 14px 18px;
  }

  .about-specs-table th {
    border-bottom: 0;
    padding-bottom: 6px;
  }

  .about-specs-table td {
    padding-top: 0;
    padding-bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-hero-media img,
  .zoom-media img {
    animation: none;
    transform: none;
    transition: none;
  }

  .about-gallery-item:hover,
  .about-reason-card:hover,
  .about-colour-card:hover,
  .about-company-points li:hover {
    transform: none;
  }
}

.products-grid {
  width: min(100% - 72px, 1460px);
  display: grid;
  gap: 72px;
}

.product-row.reverse .product-media {
  order: 2;
}

.product-row.reverse .product-details {
  order: 1;
}

.product-details {
  padding: 0;
}

.product-details p {
  margin: 14px 0 0;
  max-width: 610px;
  color: #4f5156;
  font-size: clamp(14px, 1.06vw, 18px);
  line-height: 1.42;
}

.feature-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
  max-width: 520px;
}

.feature-list li {
  position: relative;
  color: #3c3f45;
  font-size: 13px;
  line-height: 1.45;
  padding-left: 12px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56em;
  width: 4px;
  height: 4px;
  background: #15171d;
}

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

.content-section {
  background: #efeff0;
  padding: 42px 0 96px;
}

.info-grid {
  width: min(100% - 72px, 1200px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.info-card {
  background: #fff;
  border: 1px solid #e7e7e9;
  padding: 24px;
}

.info-card img {
  width: 100%;
  height: clamp(220px, 28vw, 300px);
  object-fit: cover;
  display: block;
  margin-bottom: 18px;
}

.info-card h3 {
  margin: 0;
  font-size: clamp(28px, 2.2vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.info-card p {
  margin: 12px 0 0;
  color: #4f5156;
  font-size: 15px;
  line-height: 1.55;
}

.split-layout {
  width: min(100% - 72px, 1200px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.split-card {
  background: #fff;
  border: 1px solid #e7e7e9;
  padding: 28px;
}

.split-card h3 {
  margin: 0 0 14px;
  font-size: clamp(28px, 2.3vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.split-card p {
  margin: 0 0 12px;
  color: #4f5156;
  font-size: 15px;
  line-height: 1.55;
}

.feature-list.single-column {
  grid-template-columns: 1fr;
  max-width: none;
}

/* Contact page — premium enquiry experience */
.page-contact {
  background: #f3f3f3;
}

.page-contact .site-header.is-scrolled {
  background: rgba(243, 243, 243, 0.94);
}

.page-contact .contact-hero {
  min-height: clamp(480px, 62vh, 680px);
  padding-bottom: clamp(96px, 11vw, 120px);
}

.page-contact .ready-section {
  background: #fff;
  border-top: 1px solid rgba(17, 17, 17, 0.07);
}

.page-contact .ready-section::before {
  display: none;
}

.contact-channels {
  position: relative;
  z-index: 2;
  margin-top: -20px;
  padding: clamp(56px, 7vw, 88px) 0 clamp(32px, 4vw, 48px);
}

.contact-channels-inner {
  width: min(100% - 56px, 1320px);
}

.contact-channels-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.6vw, 32px);
  align-items: stretch;
}

.contact-channel-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: clamp(240px, 24vw, 280px);
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 16px;
  padding: clamp(32px, 3.4vw, 48px);
  box-shadow: 0 8px 32px rgba(17, 17, 17, 0.06);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease;
}

.contact-channel-card:hover {
  transform: translateY(-8px);
  border-color: rgba(13, 148, 136, 0.22);
  box-shadow: 0 20px 48px rgba(17, 17, 17, 0.1);
}

.contact-channel-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.12) 0%, rgba(8, 145, 178, 0.08) 100%);
  color: #0d9488;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s ease;
}

.contact-channel-card:hover .contact-channel-icon {
  transform: scale(1.06);
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.18) 0%, rgba(8, 145, 178, 0.12) 100%);
}

.contact-channel-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-channel-card h3 {
  margin: 0 0 14px;
  font-size: clamp(1.3rem, 1.65vw, 1.55rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.contact-channel-card p {
  margin: 0 0 22px;
  color: #5f6063;
  font-size: clamp(15px, 1.1vw, 16px);
  line-height: 1.65;
}

.contact-channel-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  color: #0d9488;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.25s ease, gap 0.25s ease;
}

.contact-channel-link:hover {
  color: #0f766e;
  gap: 10px;
}

.contact-channel-detail {
  display: block;
  margin-top: auto;
  color: #111;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.contact-main {
  padding: 64px 0 88px;
  background: transparent;
  scroll-margin-top: 100px;
}

.contact-main-inner {
  width: min(100% - 72px, 1200px);
}

.contact-main .about-section-header h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #0d9488, #0891b2);
}

.contact-layout {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(24px, 3vw, 36px);
  align-items: start;
}

.contact-form-panel {
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 20px;
  padding: clamp(28px, 3vw, 40px);
  box-shadow: 0 10px 40px rgba(17, 17, 17, 0.05);
}

.contact-form-header {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.07);
}

.contact-form-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #0d9488;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form-header h3 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 2.2vw, 1.85rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.contact-form-header p {
  margin: 0;
  color: #5f6063;
  font-size: 14px;
  line-height: 1.5;
}

.contact-form {
  display: grid;
  gap: 0;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-field-label {
  font-size: 13px;
  font-weight: 600;
  color: #2d3138;
  letter-spacing: 0.01em;
}

.contact-field-hint {
  color: #8a919f;
  font-size: 12px;
  line-height: 1.4;
}

.contact-required {
  color: #0d9488;
}

.contact-optional {
  color: #8a919f;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d9dce2;
  border-radius: 10px;
  background: #fbfbfc;
  color: #161a22;
  font: inherit;
  font-size: 15px;
  padding: 13px 16px;
  outline: none;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: #c4c8d0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0d9488;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.55;
}

.contact-multiselect {
  position: relative;
}

.contact-multiselect summary {
  display: grid;
  gap: 8px;
  cursor: pointer;
  list-style: none;
}

.contact-multiselect summary::-webkit-details-marker {
  display: none;
}

.contact-multiselect-value {
  position: relative;
  display: flex;
  min-height: 52px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid #d9dce2;
  border-radius: 10px;
  background: #fbfbfc;
  color: #161a22;
  font-size: 15px;
  line-height: 1.4;
  padding: 13px 46px 13px 16px;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-multiselect-value::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid #151515;
  border-bottom: 2px solid #151515;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.25s ease;
}

.contact-multiselect summary:hover .contact-multiselect-value {
  border-color: #c4c8d0;
}

.contact-multiselect[open] .contact-multiselect-value,
.contact-multiselect summary:focus-visible .contact-multiselect-value {
  border-color: #0d9488;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
}

.contact-multiselect[open] .contact-multiselect-value::after {
  transform: translateY(-35%) rotate(225deg);
}

.contact-multiselect-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
  border: 1px solid #e0e2e7;
  border-radius: 12px;
  background: #fff;
  padding: 10px;
  box-shadow: 0 18px 42px rgba(16, 20, 28, 0.08);
}

.contact-product-option {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  border: 1px solid #eef0f3;
  border-radius: 8px;
  color: #30343a;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 12px;
}

.contact-product-option input {
  width: 17px;
  min-width: 17px;
  height: 17px;
  min-height: 17px;
  border-radius: 3px;
  padding: 0;
  accent-color: #151515;
}

.contact-form .btn {
  margin-top: 4px;
  justify-self: start;
}

.contact-form-feedback {
  margin-top: 16px;
}

.contact-info-panel {
  display: grid;
  gap: 20px;
}

.contact-info-card {
  background: #090d14;
  border-radius: 20px;
  padding: clamp(28px, 3vw, 36px);
  color: #fff;
  box-shadow: 0 16px 48px rgba(4, 7, 13, 0.18);
}

.contact-info-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(94, 234, 212, 0.12);
  color: #5eead4;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-info-card-header h3 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.contact-info-card-header p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.6;
}

.contact-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.5;
}

.contact-info-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(13, 148, 136, 0.28);
  color: #5eead4;
  font-size: 11px;
  font-weight: 700;
}

.contact-visual {
  min-height: 220px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(17, 17, 17, 0.08);
}

.contact-visual img {
  min-height: 220px;
}

.contact-help {
  padding: 0 0 88px;
  background: transparent;
}

.contact-help .container {
  width: min(100% - 56px, 1320px);
}

.contact-help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.6vw, 32px);
  align-items: stretch;
}

.contact-help-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: clamp(220px, 22vw, 260px);
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 16px;
  padding: clamp(32px, 3.4vw, 48px);
  box-shadow: 0 6px 24px rgba(17, 17, 17, 0.04);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease;
}

.contact-help-card:hover {
  transform: translateY(-6px);
  border-color: rgba(13, 148, 136, 0.18);
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.09);
}

.contact-help-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  border-radius: 16px;
  background: #f3f4f6;
  color: #0d9488;
  transition: background 0.35s ease, transform 0.35s ease;
}

.contact-help-card:hover .contact-help-icon {
  background: rgba(13, 148, 136, 0.1);
  transform: scale(1.05);
}

.contact-help-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-help-card h3 {
  margin: 0 0 14px;
  font-size: clamp(1.3rem, 1.65vw, 1.55rem);
  line-height: 1.2;
}

.contact-help-card p {
  margin: 0;
  color: #5f6063;
  font-size: clamp(15px, 1.1vw, 16px);
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .contact-channels-inner,
  .contact-main-inner,
  .contact-help .container {
    width: min(100% - 36px, 1320px);
  }

  .contact-channels-grid,
  .contact-help-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-channel-card,
  .contact-help-card {
    min-height: 0;
  }

  .contact-channels {
    margin-top: -12px;
    padding-top: clamp(48px, 6vw, 64px);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-contact .contact-hero {
    min-height: 480px;
    padding-bottom: 80px;
  }

  .contact-channels {
    margin-top: 0;
    padding-top: 40px;
  }

  .contact-channels-inner,
  .contact-main-inner,
  .contact-help .container {
    width: min(100% - 28px, 100%);
  }

  .contact-channels-grid,
  .contact-help-grid {
    gap: 16px;
  }

  .contact-channel-card,
  .contact-help-card {
    padding: clamp(28px, 6vw, 36px);
  }

  .contact-channel-icon,
  .contact-help-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
  }

  .contact-channel-icon svg,
  .contact-help-icon svg {
    width: 26px;
    height: 26px;
  }

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

  .contact-multiselect-menu {
    grid-template-columns: 1fr;
  }

  .contact-main {
    padding: 48px 0 64px;
  }

  .contact-help {
    padding-bottom: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-channel-card,
  .contact-help-card {
    transition: none;
  }

  .contact-channel-card:hover,
  .contact-help-card:hover {
    transform: none;
  }

  .contact-channel-card:hover .contact-channel-icon,
  .contact-help-card:hover .contact-help-icon {
    transform: none;
  }
}

.info-card .btn,
.split-card .btn,
.solution-copy .btn {
  margin-top: 18px;
}

.solutions-layout {
  width: min(100% - 56px, 1200px);
}

.section-heading h2 {
  margin: 0;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.section-heading p {
  margin: 10px 0 40px;
  color: #5f6063;
  font-size: clamp(14px, 1.25vw, 18px);
}

.solution-card {
  margin-bottom: 56px;
}

.solution-media {
  overflow: hidden;
}

.solution-card img {
  width: 100%;
  height: clamp(260px, 37vw, 430px);
  object-fit: cover;
  object-position: center;
  display: block;
  border: 0;
  transform: scale(1);
  transition: transform 0.5s ease;
}

.solution-card:hover .solution-media img {
  transform: scale(1.06);
}

.solution-copy h3 {
  margin: 22px 0 12px;
  font-size: 1.875rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.solution-copy p {
  margin: 0;
  max-width: 900px;
  color: var(--muted);
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.5;
}

.site-footer {
  position: relative;
  background: linear-gradient(180deg, #0b1019 0%, #04070d 55%, #060a12 100%);
  color: #f4f4f7;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(13, 148, 136, 0.12), transparent 42%),
    radial-gradient(circle at 85% 100%, rgba(255, 255, 255, 0.04), transparent 38%);
  pointer-events: none;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.ready-section {
  position: relative;
  background: linear-gradient(135deg, #f7f9fb 0%, #eef5f4 48%, #f2f6f9 100%);
  border-top: 1px solid rgba(17, 17, 17, 0.06);
  padding: 80px 0;
  overflow: hidden;
}

.ready-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 60%, rgba(13, 148, 136, 0.1), transparent 46%),
    radial-gradient(circle at 100% 0%, rgba(13, 148, 136, 0.06), transparent 42%);
  pointer-events: none;
}

.ready-section-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: min(100% - 72px, 1360px);
  margin: 0 auto;
}

.ready-section-copy {
  max-width: 640px;
  text-align: left;
}

.ready-section-eyebrow {
  margin: 0 0 12px;
  color: #0d9488;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ready-section-copy h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #111;
}

.ready-section-copy p {
  margin: 0;
  max-width: 560px;
  color: #5c6570;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.6;
}

.cta-band {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 72px 0;
}

.cta-band h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #fff;
}

.cta-band p {
  margin: 0;
  max-width: 560px;
  color: #9da5b2;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.6;
}

.quote-modal-form .btn {
  justify-self: start;
}

.footer-main {
  width: min(100% - 72px, 1360px);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 52px;
}

.footer-brand-col p {
  margin: 16px 0 0;
  max-width: 320px;
  color: #9aa2ae;
  font-size: 15px;
  line-height: 1.65;
}

.footer-brand-col .footer-tagline {
  margin-top: 18px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}

.footer-brand-col .footer-tagline + p {
  margin-top: 10px;
}

.footer-brand {
  margin: 0;
  display: inline-block;
}

.footer-brand img {
  display: block;
  height: 72px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  object-position: left center;
}

.footer-col h4 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
}

.footer-grid a {
  display: block;
  margin: 0 0 12px;
  color: #b4bbc6;
  font-size: 15px;
  line-height: 1.5;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-grid a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-detail {
  display: block;
  margin: 0 0 8px;
  color: #8b94a2;
  font-size: 14px;
  line-height: 1.45;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 0 0 34px;
}

.footer-social a {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f4f4f7;
  color: #04070d;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
  background: #5eead4;
  color: #04070d;
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social svg path {
  fill: currentColor;
  stroke: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(100% - 72px, 1360px);
  margin: 0 auto;
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: #7d8591;
  font-size: 13px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom a:hover {
  color: #fff;
}

.menu-toggle {
  display: none;
}

.menu-toggle:focus-visible,
.main-nav a:focus-visible,
.btn:focus-visible,
.icon-btn:focus-visible,
.hero-slider-dots button:focus-visible,
.hero-nav-btn:focus-visible,
.hero-scroll-hint:focus-visible {
  outline: 2px solid #2f6fed;
  outline-offset: 2px;
}

@media (max-width: 1200px) {
  .site-header .container,
  .hero .container,
  .solutions-layout {
    width: min(100% - 44px, 1200px);
  }

  .page-hero-inner,
  .products-grid {
    width: min(100% - 44px, 1200px);
  }

  .info-grid,
  .split-layout,
  .contact-channels-inner,
  .contact-main-inner {
    width: min(100% - 44px, 1200px);
  }

  .about-hero-inner,
  .about-intro-grid,
  .about-company-inner,
  .about-specs-inner,
  .about-faq-inner,
  .ready-section-inner,
  .footer-main,
  .footer-bottom,
  .our-products-page .container.our-products-inner,
  .page-products .our-products-page .container.our-products-inner,
  .our-products-home .container.our-products-inner,
  .product-highlights-grid,
  .custom-solution-inner,
  .contact-help .container {
    width: min(100% - 44px, 1360px);
  }

  .product-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-row.reverse .product-media,
  .product-row.reverse .product-details {
    order: initial;
  }

  .our-products-home .our-product-tile-link {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .our-products-home .our-product-tile-media {
    min-height: 300px;
    aspect-ratio: 16 / 10;
  }

  .nav-row {
    min-height: 88px;
  }

  :root {
    --brand-logo-height: 68px;
  }

  .main-nav {
    gap: 26px;
  }

  .hero-content {
    padding-top: clamp(128px, 20vh, 180px);
    padding-left: 90px;
    max-width: 660px;
    transform: none;
  }

  .hero-controls {
    padding-left: 90px;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 5vw, 3.3rem);
  }
}

@media (max-width: 1024px) {
  .site-header .container,
  .hero .container {
    width: min(100% - 36px, 1200px);
  }

  .page-hero-inner,
  .products-grid {
    width: min(100% - 36px, 1200px);
  }

  .info-grid,
  .split-layout,
  .contact-channels-inner,
  .contact-main-inner {
    width: min(100% - 36px, 1200px);
  }

  .about-hero-inner,
  .about-intro-grid,
  .about-company-inner,
  .about-specs-inner,
  .about-faq-inner,
  .ready-section-inner,
  .footer-main,
  .footer-bottom,
  .our-products-page .container.our-products-inner,
  .page-products .our-products-page .container.our-products-inner,
  .our-products-home .container.our-products-inner,
  .product-highlights-grid,
  .custom-solution-inner,
  .contact-help .container {
    width: min(100% - 36px, 1360px);
  }

  .nav-row {
    min-height: 80px;
    gap: 14px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  :root {
    --brand-logo-height: 64px;
  }

  .brand {
    grid-column: 1;
    justify-self: start;
  }

  .menu-toggle {
    grid-column: 2;
    justify-self: center;
  }

  .header-actions {
    grid-column: 3;
    justify-self: end;
    margin-left: 0;
  }

  .main-nav {
    grid-column: 1 / -1;
  }

  .menu-toggle {
    --btn-border: transparent;
    --btn-fill: transparent;
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #111;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    min-height: 44px;
    min-width: 44px;
    padding: 10px 12px;
    line-height: 1;
    cursor: pointer;
    clip-path: none;
    -webkit-clip-path: none;
    transition: opacity 0.25s ease;
    z-index: 1102;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
  }

  .menu-toggle::before {
    display: none;
  }

  .menu-toggle:hover {
    opacity: 0.65;
  }

  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    transform: none;
    top: calc(100% + 6px);
    padding: 8px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #d4d6dc;
    box-shadow: 0 10px 30px rgba(15, 20, 30, 0.12);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    white-space: normal;
    max-height: min(70vh, 420px);
    overflow-y: auto;
    z-index: 10;
  }

  .main-nav.open {
    display: flex;
    z-index: 1101;
  }

  .main-nav a {
    width: 100%;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 0;
    border-bottom: 0;
    font-weight: 700;
    font-size: 13px;
  }

  .main-nav a.is-active {
    background: rgba(17, 17, 17, 0.06);
  }

  .main-nav a:active {
    background: rgba(17, 17, 17, 0.08);
    opacity: 1;
  }

  .btn.small {
    min-height: 38px;
    padding-inline: 16px;
    font-size: 12px;
  }

  .hero {
    min-height: 500px;
  }

  .hero-content {
    padding-top: clamp(118px, 18vh, 150px);
    padding-left: 36px;
    max-width: 620px;
  }

  .hero-controls {
    padding-left: 36px;
    bottom: 26px;
  }
}

@media (max-width: 1024px) {
  .container {
    width: min(100% - 36px, var(--container));
  }

  .site-header .container {
    width: min(100% - 32px, 1460px);
  }

  .nav-row {
    min-height: 80px;
  }

  :root {
    --brand-logo-height: 60px;
  }

  .ready-section-inner {
    flex-direction: column;
    align-items: flex-start;
    width: min(100% - 36px, 100%);
  }

  .ready-section {
    padding: 56px 0;
  }

  .footer-main,
  .footer-bottom {
    width: min(100% - 36px, 100%);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 48px 0 40px;
  }

  .btn {
    min-width: auto;
  }

  .page-hero {
    border-bottom: 0;
  }

  .hero {
    min-height: clamp(460px, 78vh, 560px);
  }

  .hero .container {
    width: min(100% - 36px, var(--container));
  }

  .solutions-layout {
    width: min(100% - 36px, var(--container));
  }

  .page-hero-inner,
  .products-grid,
  .product-highlights-grid,
  .custom-solution-inner {
    width: min(100% - 36px, var(--container));
  }

  .info-grid,
  .split-layout,
  .contact-channels-inner,
  .contact-main-inner {
    width: min(100% - 36px, var(--container));
  }

  .product-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .info-grid,
  .split-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-row.reverse .product-media,
  .product-row.reverse .product-details {
    order: initial;
  }

  .feature-list {
    max-width: 100%;
  }

  .product-highlights-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .product-highlights {
    padding: 44px 0 40px;
  }

  .our-products {
    padding: 56px 0 64px;
  }

  .our-products-home {
    padding: 64px 0 72px;
  }

  .our-products-home .our-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .our-products-home .our-product-tile-link {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .our-products-home .our-product-tile-media {
    min-height: 320px;
    aspect-ratio: 16 / 10;
  }

  .our-products-home .our-product-tile-media img {
    transform: scale(1.04);
  }

  .our-products-home .our-product-tile:hover .our-product-tile-media img,
  .our-products-home .our-product-tile:focus-within .our-product-tile-media img {
    transform: scale(1.12);
  }

  .our-products-home .our-product-tile-body {
    padding: 28px 24px 32px;
  }

  .our-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .our-products-header {
    margin-bottom: 36px;
  }

  .product-highlight-item h2 {
    margin: 14px 0 8px;
    font-size: clamp(24px, 4.8vw, 30px);
  }

  .product-highlight-item p {
    max-width: 100%;
  }

  .custom-solution-cta {
    padding: 56px 0 62px;
  }

  .custom-solution-inner h2 {
    font-size: clamp(30px, 5.8vw, 38px);
  }

  .hero-content {
    padding-top: 128px;
    padding-left: 0;
    padding-bottom: 132px;
  }

  .hero-controls {
    padding-left: 0;
    padding-right: 0;
    bottom: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero-scroll-hint {
    display: none;
  }

  .hero-desc {
    font-size: clamp(15px, 2.7vw, 22px);
    max-width: 510px;
  }

  .hero-cta {
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero-cta .btn {
    min-height: 42px;
    padding: 0 16px;
    font-size: 12px;
  }

  .intro h2,
  .section-heading h2,
  .solution-copy h3,
  .cta-band h2 {
    font-size: clamp(29px, 5vw, 44px);
  }

  .intro p,
  .section-heading p,
  .solution-copy p,
  .inline-link {
    font-size: 1.125rem;
  }

  .solution-card img {
    height: auto;
  }

  .product-media img {
    height: auto;
  }

  .intro .inline-link {
    font-size: 14px;
    margin-top: 24px;
  }

  .cta-band {
    padding: 0 0 72px;
  }

  .cta-band h2 {
    font-size: clamp(32px, 7vw, 44px);
  }

  .cta-band p {
    font-size: 15px;
    margin: 14px auto 26px;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .page-hero {
    padding-bottom: 62px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .container,
  .site-header .container,
  .hero .container,
  .solutions-layout {
    width: min(100% - 28px, 100%);
  }

  .page-hero-inner,
  .products-grid,
  .product-highlights-grid,
  .custom-solution-inner {
    width: min(100% - 28px, 100%);
  }

  .info-grid,
  .split-layout,
  .contact-channels-inner,
  .contact-main-inner {
    width: min(100% - 28px, 100%);
  }

  .about-hero-inner,
  .about-intro-grid,
  .about-company-inner,
  .about-specs-inner,
  .about-faq-inner,
  .ready-section-inner,
  .footer-main,
  .footer-bottom,
  .our-products-page .container.our-products-inner,
  .page-products .our-products-page .container.our-products-inner,
  .our-products-home .container.our-products-inner,
  .contact-help .container {
    width: min(100% - 28px, 100%);
  }

  .nav-row {
    min-height: 72px;
  }

  :root {
    --brand-logo-height: 56px;
  }

  .header-actions {
    gap: 8px;
  }

  .btn.small {
    min-height: 40px;
    font-size: 12px;
  }

  .hero {
    min-height: 470px;
  }

  .hero-content {
    padding-top: 112px;
    padding-bottom: 148px;
    max-width: 100%;
    transform: none;
  }

  .hero-controls {
    padding-left: 0;
    padding-right: 0;
    bottom: 20px;
    width: min(100% - 28px, 100%);
    z-index: 4;
  }

  .hero-copy-track {
    min-height: 0;
  }

  .hero-word {
    opacity: 1;
    transform: none;
    clip-path: none;
    animation: none !important;
  }

  .hero-desc {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  .hero-cta .btn {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  .hero-eyebrow-text {
    opacity: 1;
    animation: none !important;
  }

  .hero-eyebrow::before {
    transform: scaleX(1);
    animation: none !important;
  }

  .hero-slide-media {
    inset: -6% 0;
  }

  .hero-slide-media img {
    object-position: center center;
  }

  .hero-floats {
    display: none;
  }

  .hero-particles {
    opacity: 0.35;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }

  .hero p {
    font-size: 15px;
    line-height: 1.5;
  }

  .intro {
    padding: 56px 0 54px;
  }

  .intro h2 {
    font-size: clamp(1.85rem, 7vw, 2.5rem);
  }

  .our-products {
    padding: 48px 0 56px;
  }

  .our-products-home {
    padding: 52px 0 60px;
  }

  .our-products-footer {
    margin-top: 32px;
  }

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

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

  .our-products-header {
    margin-bottom: 32px;
  }

  .our-products-header h2 {
    font-size: clamp(2rem, 7vw, 2.75rem);
  }

  .our-products-home .our-product-tile-body {
    padding: 24px 20px 28px;
  }

  .our-products-home .our-product-tile-media {
    min-height: 240px;
  }

  .main-nav a.is-active::after {
    display: none;
  }

  .page-hero {
    padding: 96px 0 56px;
  }

  .about-hero,
  .page-products .products-hero,
  .page-contact .contact-hero {
    min-height: clamp(420px, 72vh, 520px);
    padding: 112px 0 48px;
  }

  .page-products .our-products-page {
    padding: 48px 0 56px;
  }

  .page-products .our-products + .products-listing {
    padding-top: 40px;
  }

  .about-hero-inner h1 {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }

  .about-hero-cta {
    flex-wrap: wrap;
    gap: 10px;
  }

  .about-hero-cta .btn {
    min-height: 48px;
  }

  .about-section-header {
    margin-bottom: 36px;
  }

  .about-section-header h2 {
    font-size: clamp(1.75rem, 6.5vw, 2.35rem);
  }

  .page-hero h1 {
    font-size: clamp(30px, 6.5vw, 38px);
  }

  .page-hero p {
    font-size: 16px;
  }

  .product-details p {
    font-size: 14px;
  }

  .product-highlight-item h2 {
    font-size: clamp(22px, 6vw, 28px);
  }

  .custom-solution-inner .btn {
    margin-top: 22px;
  }

  .feature-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .product-actions {
    margin-top: 18px;
  }

  .product-actions .btn {
    min-height: 48px;
  }

  .page-products .product-row {
    padding: 40px 0;
  }

  .page-products .product-media img {
    height: clamp(220px, 55vw, 320px);
  }

  .ready-section {
    padding: 48px 0;
  }

  .ready-section-inner {
    gap: 24px;
  }

  .ready-section-inner .btn {
    width: 100%;
    justify-content: center;
  }

  .content-section {
    padding: 34px 0 68px;
  }

  .solutions {
    padding: 52px 0 4px;
  }

  .solution-card {
    margin-bottom: 46px;
  }

  .solution-copy h3 {
    font-size: clamp(1.7rem, 7.4vw, 2.2rem);
    margin-top: 16px;
  }

  .solution-copy .btn {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 0 20px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  .container,
  .site-header .container,
  .hero .container,
  .solutions-layout {
    width: min(100% - 22px, 100%);
  }

  .page-hero-inner,
  .products-grid,
  .product-highlights-grid,
  .custom-solution-inner {
    width: min(100% - 22px, 100%);
  }

  .info-grid,
  .split-layout,
  .contact-channels-inner,
  .contact-main-inner {
    width: min(100% - 22px, 100%);
  }

  .about-hero-inner,
  .about-intro-grid,
  .about-company-inner,
  .about-specs-inner,
  .about-faq-inner,
  .ready-section-inner,
  .footer-main,
  .footer-bottom,
  .our-products-page .container.our-products-inner,
  .page-products .our-products-page .container.our-products-inner,
  .our-products-home .container.our-products-inner,
  .contact-help .container {
    width: min(100% - 22px, 100%);
  }

  .nav-row {
    min-height: 66px;
    gap: 10px;
  }

  :root {
    --brand-logo-height: 52px;
  }

  .header-actions .icon-btn {
    display: none;
  }

  .btn.small {
    min-height: 40px;
    padding-inline: 16px;
    font-size: 12px;
  }

  .contact-form .btn {
    width: 100%;
    justify-self: stretch;
  }

  .quote-modal {
    padding: 24px 16px 18px;
  }

  .quote-modal h2 {
    font-size: clamp(24px, 8vw, 30px);
  }

  .quote-modal-form .btn {
    width: 100%;
    justify-self: stretch;
  }

  .main-nav {
    top: calc(100% + 4px);
  }

  .hero {
    min-height: 430px;
  }

  .hero-content {
    padding-top: 104px;
    padding-left: 0;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 10vw, 2.2rem);
  }

  .page-hero {
    padding: 44px 0 40px;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 10vw, 2.5rem);
  }

  .product-details h2 {
    font-size: clamp(28px, 7.8vw, 34px);
  }

  .product-actions {
    flex-wrap: wrap;
  }

  .product-actions .btn,
  .about-company-actions .btn,
  .about-hero-cta .btn,
  .info-card .btn,
  .split-card .btn {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  .about-hero,
  .page-products .products-hero,
  .page-contact .contact-hero {
    min-height: 400px;
    padding: 100px 0 40px;
  }

  .page-products .our-products-page {
    padding: 40px 0 48px;
  }

  .page-products .our-products + .products-listing {
    padding-top: 32px;
  }

  .about-hero-inner h1 {
    font-size: clamp(1.75rem, 9vw, 2.2rem);
  }

  .about-hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .about-company-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about-company-badge {
    left: 14px;
    bottom: 14px;
    padding: 12px 16px;
  }

  .about-intro,
  .about-gallery,
  .about-reasons,
  .about-colours,
  .about-specs,
  .about-faq,
  .about-company {
    padding: 48px 0;
  }

  .contact-help-card {
    padding: 18px 16px 20px;
  }

  .ready-section-copy h2 {
    font-size: clamp(1.65rem, 8vw, 2rem);
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 10px;
  }

  .info-card,
  .split-card,
  .contact-form-panel,
  .contact-channel-card {
    padding: 18px 16px 20px;
  }

  .hero p {
    margin: 14px 0 20px;
    font-size: 14px;
  }

  .hero-controls {
    padding-left: 0;
    padding-right: 0;
    bottom: 20px;
    width: min(100% - 28px, 100%);
  }

  .hero-nav-btn {
    width: 40px;
    height: 40px;
  }

  .hero-slider-dots button {
    width: clamp(28px, 8vw, 40px);
  }

  .hero-slider-dots {
    bottom: 18px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn {
    width: 100%;
    min-width: 0;
    min-height: 52px;
  }

  .section-heading p,
  .solution-copy p,
  .intro p,
  .cta-band p {
    font-size: 14px;
  }

  .cta-band {
    padding: 0 0 58px;
  }
}

/* Homepage hero slider — tablet & mobile layout */
@media (max-width: 1024px) {
  .page-home .hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100svh;
    min-height: 100dvh;
  }

  .page-home .hero-content {
    position: relative;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    max-width: 100%;
    padding-top: clamp(92px, 13vh, 120px);
    padding-bottom: 16px;
    padding-left: 0;
    padding-right: 0;
    margin: 0 auto;
    transform: none;
  }

  .page-home .hero-copy-track {
    min-height: 0;
    width: 100%;
  }

  .page-home .hero-copy {
    width: 100%;
  }

  .page-home .hero-controls {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    flex-shrink: 0;
    align-self: center;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    padding-top: 12px;
    padding-bottom: clamp(20px, 4vw, 28px);
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .page-home .hero-nav {
    width: auto;
    flex-shrink: 0;
  }

  .page-home .hero-slider-dots {
    flex: 1;
    min-width: 0;
  }

  .page-home .hero h1 {
    font-size: clamp(2rem, 6vw, 3rem);
    line-height: 1.04;
    letter-spacing: -0.025em;
  }

  .page-home .hero-accent {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    color: #fff;
    -webkit-text-fill-color: #fff;
  }

  .page-home .hero-word,
  .page-home .hero-desc,
  .page-home .hero-cta .btn,
  .page-home .hero-eyebrow-text {
    opacity: 1;
    transform: none;
    clip-path: none;
    animation: none !important;
  }

  .page-home .hero-eyebrow::before {
    transform: scaleX(1);
    animation: none !important;
  }

  .page-home .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
    margin-bottom: 14px;
  }

  .page-home .hero-desc {
    margin: 16px 0 22px;
    max-width: none;
    font-size: clamp(15px, 2.5vw, 18px);
    line-height: 1.55;
  }

  .page-home .hero-cta {
    flex-wrap: wrap;
    gap: 10px;
  }

  .page-home .hero-cta .btn {
    min-height: 48px;
    padding: 0 20px;
    font-size: 13px;
    flex: 1 1 auto;
    min-width: min(100%, 200px);
  }

  .page-home .hero-slide.is-active .hero-slide-media img {
    animation: none;
    transform: scale(1.06);
  }

  .page-home .hero-slide-media {
    inset: 0;
  }

  .page-home .hero-slide-media img {
    object-position: center center;
    transform: scale(1.05);
  }

  .page-home .hero-overlay {
    background:
      linear-gradient(180deg, rgba(4, 7, 13, 0.5) 0%, rgba(4, 7, 13, 0.22) 42%, rgba(4, 7, 13, 0.72) 100%);
  }
}

@media (max-width: 768px) {
  .page-home .hero {
    min-height: min(100svh, 820px);
    min-height: min(100dvh, 820px);
  }

  .page-home .hero-content {
    padding-top: clamp(88px, 12vh, 108px);
    justify-content: flex-end;
    padding-bottom: 12px;
  }

  .page-home .hero h1 {
    font-size: clamp(1.85rem, 8.5vw, 2.5rem);
  }

  .page-home .hero-desc {
    font-size: 15px;
    margin: 12px 0 18px;
  }

  .page-home .hero-cta .btn {
    min-height: 46px;
    font-size: 12px;
  }
}

@media (max-width: 640px) {
  .page-home .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .page-home .hero-cta .btn {
    width: 100%;
    min-width: 0;
    flex: none;
  }
}

@media (max-width: 480px) {
  .page-home .hero-content {
    padding-top: 84px;
    padding-bottom: 8px;
  }

  .page-home .hero h1 {
    font-size: clamp(1.65rem, 9.5vw, 2.1rem);
  }

  .page-home .hero-desc {
    font-size: 14px;
    margin: 10px 0 16px;
  }

  .page-home .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .page-home .hero-cta .btn {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    flex: none;
  }

  .page-home .hero-controls {
    padding: 10px 0 16px;
    gap: 8px;
  }

  .page-home .hero-slider-dots {
    gap: 6px;
  }

  .page-home .hero-slider-dots button {
    width: clamp(22px, 6.5vw, 34px);
    height: 2px;
  }

  .page-home .hero-nav-btn {
    width: 38px;
    height: 38px;
  }

  .page-home .hero-counter {
    font-size: 12px;
    min-width: 56px;
  }
}

@media (max-width: 320px) {
  .container,
  .site-header .container,
  .hero .container,
  .about-hero-inner,
  .ready-section-inner,
  .footer-main,
  .footer-bottom {
    width: min(100% - 16px, 100%);
  }

  .header-actions .btn.small {
    font-size: 11px;
    letter-spacing: 0.03em;
    padding-inline: 10px;
  }

  :root {
    --brand-logo-height: 48px;
  }

  .menu-toggle {
    padding: 8px 10px;
    min-height: 40px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: 1.65rem;
  }

  .hero-cta .btn {
    min-height: 44px;
    font-size: 12px;
  }
}

/* Layered product cards */
.our-products-home {
  background: #f4f4f2;
}

.our-products {
  scroll-margin-top: 104px;
}

.our-products-home::before {
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.35;
}

.our-products-home::after {
  display: none;
}

.our-products-home .our-products-header {
  max-width: 780px;
  margin-right: auto;
  margin-left: 0;
  text-align: left;
}

.our-products-home .our-products-header h2::after {
  margin-left: 0;
}

.our-products-home .our-products-grid,
.page-products .our-products-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 2.4vw, 34px);
}

.our-products-home .our-product-tile,
.page-products .our-products-page .our-product-tile {
  position: relative;
  border-radius: 8px;
  background: #04070d;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.12);
  overflow: hidden;
}

.our-products-home .our-product-tile:hover,
.our-products-home .our-product-tile:focus-within,
.page-products .our-products-page .our-product-tile:hover,
.page-products .our-products-page .our-product-tile:focus-within {
  transform: translateY(-8px);
  border-color: rgba(13, 148, 136, 0.32);
  box-shadow: 0 26px 58px rgba(17, 17, 17, 0.18);
}

.our-products-home .our-product-tile-link,
.page-products .our-products-page .our-product-tile-link {
  position: relative;
  display: block;
  min-height: clamp(500px, 40vw, 640px);
  padding: 0;
  color: #fff;
  overflow: hidden;
}

.page-products .our-products-page .our-product-tile-link {
  min-height: clamp(480px, 38vw, 610px);
}

.our-products-home .our-product-tile-link:focus-visible,
.page-products .our-products-page .our-product-tile-link:focus-visible {
  outline: 2px solid #2f6fed;
  outline-offset: 4px;
}

.our-products-home .our-product-tile-media,
.page-products .our-products-page .our-product-tile-media {
  position: absolute;
  inset: 0;
  height: 100%;
  min-height: 0;
  margin: 0;
  border-radius: 0;
  aspect-ratio: auto;
  background: #111;
}

.page-products .our-products-page .our-product-tile-media::after {
  display: none;
}

.our-products-home .our-product-tile-media img,
.page-products .our-products-page .our-product-tile-media img {
  object-position: center center;
  transform: scale(1.03);
}

.our-products-home .our-product-tile:hover .our-product-tile-media img,
.our-products-home .our-product-tile:focus-within .our-product-tile-media img,
.page-products .our-products-page .our-product-tile:hover .our-product-tile-media img,
.page-products .our-products-page .our-product-tile:focus-within .our-product-tile-media img {
  transform: scale(1.12);
}

.our-products-home .our-product-overlay,
.page-products .our-products-page .our-product-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 1;
  background:
    linear-gradient(180deg, rgba(4, 7, 13, 0.02) 0%, rgba(4, 7, 13, 0.16) 48%, rgba(4, 7, 13, 0.72) 100%),
    linear-gradient(90deg, rgba(4, 7, 13, 0.46) 0%, rgba(4, 7, 13, 0.1) 58%, rgba(4, 7, 13, 0.01) 100%);
}

.our-products-home .our-product-tile:hover .our-product-overlay,
.our-products-home .our-product-tile:focus-within .our-product-overlay,
.page-products .our-products-page .our-product-tile:hover .our-product-overlay,
.page-products .our-products-page .our-product-tile:focus-within .our-product-overlay {
  opacity: 0.78;
}

.our-products-home .our-product-tile-body,
.page-products .our-products-page .our-product-tile-body {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 68%;
  padding: 30px 26px 28px;
  color: #fff;
  background: linear-gradient(180deg, transparent 0%, rgba(4, 7, 13, 0.34) 42%, rgba(4, 7, 13, 0.82) 100%);
}

.our-product-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.our-product-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.our-products-home .our-product-tile-body h3,
.page-products .our-products-page .our-product-tile-body h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1.45rem;
  line-height: 1.12;
  letter-spacing: 0;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.28);
}

.our-products-home .our-product-tagline,
.page-products .our-products-page .our-product-tagline {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.55;
}

.our-products-home .our-product-tile-cta,
.page-products .our-products-page .our-product-tile-cta {
  color: #fff;
  font-size: 0.94rem;
  font-weight: 700;
}

@media (max-width: 1200px) {
  .our-products-home .our-products-grid,
  .page-products .our-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .our-products-home .our-product-tile-link,
  .page-products .our-products-page .our-product-tile-link {
    min-height: 470px;
  }
}

@media (max-width: 680px) {
  .our-products {
    scroll-margin-top: 76px;
  }

  .our-products-home .our-products-header {
    text-align: left;
  }

  .our-products-home .our-products-grid,
  .page-products .our-products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .our-products-home .our-product-tile-link,
  .page-products .our-products-page .our-product-tile-link {
    min-height: 410px;
  }

  .our-products-home .our-product-tile-body,
  .page-products .our-products-page .our-product-tile-body {
    padding: 26px 22px 24px;
  }

  .our-products-home .our-product-tile-body h3,
  .page-products .our-products-page .our-product-tile-body h3 {
    font-size: 1.32rem;
  }

}

@media (max-width: 380px) {
  .our-products-home .our-product-tile-link,
  .page-products .our-products-page .our-product-tile-link {
    min-height: 390px;
  }

  .our-product-icon {
    width: 44px;
    height: 44px;
  }
}

/* Brand finish CTA */
.ready-section,
.page-products .ready-section,
.page-about .ready-section,
.page-contact .ready-section {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.58), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(235, 236, 228, 0.74), transparent 34%),
    linear-gradient(135deg, #d9d9d1 0%, #c8c8c0 48%, #b8b9b1 100%);
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  color: #101312;
}

.ready-section::before,
.page-products .ready-section::before,
.page-about .ready-section::before,
.page-contact .ready-section::before {
  content: "";
  position: absolute;
  inset: -80px 0;
  display: block;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(217, 217, 209, 0.96) 0%, rgba(217, 217, 209, 0.6) 34%, rgba(217, 217, 209, 0.18) 68%),
    url("assets/images/ready-overlay.png") right center / cover no-repeat;
  opacity: 0.82;
  pointer-events: none;
  transform: translate3d(0, var(--ready-pattern-y, 0px), 0);
  transition: transform 0.12s linear;
  will-change: transform;
}

.ready-section::after,
.page-products .ready-section::after,
.page-about .ready-section::after,
.page-contact .ready-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(217, 217, 209, 0.98) 0%, rgba(217, 217, 209, 0.88) 28%, rgba(217, 217, 209, 0.32) 54%, rgba(184, 185, 177, 0.12) 100%),
    radial-gradient(circle at 24% 50%, rgba(255, 255, 255, 0.46), transparent 42%);
  pointer-events: none;
}

.ready-sketch {
  display: none;
}

.ready-fence-posts {
  display: none;
}

.ready-pattern-rect {
  fill: none;
  stroke: rgba(17, 17, 17, 0.46);
  stroke-width: 3.2;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  opacity: 0;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 8px 12px rgba(255, 255, 255, 0.34));
  animation: readyPlanDraw 12s cubic-bezier(0.68, 0, 0.2, 1) infinite;
}

.ready-pattern-rect-2 {
  animation-delay: 1.6s;
}

.ready-pattern-rect-3 {
  animation-delay: 3.2s;
}

.ready-section-inner {
  z-index: 1;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  max-width: 1360px;
}

.ready-section-copy {
  max-width: 720px;
}

.ready-section-copy::before {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, #111, rgba(17, 17, 17, 0.18));
}

.ready-section-eyebrow {
  color: rgba(34, 37, 36, 0.72);
}

.ready-section-copy h2 {
  color: #101312;
  text-shadow: none;
}

.ready-section-copy p {
  color: rgba(35, 39, 39, 0.68);
}

.ready-section-inner .btn,
.ready-section-inner .btn-outline-dark {
  --btn-border: #111;
  --btn-fill: rgba(255, 255, 255, 0.08);
  --btn-ink: #111;
  color: #111;
  border-color: var(--btn-border);
  backdrop-filter: blur(6px);
}

.ready-section-inner .btn::after,
.ready-section-inner .btn-outline-dark::after {
  border-left-color: color-mix(in srgb, currentColor 34%, transparent);
}

.ready-section-inner .btn:hover,
.ready-section-inner .btn-outline-dark:hover {
  --btn-fill: rgba(17, 17, 17, 0.07);
  --btn-border: #111;
}

@keyframes readyPlanDraw {
  0% {
    opacity: 0;
    stroke-dashoffset: 1;
    transform: translate3d(-10px, 8px, 0);
  }

  10% {
    opacity: 0.72;
  }

  34%,
  72% {
    opacity: 0.72;
    stroke-dashoffset: 0;
    transform: translate3d(0, 0, 0);
  }

  86%,
  100% {
    opacity: 0;
    stroke-dashoffset: 0;
    transform: translate3d(8px, -6px, 0);
  }
}

@media (max-width: 900px) {
  .ready-section::before,
  .page-products .ready-section::before,
  .page-about .ready-section::before,
  .page-contact .ready-section::before {
    background-position: 62% center;
    opacity: 0.72;
  }

  .ready-section::after,
  .page-products .ready-section::after,
  .page-about .ready-section::after,
  .page-contact .ready-section::after {
    background:
      linear-gradient(180deg, rgba(217, 217, 209, 0.94) 0%, rgba(217, 217, 209, 0.84) 54%, rgba(217, 217, 209, 0.62) 100%),
      radial-gradient(circle at 20% 38%, rgba(255, 255, 255, 0.48), transparent 42%);
    opacity: 1;
  }

  .ready-sketch {
    inset: 28% -104% 0 42%;
    width: 150%;
    height: 70%;
    opacity: 0.58;
  }

  .ready-pattern-rect {
    stroke-width: 2.5;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ready-section::before,
  .page-products .ready-section::before,
  .page-about .ready-section::before,
  .page-contact .ready-section::before {
    transform: none;
    transition: none;
  }

  .ready-pattern-rect {
    animation: none;
    opacity: 0.46;
    stroke-dashoffset: 0;
  }
}

.hero-controls {
  display: flex !important;
  justify-content: flex-start;
  pointer-events: none;
}

.hero-controls .hero-nav {
  display: none !important;
}

.hero-slider-dots {
  flex: 0 0 auto;
  gap: 16px;
  pointer-events: auto;
}

.hero-slider-dots button,
.page-home .hero-slider-dots button {
  width: 18px;
  height: 46px;
  border: 0;
  border-radius: 0;
  background: transparent;
  opacity: 0.46;
  overflow: visible;
  transform: none;
}

.hero-slider-dots button:hover {
  background: transparent;
  opacity: 0.78;
  transform: translateY(-2px);
}

.hero-slider-dots button::before,
.hero-slider-dots button::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: 0;
  left: 2px;
  height: 38px;
  border-radius: 1px;
  clip-path: polygon(0 26%, 50% 0, 100% 26%, 100% 100%, 0 100%);
}

.hero-slider-dots button::before {
  z-index: 2;
  border: 2px solid #fff;
  background: transparent;
}

.hero-slider-dots button::after {
  inset: auto 2px 0;
  z-index: 1;
  height: 38px;
  width: auto;
  background: #fff;
  opacity: 0;
  animation: none !important;
  transition: opacity 0.25s ease;
}

.hero-slider-dots button.is-active {
  opacity: 1;
}

.hero-slider-dots button.is-active::after {
  opacity: 0.92;
}

/* Site-wide alignment rhythm */
:root {
  --site-gutter: clamp(22px, 2.1vw, 44px);
  --site-wide: 1960px;
  --site-content: min(calc(100% - (var(--site-gutter) * 2)), var(--site-wide));
}

.site-header .container,
.hero .container,
.page-hero-inner,
.about-hero-inner,
.about-intro-grid,
.about-company-inner,
.about-specs-inner,
.about-faq-inner,
.our-products-page .container.our-products-inner,
.page-products .our-products-page .container.our-products-inner,
.our-products-home .container.our-products-inner,
.products-grid,
.product-highlights-grid,
.custom-solution-inner,
.info-grid,
.split-layout,
.solutions-layout,
.contact-channels-inner,
.contact-main-inner,
.contact-help .container,
.ready-section-inner,
.footer-main,
.footer-bottom {
  width: var(--site-content);
}

.page-home .hero-content {
  width: min(calc(100% - (var(--site-gutter) * 2)), 820px);
  margin-left: var(--site-gutter);
  margin-right: auto;
  padding-left: 0;
}

.page-home .hero-controls {
  width: var(--site-content);
  padding-left: 0;
  padding-right: 0;
}

.our-products-inner,
.our-products-home .container.our-products-inner,
.page-products .our-products-page .container.our-products-inner,
.footer-main,
.footer-bottom {
  max-width: var(--site-wide);
}

@media (max-width: 900px) {
  :root {
    --site-gutter: 18px;
  }

  .page-home .hero-content {
    width: var(--site-content);
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 560px) {
  :root {
    --site-gutter: 14px;
  }
}

/* About page redesign */
.page-about {
  background: #f3f3f3;
}

.page-about .about-hero {
  min-height: clamp(560px, 74vh, 820px);
}

.page-about .about-hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 7, 13, 0.82) 0%, rgba(4, 7, 13, 0.56) 42%, rgba(4, 7, 13, 0.18) 100%),
    linear-gradient(180deg, rgba(4, 7, 13, 0.18) 0%, rgba(4, 7, 13, 0.76) 100%);
}

.page-about .about-hero-media img {
  object-position: center 56%;
}

.about-company-redesign {
  background:
    linear-gradient(180deg, #f3f3f3 0%, #fff 100%);
}

.about-company-redesign .about-company-layout {
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
}

.about-company-redesign .about-company-photo {
  border-radius: 8px;
}

.about-company-redesign .about-company-story,
.about-company-redesign .about-company-why {
  border-radius: 8px;
}

.page-about .about-gallery > .container,
.page-about .about-reasons > .container,
.page-about .about-colours > .container,
.page-about .about-specs-inner {
  width: var(--site-content);
}

.about-capability {
  position: relative;
  overflow: hidden;
  min-height: clamp(560px, 58vw, 760px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, #d9d9d1 0%, #c8c8c0 54%, #b8b9b1 100%);
}

.about-capability::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(30deg, transparent calc(50% - 1px), rgba(65, 68, 58, 0.12) 50%, transparent calc(50% + 1px)),
    linear-gradient(150deg, transparent calc(50% - 1px), rgba(65, 68, 58, 0.12) 50%, transparent calc(50% + 1px));
  background-size: 148px 86px;
  opacity: 0.7;
  pointer-events: none;
}

.about-capability::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(217, 217, 209, 0.98) 0%, rgba(217, 217, 209, 0.92) 36%, rgba(217, 217, 209, 0.42) 60%, rgba(217, 217, 209, 0) 100%);
  pointer-events: none;
}

.about-capability .about-intro-grid {
  position: static;
  min-height: inherit;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
  align-items: center;
}

.about-capability .about-intro-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: clamp(72px, 8vw, 120px) 0;
}

.about-capability .about-intro-copy p {
  color: rgba(20, 23, 22, 0.72);
}

.about-capability .about-intro-media {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 0;
  width: min(64vw, 1180px);
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  filter: none;
  background: transparent;
  pointer-events: none;
}

.about-capability .about-intro-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  border-radius: 0;
  box-shadow: none;
  filter: none;
  transform: none !important;
  transition: none !important;
}

.about-capability .about-intro-media:hover img,
.about-capability .about-intro-media:focus-within img {
  transform: none !important;
}

.about-range {
  background: #f3f3f3;
}

.about-range .about-gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-range .about-gallery-item {
  border-radius: 8px;
}

.about-range .about-gallery-item .zoom-media {
  aspect-ratio: 5 / 4;
}

.about-process {
  background: #090d14;
  color: #fff;
}

.about-process .about-section-eyebrow {
  color: #5eead4;
}

.about-process .about-section-header h2,
.about-process .about-reason-card h3 {
  color: #fff;
}

.about-process .about-reason-card {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.about-process .about-reason-card p {
  color: rgba(255, 255, 255, 0.7);
}

.about-process .about-reason-icon {
  background: rgba(94, 234, 212, 0.12);
}

.about-process .about-reason-icon svg {
  stroke: #5eead4;
}

.about-finishes {
  background: #fff;
}

.about-finishes .about-colour-card {
  border-radius: 8px;
}

.about-values {
  background: #f3f3f3;
}

.about-values .about-specs-inner {
  width: var(--site-content);
}

.about-values .about-specs-table-wrap {
  max-width: 1120px;
  margin: 0 auto;
  border-radius: 8px;
}

@media (max-width: 1200px) {
  .about-range .about-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .about-company-redesign .about-company-layout {
    grid-template-columns: 1fr;
  }

  .about-capability {
    min-height: 0;
    align-items: stretch;
  }

  .about-capability::after {
    background:
      linear-gradient(180deg, rgba(217, 217, 209, 0.98) 0%, rgba(217, 217, 209, 0.95) 48%, rgba(217, 217, 209, 0.56) 72%, rgba(217, 217, 209, 0.08) 100%);
  }

  .about-capability .about-intro-grid {
    display: block;
    min-height: 0;
    padding-top: clamp(56px, 12vw, 88px);
    padding-bottom: clamp(240px, 58vw, 400px);
  }

  .about-capability .about-intro-copy {
    max-width: 100%;
    padding: 0;
  }

  .about-capability .about-intro-media {
    top: auto;
    left: 0;
    width: 100%;
    height: clamp(240px, 58vw, 400px);
    min-height: 0;
  }

  .about-capability .about-intro-media img {
    object-position: right bottom;
  }
}

@media (max-width: 640px) {
  .about-range .about-gallery-grid {
    grid-template-columns: 1fr;
  }

  .about-capability .about-intro-grid {
    padding-bottom: clamp(220px, 76vw, 340px);
  }

  .about-capability .about-intro-media {
    height: clamp(220px, 76vw, 340px);
  }
}

/* Public polish and page standardisation */
html {
  scroll-padding-top: 104px;
}

body {
  text-rendering: optimizeLegibility;
}

img {
  height: auto;
}

main {
  background: inherit;
}

:target {
  scroll-margin-top: 112px;
}

.page-hero-actions,
.about-company-actions,
.product-actions,
.hero-cta,
.about-hero-cta {
  row-gap: 12px;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-standard {
  background: #f3f3f3;
}

.page-standard .page-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 430px;
  padding: 132px 0 76px;
  background:
    linear-gradient(90deg, rgba(243, 243, 243, 0.98) 0%, rgba(243, 243, 243, 0.9) 48%, rgba(217, 217, 209, 0.72) 100%),
    linear-gradient(30deg, transparent calc(50% - 1px), rgba(65, 68, 58, 0.08) 50%, transparent calc(50% + 1px)),
    linear-gradient(150deg, transparent calc(50% - 1px), rgba(65, 68, 58, 0.08) 50%, transparent calc(50% + 1px));
  background-size: auto, 148px 86px, 148px 86px;
}

.page-standard .page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: min(44vw, 620px);
  height: 72%;
  background: url("assets/images/about-site-plan.png") right bottom / cover no-repeat;
  opacity: 0.26;
  pointer-events: none;
}

.page-resources .page-hero::after {
  inset: 0 0 0 auto;
  width: min(62vw, 920px);
  height: 100%;
  background-image: url("assets/images/terms-policy-hero.png");
  background-position: right bottom;
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.24;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.16) 18%, #000 44%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.16) 18%, #000 44%, #000 100%);
}

.page-standard .page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-standard .content-section,
.page-standard .solutions {
  padding: clamp(56px, 7vw, 88px) 0 clamp(72px, 8vw, 104px);
  background: #f3f3f3;
}

.policy-section {
  background:
    linear-gradient(180deg, #f3f3f3 0%, #fff 100%);
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.policy-nav {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 0;
  padding: 0;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(17, 17, 17, 0.055);
  overflow: hidden;
}

.policy-nav h2 {
  margin: 0;
  padding: 20px 22px;
  background: #090d14;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-nav a {
  display: block;
  padding: 18px 22px;
  border-top: 1px solid rgba(17, 17, 17, 0.07);
  color: #4f4f52;
  font-size: 14px;
  font-weight: 700;
}

.policy-nav a:hover {
  color: #111;
}

.policy-content {
  display: grid;
  gap: 20px;
}

.policy-card {
  scroll-margin-top: 116px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(17, 17, 17, 0.055);
}

.policy-card h2 {
  margin: 0 0 18px;
  font-size: clamp(1.65rem, 2.6vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.policy-card p {
  margin: 0 0 16px;
  color: #55595e;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.68;
}

.policy-card p:last-child {
  margin-bottom: 0;
}

.policy-card a {
  color: #0d9488;
  font-weight: 700;
}

.policy-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #55595e;
}

.page-standard .info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.2vw, 30px);
  align-items: stretch;
}

.page-case-studies .info-grid,
.page-solutions .solutions-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card,
.split-card,
.solution-card,
.contact-channel-card,
.contact-help-card,
.contact-form-panel,
.contact-info-card,
.about-company-story,
.about-company-why,
.about-gallery-item,
.about-colour-card,
.about-reason-card {
  border-radius: 8px;
}

.info-card,
.split-card,
.solution-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.07);
  box-shadow: 0 12px 34px rgba(17, 17, 17, 0.055);
}

.info-card {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 2.6vw, 34px);
}

.info-card img {
  width: calc(100% + clamp(48px, 5.2vw, 68px));
  max-width: none;
  aspect-ratio: 16 / 10;
  height: auto;
  margin: calc(clamp(24px, 2.6vw, 34px) * -1) calc(clamp(24px, 2.6vw, 34px) * -1) 24px;
  object-fit: cover;
}

.info-card p {
  flex: 1;
}

.info-card .btn,
.split-card .btn,
.solution-copy .btn {
  align-self: flex-start;
  margin-top: auto;
}

.solution-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.solution-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dfe2e3;
}

.solution-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-copy {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 2.8vw, 36px);
}

.solution-copy p {
  flex: 1;
}

.page-hero h1,
.about-hero-inner h1,
.hero h1,
.our-products-header h2,
.about-section-header h2,
.ready-section-copy h2,
.product-details h2 {
  overflow-wrap: anywhere;
}

.footer-grid a,
.contact-channel-link,
.footer-bottom a {
  overflow-wrap: anywhere;
}

.btn {
  max-width: 100%;
}

.btn,
.header-actions .btn,
.menu-toggle,
.main-nav a {
  -webkit-tap-highlight-color: transparent;
}

.site-header.is-scrolled,
.page-home .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
}

.page-standard .site-header.is-scrolled {
  background: rgba(243, 243, 243, 0.96);
}

.reveal-left,
.reveal-right {
  transform: translateY(36px);
}

.reveal-left.is-visible,
.reveal-right.is-visible {
  transform: translateY(0);
}

@media (hover: hover) {
  .info-card:hover,
  .split-card:hover,
  .solution-card:hover {
    border-color: rgba(13, 148, 136, 0.18);
    box-shadow: 0 20px 46px rgba(17, 17, 17, 0.09);
  }
}

@media (max-width: 1200px) {
  .page-standard .info-grid,
  .page-case-studies .info-grid,
  .page-solutions .solutions-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 84px;
  }

  :target {
    scroll-margin-top: 92px;
  }

  .page-standard .page-hero {
    min-height: 380px;
    padding: 110px 0 58px;
  }

  .page-standard .page-hero::after {
    width: 100%;
    height: 58%;
    opacity: 0.16;
  }

  .page-resources .page-hero::after {
    inset: auto 0 0 auto;
    width: 100%;
    height: 50%;
    background-position: right bottom;
    background-size: cover;
    opacity: 0.12;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.18) 28%, #000 68%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.18) 28%, #000 68%, #000 100%);
  }

  .page-standard .info-grid,
  .page-case-studies .info-grid,
  .page-solutions .solutions-layout,
  .contact-channels-grid,
  .contact-help-grid {
    grid-template-columns: 1fr;
  }

  .main-nav.open {
    top: calc(100% + 8px);
    width: 100%;
  }

  .reveal-left,
  .reveal-right {
    transform: translateY(28px);
  }

  .reveal-left.is-visible,
  .reveal-right.is-visible {
    transform: translateY(0);
  }

  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-nav {
    position: static;
  }

  .product-thumbs {
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .page-hero-actions,
  .about-company-actions,
  .product-actions,
  .about-hero-cta,
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .page-hero-actions .btn,
  .about-company-actions .btn,
  .product-actions .btn,
  .about-hero-cta .btn,
  .hero-cta .btn,
  .info-card .btn,
  .split-card .btn,
  .solution-copy .btn,
  .contact-form .btn {
    width: 100%;
    min-width: 0;
  }

  .page-standard .page-hero {
    min-height: 340px;
    padding: 92px 0 46px;
  }

  .info-card,
  .split-card,
  .solution-copy {
    padding: 22px 18px 24px;
  }

  .info-card img {
    width: calc(100% + 36px);
    margin: -22px -18px 20px;
  }

  .footer-brand-col p {
    max-width: 100%;
  }

  .policy-card {
    padding: 24px 18px;
  }

  .policy-nav {
    padding: 0;
  }

  .footer-social {
    justify-content: flex-start;
    padding-bottom: 24px;
  }
}

@media (max-width: 420px) {
  .header-actions .btn {
    max-width: 112px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-row {
    grid-template-columns: auto auto auto;
  }
}

@media (max-width: 360px) {
  .header-actions {
    display: none;
  }

  .nav-row {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    grid-column: 2;
  }
}

.page-products .product-gallery-image {
  height: clamp(300px, 28vw, 440px);
}

.page-products .product-thumb img {
  height: 100%;
  transform: none;
}

.page-products .product-row:hover .product-media img.product-gallery-image,
.page-products .product-row:focus-within .product-media img.product-gallery-image,
.page-products .product-row:hover .product-media .product-thumb img,
.page-products .product-row:focus-within .product-media .product-thumb img {
  transform: none;
}

@media (max-width: 640px) {
  .page-products .product-gallery-image {
    height: clamp(220px, 55vw, 320px);
  }

  .product-gallery-arrow {
    width: 40px;
    height: 40px;
  }

  .product-gallery-arrow span {
    width: 12px;
    height: 12px;
    border-width: 2px;
  }

  .product-thumb {
    flex-basis: 76px;
    height: 64px;
  }

  .page-products .product-thumb img {
    height: 100%;
  }
}
