:root {
  --ink: #111416;
  --coal: #191d1f;
  --deep: #242827;
  --paper: #f4f1ea;
  --white: #fffdf8;
  --mist: #e8ece8;
  --line: rgba(17, 20, 22, 0.14);
  --line-light: rgba(255, 253, 248, 0.24);
  --muted: #6d7370;
  --red: #d0222d;
  --copper: #b66f3d;
  --sage: #4d7067;
  --blue: #355e72;
  --shadow: 0 24px 80px rgba(17, 20, 22, 0.16);
  --radius: 8px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 20px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.back-to-top {
  position: fixed;
  right: clamp(16px, 2vw, 28px);
  bottom: clamp(16px, 2vw, 28px);
  z-index: 90;
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(185, 25, 38, 0.96), rgba(134, 17, 28, 0.96));
  color: var(--white);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    0 18px 42px rgba(17, 20, 22, 0.22),
    0 12px 28px rgba(208, 34, 45, 0.2);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    0 24px 54px rgba(17, 20, 22, 0.26),
    0 16px 34px rgba(208, 34, 45, 0.26);
}

.back-to-top svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.system-promise-strip {
  display: none;
}

@media (min-width: 1280px) {
  .page-hero.image-hero .page-hero-content,
  .system-promise-strip .shell,
  .section-white > .product-band,
  .product-gallery-section > .shell,
  .section-paper > .three-column,
  .section-ink > .spec-layout,
  .product-lineup-section > .shell,
  .catalogue-grid,
  .filters {
    width: min(1420px, calc(100% - 64px));
  }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 30px;
  color: var(--ink);
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 253, 253, 0.98) 34%, rgba(255, 242, 243, 0.97) 64%, rgba(255, 228, 230, 0.96) 100%),
    var(--white);
  border-bottom: 1px solid rgba(208, 34, 45, 0.18);
  box-shadow:
    inset 0 -2px 0 rgba(208, 34, 45, 0.07),
    0 14px 42px rgba(17, 20, 22, 0.08);
  backdrop-filter: blur(12px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 253, 253, 0.98) 32%, rgba(255, 241, 242, 0.97) 62%, rgba(255, 224, 227, 0.96) 100%),
    var(--white);
  color: var(--ink);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.site-header .brand {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
}

.brand::before {
  content: "";
  display: block;
  width: 154px;
  height: 52px;
  background: url("assets/sections/brand-partners/nexia-logo-hd-cropped.webp") center / contain no-repeat;
  flex: 0 0 auto;
}

.wordmark {
  display: none;
  align-items: center;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  color: currentColor;
}

.wordmark-e {
  color: var(--red);
  border-left: 3px solid var(--red);
  border-right: 3px solid var(--red);
  padding: 0 2px;
  margin: 0 1px;
}

.brand-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.site-header .brand-copy {
  display: block;
  margin-left: 1px;
}

.site-header .brand-copy strong {
  display: none;
}

.site-header .brand-copy small {
  display: block;
  color: rgba(208, 34, 45, 0.9);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  opacity: 1;
  white-space: nowrap;
}

.brand-copy strong {
  font-size: 14px;
  line-height: 1.1;
}

.brand-copy small {
  color: currentColor;
  opacity: 0.72;
  font-size: 11px;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.main-nav > a,
.nav-product-button {
  position: relative;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav > a::after,
.nav-product-button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.main-nav > a:hover::after,
.main-nav > a.is-active::after,
.nav-product-item:hover .nav-product-button::after,
.nav-product-item.is-open .nav-product-button::after,
.nav-product-item.is-active .nav-product-button::after {
  transform: scaleX(1);
}

.nav-product-item {
  position: relative;
}

.nav-product-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font-family: inherit;
  cursor: pointer;
}

.nav-product-button::before {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  order: 2;
  opacity: 0.62;
}

.product-mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translate(-46%, 10px);
  min-width: 258px;
  overflow: visible;
  border: 1px solid rgba(208, 34, 45, 0.16);
  border-top: 3px solid #d0222d;
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 24px 70px rgba(17, 20, 22, 0.16),
    0 14px 34px rgba(208, 34, 45, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.product-mega-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 14px;
}

.nav-product-item:hover .product-mega-menu,
.nav-product-item:focus-within .product-mega-menu,
.nav-product-item.is-open .product-mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-46%, 0);
}

.product-mega-menu a::after {
  display: none;
}

.mega-product-tabs {
  display: grid;
  align-content: start;
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 234, 236, 0.92));
}

.mega-category {
  position: relative;
}

.mega-product-tabs > a,
.mega-category > a,
.mega-product-panel a {
  display: flex;
  min-height: 62px;
  align-items: center;
  padding: 0 40px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.01em;
  text-transform: none;
}

.mega-product-tabs > a,
.mega-category > a {
  border-bottom: 1px solid rgba(208, 34, 45, 0.12);
  color: #8e121e;
}

.mega-category > a.is-highlighted {
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(208, 34, 45, 0.86), rgba(185, 25, 38, 0.72));
  color: var(--white);
}

.mega-category > a.is-highlighted::before {
  content: "";
  order: 2;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.mega-product-panel {
  position: absolute;
  left: calc(100% - 1px);
  top: -3px;
  z-index: 2;
  display: grid;
  align-content: start;
  min-width: 328px;
  max-height: min(72vh, 620px);
  padding: 18px 0;
  border: 1px solid rgba(208, 34, 45, 0.16);
  border-top: 3px solid #d0222d;
  background: rgba(255, 255, 255, 0.99);
  box-shadow:
    0 24px 70px rgba(17, 20, 22, 0.16),
    0 14px 34px rgba(208, 34, 45, 0.12);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.mega-product-panel::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  width: 10px;
}

.mega-category:hover .mega-product-panel,
.mega-category.is-open .mega-product-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.mega-product-panel a {
  min-height: 40px;
  padding: 8px 40px;
}

.mega-product-panel a:hover {
  background: linear-gradient(90deg, rgba(208, 34, 45, 0.08), rgba(208, 34, 45, 0));
  color: #86111c;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-social-actions {
  gap: 9px;
}

.social-link {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(17, 20, 22, 0.12);
  border-radius: 6px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.social-link:hover {
  transform: translateY(-2px);
}

.social-link svg {
  display: block;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link svg path,
.social-link svg rect,
.social-link svg circle {
  vector-effect: non-scaling-stroke;
}

.social-link[aria-label*="Facebook"] svg,
.social-link[aria-label*="LinkedIn"] svg {
  fill: currentColor;
  stroke: none;
}

.social-link[aria-label*="Instagram"] {
  color: var(--white);
  border-color: rgba(225, 48, 108, 0.32);
  background:
    radial-gradient(circle at 30% 105%, #fdf497 0 18%, #fd5949 38%, #d6249f 62%, #285aeb 100%);
}

.social-link[aria-label*="Instagram"]:hover {
  border-color: #d6249f;
  background:
    radial-gradient(circle at 30% 105%, #fdf497 0 18%, #fd5949 38%, #d6249f 62%, #285aeb 100%);
}

.social-link[aria-label*="Facebook"] {
  color: #1877f2;
  border-color: rgba(24, 119, 242, 0.24);
  background: #fff;
}

.social-link[aria-label*="Facebook"]:hover {
  color: var(--white);
  border-color: #1877f2;
  background: #1877f2;
}

.social-link[aria-label*="LinkedIn"] {
  color: #0a66c2;
  border-color: rgba(10, 102, 194, 0.24);
  background: #fff;
}

.social-link[aria-label*="LinkedIn"]:hover {
  color: var(--white);
  border-color: #0a66c2;
  background: #0a66c2;
}

.phone-link {
  display: none;
}

.site-header .button {
  background: rgba(208, 34, 45, 0.12);
  border-color: rgba(208, 34, 45, 0.36);
  color: var(--red);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.56);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 38px;
  padding: 0 14px;
  font-size: 12px;
}

.button-light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.button-line-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.58);
}

.button-whatsapp-light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.button-whatsapp-light:hover {
  background: var(--white);
  color: var(--ink);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 4px;
  background: transparent;
  color: currentColor;
  place-items: center;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.menu-button span + span {
  margin-top: 5px;
}

.hero {
  position: relative;
  min-height: 112svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--coal);
  padding: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 260ms ease;
}

.hero-video.is-ready {
  opacity: 1;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay,
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(62, 5, 12, 0.82), rgba(142, 18, 30, 0.34) 52%, rgba(255, 244, 245, 0.12)),
    linear-gradient(0deg, rgba(17, 20, 22, 0.68), rgba(17, 20, 22, 0.1) 46%);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 20, 22, 0.18), rgba(17, 20, 22, 0.08)),
    linear-gradient(0deg, rgba(17, 20, 22, 0.16), rgba(17, 20, 22, 0.02) 52%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 76px;
  transform: translateX(-24px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.hero .eyebrow,
.page-hero .eyebrow,
.section-ink .eyebrow,
.cta-section .eyebrow {
  color: #ff7279;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--sans);
  line-height: 1.03;
  font-weight: 800;
}

h1 {
  max-width: 840px;
  margin-bottom: 22px;
  font-size: 76px;
}

h2 {
  margin-bottom: 18px;
  font-size: 46px;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-copy,
.page-hero-content p,
.section-heading p,
.intro-copy p,
.film-copy p,
.rich-copy p {
  max-width: 680px;
  color: rgba(255, 253, 248, 0.84);
  font-size: 18px;
  overflow-wrap: break-word;
}

.section-heading p,
.intro-copy p,
.rich-copy p {
  color: var(--muted);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 3;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 0;
  background: rgba(17, 20, 22, 0.58);
  backdrop-filter: blur(12px);
}

.hero-proof span {
  display: grid;
  gap: 2px;
  padding: 18px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 253, 248, 0.72);
  font-size: 13px;
}

.hero-proof span:last-child {
  border-right: 0;
}

.hero-proof strong {
  color: var(--white);
  font-size: 15px;
}

.intro-band {
  background: var(--deep);
  color: var(--white);
  padding: 34px 0 42px;
}

.intro-layout,
.split-layout,
.film-layout,
.spec-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 58px;
  align-items: start;
}

.intro-statement h2,
.film-copy h2,
.cta-layout h2 {
  color: var(--white);
}

.section {
  padding: 104px 0;
}

main > .section {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

main > .section:first-of-type {
  content-visibility: visible;
  contain-intrinsic-size: auto;
}

.floating-impact {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 95;
  transform: translateY(-50%);
  display: grid;
  gap: 4px;
  width: 144px;
  padding: 18px 14px 17px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-right: 0;
  border-radius: 14px 0 0 14px;
  background:
    linear-gradient(124deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.018) 42%, rgba(255, 243, 244, 0.028) 100%),
    rgba(255, 255, 255, 0.008);
  color: var(--ink);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.58),
    inset 0 -1px 0 rgba(185, 25, 38, 0.07),
    0 16px 42px rgba(17, 20, 22, 0.065),
    0 8px 20px rgba(185, 25, 38, 0.045);
  -webkit-backdrop-filter: blur(2px) saturate(1.03);
  backdrop-filter: blur(2px) saturate(1.03);
}

.floating-impact::before {
  content: "";
  position: absolute;
  inset: 1px 1px auto 1px;
  height: 34%;
  z-index: 0;
  border-radius: 12px 0 42px 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.21), rgba(255, 255, 255, 0));
  opacity: 0.62;
  pointer-events: none;
}

.floating-impact::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 13px;
  width: 2px;
  height: 45px;
  background: linear-gradient(180deg, rgba(185, 25, 38, 0), rgba(185, 25, 38, 0.62), rgba(185, 25, 38, 0));
  pointer-events: none;
}

.floating-impact span,
.floating-impact em {
  position: relative;
  z-index: 1;
  color: rgba(102, 25, 31, 0.82);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.64);
}

.floating-impact strong {
  position: relative;
  z-index: 1;
  color: rgba(124, 16, 25, 0.96);
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  text-shadow: 0 1px 5px rgba(255, 255, 255, 0.7);
}

.section-paper {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(185, 25, 38, 0.11), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(17, 20, 22, 0.06), transparent 28%),
    linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(255, 238, 240, 0.76)),
    var(--paper);
}

.section-white {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 244, 245, 0.56)),
    var(--white);
}

.about-preview-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.78) 0%, rgba(255, 250, 250, 0.68) 42%, rgba(255, 237, 239, 0.52) 100%),
    linear-gradient(0deg, rgba(255, 253, 248, 0.84) 0%, rgba(255, 253, 248, 0.5) 42%, rgba(105, 12, 20, 0.2) 100%),
    url("assets/sections/site-visuals/home-design.webp") center 48% / cover no-repeat,
    var(--white);
  border-bottom: 1px solid rgba(208, 34, 45, 0.1);
}

.about-preview-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0) 34%),
    linear-gradient(90deg, rgba(255, 253, 248, 0.56), rgba(255, 245, 246, 0.28) 55%, rgba(185, 25, 38, 0.06));
  pointer-events: none;
}

.about-preview-section::after {
  content: none;
}

.about-preview-layout {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(500px, 1fr) minmax(0, 0.95fr);
  gap: clamp(36px, 4.6vw, 64px);
  align-items: center;
}

.about-preview-image {
  position: relative;
  z-index: 1;
  justify-self: start;
  width: min(100%, 650px);
  max-width: 650px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: calc(var(--radius) + 16px);
  box-shadow:
    0 34px 80px rgba(17, 20, 22, 0.18),
    0 20px 46px rgba(208, 34, 45, 0.13);
  transform: translateX(-205px);
}

.about-preview-image::after {
  content: "";
  position: absolute;
  inset: auto 8% -22px 8%;
  z-index: -1;
  height: 64px;
  border-radius: 999px;
  background: rgba(208, 34, 45, 0.22);
  filter: blur(28px);
}

.about-preview-image img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  transform: none;
  border-radius: calc(var(--radius) + 16px);
  border: 0;
}

.about-preview-copy {
  max-width: 760px;
  margin-left: clamp(-210px, -10.5vw, -170px);
  padding-left: clamp(20px, 3vw, 34px);
  border-left: 3px solid #b91926;
}

.about-preview-copy h2 {
  margin-bottom: 22px;
  color: var(--ink);
}

.about-preview-copy p {
  color: rgba(17, 20, 22, 0.76);
  font-size: 17px;
  line-height: 1.82;
}

.about-preview-copy .about-lead {
  max-width: 720px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.72;
}

.about-preview-copy p:last-child {
  margin-bottom: 0;
}

.about-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.about-flow span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(208, 34, 45, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: #89131d;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.warranty-assurance-section {
  position: relative;
  overflow: hidden;
  padding: 56px 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.78) 0%, rgba(255, 250, 250, 0.68) 42%, rgba(255, 237, 239, 0.52) 100%),
    linear-gradient(0deg, rgba(255, 253, 248, 0.84) 0%, rgba(255, 253, 248, 0.5) 42%, rgba(105, 12, 20, 0.2) 100%),
    url("assets/sections/warranty%20images/warranty-background.webp") center / cover no-repeat,
    var(--white);
  color: var(--ink);
}

.warranty-assurance-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0) 34%),
    linear-gradient(90deg, rgba(255, 253, 248, 0.56), rgba(255, 245, 246, 0.28) 55%, rgba(185, 25, 38, 0.06));
  pointer-events: none;
}

.warranty-assurance-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
}

.warranty-assurance-copy {
  padding-left: 24px;
  border-left: 4px solid #b91926;
}

.warranty-assurance-copy .eyebrow {
  color: var(--muted);
}

.warranty-assurance-copy h2 {
  max-width: 560px;
  color: var(--ink);
}

.warranty-assurance-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.warranty-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
}

.warranty-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 226, 229, 0.22);
  border-radius: 14px;
  background: rgba(17, 20, 22, 0.52);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 28px 78px rgba(0, 0, 0, 0.28),
    0 18px 46px rgba(208, 34, 45, 0.18);
}

.warranty-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
  transform: translateX(-120%) skewX(-16deg);
  animation: warrantyCardShine 4.8s ease-in-out infinite;
  pointer-events: none;
}

.warranty-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.warranty-sample-viewport {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 1720px);
  overflow: hidden;
  padding: 4px 0 28px;
}

.warranty-sample-viewport::before,
.warranty-sample-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 4;
  width: min(7vw, 82px);
  pointer-events: none;
}

.warranty-sample-viewport::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 249, 249, 0.62), rgba(255, 249, 249, 0));
}

.warranty-sample-viewport::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 237, 239, 0.54), rgba(255, 237, 239, 0));
}

.warranty-sample-track {
  display: flex;
  width: max-content;
  gap: clamp(12px, 1.35vw, 22px);
  align-items: stretch;
  will-change: transform;
}

.warranty-sample-track.is-marquee-ready {
  animation: warrantySampleMarquee 74s linear infinite;
}

.warranty-sample-viewport:hover .warranty-sample-track {
  animation-play-state: paused;
}

.warranty-sample-card {
  position: relative;
  flex: 0 0 clamp(240px, 18vw, 320px);
  overflow: hidden;
  min-height: 260px;
  margin: 0;
  border: 1px solid rgba(185, 25, 38, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.74),
    0 24px 70px rgba(17, 20, 22, 0.12),
    0 18px 46px rgba(208, 34, 45, 0.12);
}

.warranty-sample-button {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.warranty-sample-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
  transform: translateX(-120%) skewX(-16deg);
  animation: warrantyCardShine 5.2s ease-in-out infinite;
  pointer-events: none;
}

.warranty-sample-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.02);
}

@keyframes warrantySampleMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.sample-lightbox {
  width: min(92vw, 1180px);
  max-width: 1180px;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
}

.sample-lightbox::backdrop {
  background: rgba(17, 20, 22, 0.78);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.sample-lightbox img {
  display: block;
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

.sample-lightbox-close {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

@keyframes warrantyCardShine {
  0%,
  42% {
    transform: translateX(-120%) skewX(-16deg);
  }

  72%,
  100% {
    transform: translateX(120%) skewX(-16deg);
  }
}

.workshop-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.78) 0%, rgba(255, 250, 250, 0.68) 42%, rgba(255, 237, 239, 0.52) 100%),
    linear-gradient(0deg, rgba(255, 253, 248, 0.84) 0%, rgba(255, 253, 248, 0.5) 42%, rgba(105, 12, 20, 0.2) 100%),
    url("assets/sections/factory%20image/factory_image.webp") center 50% / cover no-repeat,
    var(--white);
  border-top: 1px solid rgba(208, 34, 45, 0.1);
  border-bottom: 1px solid rgba(208, 34, 45, 0.12);
}

.workshop-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0) 34%),
    linear-gradient(90deg, rgba(255, 253, 248, 0.56), rgba(255, 245, 246, 0.28) 55%, rgba(185, 25, 38, 0.06));
  pointer-events: none;
}

.workshop-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
}

.workshop-intro {
  padding-left: 24px;
  border-left: 4px solid #b91926;
}

.workshop-intro h2 {
  max-width: 660px;
}

.workshop-intro p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.workshop-contact-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
}

.workshop-contact-line > span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.workshop-contact-line a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(185, 25, 38, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #86111c;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(208, 34, 45, 0.08);
}

.workshop-scope-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.workshop-scope-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(185, 25, 38, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #86111c;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(208, 34, 45, 0.08);
}

.workshop-unit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.workshop-contact-section .workshop-unit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.workshop-contact-strip {
  grid-column: 1 / -1;
  justify-content: center;
  margin-top: 0;
}

.workshop-unit-grid article {
  min-height: 232px;
  padding: 24px;
  border: 1px solid rgba(185, 25, 38, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 246, 247, 0.82));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.72),
    0 18px 44px rgba(17, 20, 22, 0.08),
    0 14px 34px rgba(208, 34, 45, 0.08);
}

.workshop-unit-grid span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(185, 25, 38, 0.14), rgba(185, 25, 38, 0.06));
  color: #86111c;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.workshop-unit-grid h3 {
  margin-top: 18px;
  font-family: var(--sans);
  font-size: 22px;
  line-height: 1.15;
}

.workshop-unit-grid p {
  margin-top: 22px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.workshop-contact-section .workshop-unit-grid article > span + p {
  margin-top: 26px;
}

.workshop-map-card {
  display: flex;
  flex-direction: column;
}

.workshop-map-card p {
  margin-bottom: 18px;
}

.office-map-frame {
  position: relative;
  flex: 1;
  min-height: 170px;
  overflow: hidden;
  border: 1px solid rgba(185, 25, 38, 0.18);
  border-radius: 8px;
  background: rgba(17, 20, 22, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 16px 34px rgba(17, 20, 22, 0.1);
}

.office-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 170px;
  border: 0;
  filter: saturate(0.95) contrast(1.02);
}

.office-map-link {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 0 15px;
  border: 1px solid rgba(185, 25, 38, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #8d101a;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(185, 25, 38, 0.08);
}

.contact-page .floating-impact {
  display: none;
}

@media (max-width: 760px) {
  .workshop-contact-section .workshop-unit-grid {
    grid-template-columns: 1fr;
  }

  .office-map-frame,
  .office-map-frame iframe {
    min-height: 190px;
  }
}

.section-ink {
  background: var(--coal);
  color: var(--white);
}

.section-heading {
  margin-bottom: 40px;
}

.section-heading h2 {
  max-width: 850px;
}

.expertise-section {
  position: relative;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.78) 0%, rgba(255, 250, 250, 0.68) 42%, rgba(255, 237, 239, 0.52) 100%),
    linear-gradient(0deg, rgba(255, 253, 248, 0.84) 0%, rgba(255, 253, 248, 0.5) 42%, rgba(105, 12, 20, 0.2) 100%),
    url("assets/sections/backgrounds/background-image-setting.webp") center 42% / cover no-repeat,
    var(--white);
  overflow: hidden;
}

.expertise-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0) 34%),
    linear-gradient(90deg, rgba(255, 253, 248, 0.56), rgba(255, 245, 246, 0.28) 55%, rgba(185, 25, 38, 0.06));
  pointer-events: none;
}

.expertise-section .shell {
  position: relative;
  z-index: 1;
}

.expertise-section .section-heading {
  width: min(1320px, calc(100% - 40px));
  padding-left: 24px;
  border-left: 4px solid #b91926;
}

.completed-story-background {
  position: relative;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.78) 0%, rgba(255, 250, 250, 0.68) 42%, rgba(255, 237, 239, 0.52) 100%),
    linear-gradient(0deg, rgba(255, 253, 248, 0.84) 0%, rgba(255, 253, 248, 0.5) 42%, rgba(105, 12, 20, 0.2) 100%),
    url("assets/sections/backgrounds/completed-work-background.webp") center center / cover no-repeat,
    var(--white);
  overflow: hidden;
}

.completed-story-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0) 34%),
    linear-gradient(90deg, rgba(255, 253, 248, 0.56), rgba(255, 245, 246, 0.28) 55%, rgba(185, 25, 38, 0.06));
  pointer-events: none;
}

.completed-story-background > .section {
  position: relative;
  background: transparent;
}

.completed-story-background .shell {
  position: relative;
  z-index: 1;
}

.landmark-section {
  position: relative;
  overflow: hidden;
}

.completed-projects-heading {
  max-width: 920px;
  padding-left: 24px;
  border-left: 4px solid #b91926;
}

.completed-projects-heading p {
  color: var(--muted);
}

.completed-projects-heading strong {
  color: var(--ink);
}

.completed-projects-viewport {
  position: relative;
  width: min(100% - 40px, 1720px);
  overflow: hidden;
  margin: 0 auto;
  padding: 4px 0 28px;
}

.completed-projects-viewport::before,
.completed-projects-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 4;
  width: min(7vw, 82px);
  pointer-events: none;
}

.completed-projects-viewport::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 249, 249, 0.52), rgba(255, 249, 249, 0));
}

.completed-projects-viewport::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 237, 239, 0.46), rgba(255, 237, 239, 0));
}

.completed-projects-grid {
  display: flex;
  width: max-content;
  gap: 18px;
  align-items: stretch;
  will-change: transform;
}

.completed-projects-grid.is-marquee-ready {
  animation: completedProjectsMarquee 92s linear infinite;
}

.completed-projects-viewport:hover .completed-projects-grid {
  animation-play-state: paused;
}

@keyframes completedProjectsMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.completed-project-card {
  position: relative;
  flex: 0 0 clamp(304px, 24vw, 330px);
  overflow: hidden;
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  border: 2px solid rgba(142, 18, 30, 0.72);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(255, 247, 248, 0.92)),
    var(--white);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.74),
    0 0 0 1px rgba(255, 224, 227, 0.72),
    0 24px 70px rgba(17, 20, 22, 0.16),
    0 18px 48px rgba(208, 34, 45, 0.16);
}

.completed-project-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 5px;
  background: linear-gradient(90deg, #741019, #d0222d, #ffd6da);
}

.completed-project-feature {
  grid-column: auto;
}

.project-slider {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 10.6;
  background: var(--coal);
}

.completed-project-feature .project-slider {
  aspect-ratio: 16 / 10.6;
}

.project-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 900ms ease, transform 1800ms ease;
}

.project-slider img.is-active {
  opacity: 1;
  transform: scale(1);
}

.project-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(17, 20, 22, 0.22), rgba(17, 20, 22, 0.02) 60%),
    linear-gradient(90deg, rgba(208, 34, 45, 0.18), rgba(208, 34, 45, 0));
  pointer-events: none;
}

.completed-project-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 178px;
  padding: 24px;
  border-top: 1px solid rgba(208, 34, 45, 0.14);
}

.completed-project-feature .completed-project-copy {
  border-top: 1px solid rgba(208, 34, 45, 0.14);
}

.completed-project-copy span {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.completed-project-copy h3 {
  margin-top: 14px;
  margin-bottom: 12px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.08;
}

.completed-project-card:not(.completed-project-feature) .completed-project-copy h3 {
  font-size: clamp(22px, 1.9vw, 28px);
}

.completed-project-copy p {
  max-width: 420px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.landmark-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 50px;
  align-items: start;
}

.landmark-copy {
  position: sticky;
  top: 104px;
}

.landmark-copy p {
  max-width: 600px;
  color: var(--muted);
  font-size: 18px;
}

.landmark-copy p strong {
  color: var(--ink);
}

.landmark-section h2,
.landmark-projects-block h2,
.partner-section h2 {
  font-family: var(--sans);
  line-height: 1.12;
}

.landmark-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 28px;
  border: 1px solid rgba(208, 34, 45, 0.24);
  background: rgba(208, 34, 45, 0.18);
  box-shadow: 0 20px 54px rgba(208, 34, 45, 0.08);
}

.landmark-metrics div {
  display: grid;
  gap: 6px;
  min-height: 116px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.landmark-metrics strong {
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.landmark-metrics span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.landmark-list,
.compact-site-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.landmark-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding-right: 118px;
}

.landmark-list li,
.compact-site-list li {
  min-height: 74px;
  display: grid;
  align-content: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-left: 4px solid rgba(208, 34, 45, 0.78);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(208, 34, 45, 0.06);
}

.landmark-list li {
  padding: 14px 16px;
}

.landmark-list strong,
.compact-site-list strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.22;
}

.landmark-list span,
.compact-site-list span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.landmark-photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 46px;
}

.landmark-photo-strip figure {
  position: relative;
  min-height: 290px;
  margin: 0;
  overflow: hidden;
  border: 2px solid #9e1420;
  border-radius: 8px;
  background: var(--coal);
  box-shadow: 0 22px 52px rgba(208, 34, 45, 0.16);
}

.landmark-photo-strip img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.landmark-photo-strip figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  color: var(--white);
  font-weight: 800;
}

.landmark-photo-strip figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 20, 22, 0.72), rgba(17, 20, 22, 0.04) 62%);
}

.landmark-photo-strip figcaption {
  z-index: 1;
}

.system-feature-viewport {
  position: relative;
  width: min(100% - 40px, 1720px);
  overflow: hidden;
  margin: 0 auto;
  padding: 4px 0 28px;
}

.system-feature-viewport::before,
.system-feature-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 4;
  width: min(7vw, 82px);
  pointer-events: none;
}

.system-feature-viewport::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 249, 249, 0.58), rgba(255, 249, 249, 0));
}

.system-feature-viewport::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 237, 239, 0.5), rgba(255, 237, 239, 0));
}

.system-feature-grid {
  display: flex;
  width: max-content;
  gap: 24px;
  align-items: stretch;
  will-change: transform;
}

.system-feature-grid.is-marquee-ready {
  animation: systemFeatureMarquee 70s linear infinite;
}

.system-feature-viewport:hover .system-feature-grid {
  animation-play-state: paused;
}

@keyframes systemFeatureMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.system-feature {
  position: relative;
  flex: 0 0 clamp(304px, 28vw, 424px);
  min-height: 438px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(185, 25, 38, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 248, 0.9)),
    var(--white);
  backdrop-filter: blur(6px);
  overflow: hidden;
  box-shadow:
    0 22px 54px rgba(17, 20, 22, 0.1),
    0 12px 30px rgba(208, 34, 45, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.system-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-top: 4px solid #b91926;
  pointer-events: none;
}

.system-feature:hover {
  transform: translateY(-5px);
  border-color: rgba(185, 25, 38, 0.42);
  box-shadow:
    0 30px 76px rgba(17, 20, 22, 0.14),
    0 22px 52px rgba(208, 34, 45, 0.14);
}

.system-feature img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-bottom: 1px solid rgba(185, 25, 38, 0.18);
  filter: saturate(1.04) contrast(1.03);
  transition: transform 260ms ease;
}

.system-feature:hover img {
  transform: scale(1.035);
}

.system-feature span,
.catalogue-card span,
.info-panel span,
.performance-card span,
.project-card span,
.mosaic-item span,
.testimonial-card span {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.system-feature h3,
.system-feature p {
  padding: 0 22px;
}

.system-feature span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-height: 28px;
  margin: 22px 22px 0;
  border: 1px solid rgba(185, 25, 38, 0.28);
  border-radius: 999px;
  background: rgba(185, 25, 38, 0.08);
}

.system-feature h3 {
  margin-top: 16px;
  margin-bottom: 10px;
}

.system-feature p {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 15.5px;
  line-height: 1.58;
}

.film-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 6px;
  background: #0e1112;
  box-shadow: var(--shadow);
}

.film-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.method-list {
  display: grid;
  gap: 16px;
}

.method-list article {
  display: grid;
  grid-template-columns: 70px 160px 1fr;
  gap: 20px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.method-list span {
  color: var(--copper);
  font-weight: 800;
}

.method-list p,
.performance-card p,
.info-panel p,
.story-card p,
.project-card p,
.catalogue-card p {
  color: var(--muted);
}

.mosaic-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 14px;
}

.mosaic-item {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--coal);
  color: var(--white);
}

.mosaic-large {
  grid-row: span 2;
  min-height: 576px;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 400ms ease;
}

.mosaic-item:hover img {
  transform: scale(1.04);
}

.mosaic-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 20, 22, 0.78), rgba(17, 20, 22, 0.04) 62%);
}

.mosaic-item div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 4px;
}

.mosaic-item strong {
  font-size: 20px;
}

.home-site-wall {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.home-site-wall a {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--coal);
  color: var(--white);
}

.home-site-wall img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 360ms ease;
}

.home-site-wall a:hover img {
  transform: scale(1.05);
}

.home-site-wall a::after,
.portfolio-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 20, 22, 0.72), rgba(17, 20, 22, 0.02) 58%);
}

.home-site-wall span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  font-size: 13px;
  font-weight: 800;
}

.performance-section {
  background: var(--mist);
}

.performance-grid,
.three-column {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.three-column {
  width: min(100% - 32px, 1600px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 1.8vw, 28px);
}

.performance-card,
.info-panel {
  position: relative;
  overflow: hidden;
  min-height: clamp(240px, 17vw, 310px);
  padding: clamp(26px, 2.2vw, 38px);
  border: 1px solid rgba(185, 25, 38, 0.2);
  border-radius: 14px;
  background:
    radial-gradient(circle at 88% 10%, rgba(185, 25, 38, 0.1), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 245, 247, 0.84));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.76),
    0 24px 66px rgba(17, 20, 22, 0.11),
    0 16px 38px rgba(208, 34, 45, 0.1);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.info-panel::before,
.performance-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #85111b, #d0222d 48%, rgba(255, 255, 255, 0.24));
  box-shadow: 0 12px 30px rgba(208, 34, 45, 0.22);
}

.info-panel::after,
.performance-card::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -34px;
  width: 136px;
  height: 136px;
  border: 1px solid rgba(185, 25, 38, 0.14);
  border-radius: 50%;
  background: rgba(185, 25, 38, 0.04);
}

.info-panel:hover,
.performance-card:hover {
  transform: translateY(-6px);
  border-color: rgba(185, 25, 38, 0.34);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.7),
    0 34px 86px rgba(17, 20, 22, 0.16),
    0 22px 52px rgba(208, 34, 45, 0.15);
}

.info-panel span,
.performance-card span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  margin-bottom: 18px;
  padding: 0 12px;
  border: 1px solid rgba(185, 25, 38, 0.2);
  border-radius: 999px;
  background: rgba(185, 25, 38, 0.08);
}

.info-panel h3,
.performance-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  font-size: clamp(24px, 1.8vw, 34px);
  line-height: 1.08;
}

.info-panel p,
.performance-card p {
  position: relative;
  z-index: 1;
  max-width: 92%;
  font-size: clamp(16px, 1vw, 18px);
  line-height: 1.68;
}

.seo-service-links a {
  color: inherit;
  text-decoration: none;
}

.seo-service-links a:hover h3 {
  color: #89131d;
}

.cta-section {
  background:
    linear-gradient(135deg, rgba(92, 8, 15, 0.96), rgba(208, 34, 45, 0.92)),
    var(--red);
  color: var(--white);
}

.partner-section {
  position: relative;
  overflow: hidden;
}

.partner-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.82fr 0.82fr;
  gap: 14px;
}

.partner-grid-single {
  grid-template-columns: 1fr;
}

.partner-card {
  min-height: 320px;
  padding: 28px;
  border: 2px solid rgba(142, 18, 30, 0.68);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.72),
    0 0 0 1px rgba(255, 224, 227, 0.68),
    0 22px 56px rgba(17, 20, 22, 0.12),
    0 18px 46px rgba(208, 34, 45, 0.08);
  backdrop-filter: blur(7px);
}

.partner-card-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: 360px;
  padding: clamp(28px, 5vw, 56px);
  background:
    linear-gradient(135deg, rgba(92, 8, 15, 0.95), rgba(208, 34, 45, 0.82)),
    url("assets/sections/project-gallery/project-gallery-13.webp") center / cover;
  color: var(--white);
}

.partner-logo-panel {
  display: grid;
  min-height: 190px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 242, 243, 0.88)),
    rgba(255, 255, 255, 0.92);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.78),
    0 24px 68px rgba(35, 5, 10, 0.22);
}

.partner-logo-panel img {
  display: block;
  width: min(88%, 420px);
  height: auto;
}

.partner-card-copy {
  max-width: 680px;
}

.partner-card span {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.partner-card h3 {
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 30px;
  font-weight: 800;
}

.partner-card p {
  color: var(--muted);
}

.partner-card-feature p {
  color: rgba(255, 253, 248, 0.76);
}

.partner-card-feature span {
  color: rgba(255, 226, 229, 0.88);
}

.client-brand-band {
  position: relative;
  overflow: hidden;
  width: min(100% - 20px, 1740px);
  margin-top: 26px;
  border-top: 1px solid rgba(185, 25, 38, 0.14);
  border-bottom: 1px solid rgba(185, 25, 38, 0.14);
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(255, 250, 250, 0.96), rgba(255, 255, 255, 1)),
    var(--white);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.76),
    0 14px 38px rgba(17, 20, 22, 0.06),
    0 10px 24px rgba(208, 34, 45, 0.05);
}

.client-logos-after-about {
  padding: 34px 0 76px;
  background:
    linear-gradient(180deg, rgba(255, 250, 248, 0.96), rgba(255, 241, 243, 0.72)),
    var(--white);
}

.client-logos-after-about .client-brand-band {
  margin-top: 0;
}

.client-brand-label {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 5;
  overflow: hidden;
  margin: 0;
  padding: 8px 22px;
  border: 1px solid rgba(185, 25, 38, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 239, 241, 0.84)),
    var(--white);
  color: #86111c;
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
  box-shadow:
    0 14px 34px rgba(185, 25, 38, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.82);
}

.client-brand-label::after {
  content: "";
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: -42%;
  width: 34%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0));
  transform: skewX(-18deg);
  animation: clientLabelShine 3.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes clientLabelShine {
  0%,
  42% {
    left: -42%;
  }

  72%,
  100% {
    left: 118%;
  }
}

.client-brand-band::before,
.client-brand-band::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(9vw, 130px);
  pointer-events: none;
}

.client-brand-band::before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.92) 34%, rgba(255, 255, 255, 0));
}

.client-brand-band::after {
  right: 0;
  background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0.92) 34%, rgba(255, 255, 255, 0));
}

.client-brand-track {
  display: flex;
  width: max-content;
  gap: clamp(16px, 2vw, 34px);
  align-items: center;
  padding: 52px 34px 18px;
  animation: clientBrandMarquee 72s linear infinite;
}

.client-brand-band:hover .client-brand-track {
  animation-play-state: paused;
}

.client-brand-track span {
  display: flex;
  width: clamp(148px, 13vw, 220px);
  height: clamp(74px, 7vw, 104px);
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.client-brand-track img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: none;
  filter: saturate(1.03) contrast(1.02);
}

@keyframes clientBrandMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.testimonial-section {
  position: relative;
  overflow: hidden;
}

.testimonial-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 50px;
  align-items: start;
}

.testimonial-intro {
  position: sticky;
  top: 104px;
  padding-left: 24px;
  border-left: 4px solid #b91926;
}

.testimonial-intro p {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
}

.testimonial-grid {
  display: grid;
  gap: 14px;
}

.testimonial-card {
  min-height: 188px;
  padding: 28px;
  border: 2px solid rgba(142, 18, 30, 0.68);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.72),
    0 0 0 1px rgba(255, 224, 227, 0.68),
    0 22px 56px rgba(17, 20, 22, 0.12),
    0 18px 46px rgba(208, 34, 45, 0.08);
  backdrop-filter: blur(7px);
}

.testimonial-card h3 {
  margin-top: 14px;
}

.testimonial-card p {
  color: var(--muted);
}

.cta-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.cta-layout h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.site-footer {
  background: #111416;
  color: var(--white);
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 1fr;
  gap: 46px;
}

.footer-grid p,
.footer-bottom {
  color: rgba(255, 253, 248, 0.66);
}

.footer-grid h3 {
  font-size: 13px;
  text-transform: uppercase;
}

.footer-grid a:not(.brand) {
  display: block;
  margin: 8px 0;
  color: rgba(255, 253, 248, 0.8);
}

.footer-social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-social-links .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  margin: 0;
  line-height: 0;
  box-shadow: none;
}

.footer-social-links .social-link svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 0;
}

.footer-social-links .social-link[aria-label*="Instagram"] {
  color: var(--white);
}

.footer-social-links .social-link[aria-label*="Facebook"] {
  color: #1877f2;
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.92);
}

.footer-social-links .social-link[aria-label*="LinkedIn"] {
  color: #0a66c2;
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.92);
}

.footer-social-links .social-link[aria-label*="Facebook"]:hover,
.footer-social-links .social-link[aria-label*="LinkedIn"]:hover {
  color: var(--white);
}

.site-footer a[href^="tel:"] {
  display: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.page-hero {
  position: relative;
  min-height: 76svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--coal);
  color: var(--white);
  padding: 150px 0 76px;
}

.image-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-content h1 {
  max-width: 920px;
  font-size: 62px;
}

.system-promise-strip {
  position: relative;
  z-index: 3;
  margin-top: -54px;
  padding-bottom: 26px;
}

.system-promise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.system-promise-grid article {
  position: relative;
  overflow: hidden;
  min-height: 172px;
  padding: 22px 22px 24px;
  border: 1px solid rgba(185, 25, 38, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 243, 245, 0.86)),
    rgba(255, 255, 255, 0.9);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.7),
    0 18px 52px rgba(17, 20, 22, 0.12),
    0 14px 34px rgba(208, 34, 45, 0.1);
}

.system-promise-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #7c1019, #d0222d, rgba(255, 214, 218, 0.88));
}

.system-promise-grid span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(185, 25, 38, 0.22);
  border-radius: 999px;
  background: rgba(185, 25, 38, 0.08);
  color: #86111c;
  font-size: 12px;
  font-weight: 800;
}

.system-promise-grid strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.16;
}

.system-promise-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.filter-button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(185, 25, 38, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-button.is-active {
  background: linear-gradient(135deg, #7c1019, #d0222d);
  color: var(--white);
  border-color: rgba(185, 25, 38, 0.72);
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.catalogue-card {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(185, 25, 38, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  overflow: hidden;
  padding-bottom: 22px;
  box-shadow:
    0 18px 48px rgba(17, 20, 22, 0.08),
    0 12px 28px rgba(208, 34, 45, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.catalogue-card:hover {
  transform: translateY(-5px);
  border-color: rgba(185, 25, 38, 0.42);
  box-shadow:
    0 26px 70px rgba(17, 20, 22, 0.13),
    0 18px 44px rgba(208, 34, 45, 0.12);
}

.catalogue-card.is-hidden {
  display: none;
}

.catalogue-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.03);
  transition: transform 260ms ease;
}

.catalogue-card:hover img {
  transform: scale(1.035);
}

.catalogue-card span,
.catalogue-card h2,
.catalogue-card p {
  margin-left: 20px;
  margin-right: 20px;
}

.catalogue-card h2 {
  margin-bottom: 0;
  font-family: var(--sans);
  font-size: 22px;
  line-height: 1.18;
}

.product-lineup-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(208, 34, 45, 0.12);
  background:
    radial-gradient(circle at 8% 12%, rgba(208, 34, 45, 0.1), rgba(208, 34, 45, 0) 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(255, 244, 245, 0.86));
}

.product-lineup-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 52px;
  align-items: end;
  margin-bottom: 34px;
}

.product-lineup-intro p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.schuco-feature {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  margin-bottom: 54px;
  padding: 28px;
  border: 1px solid rgba(185, 25, 38, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 239, 241, 0.78));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.76),
    0 20px 58px rgba(17, 20, 22, 0.1),
    0 14px 34px rgba(208, 34, 45, 0.09);
}

.schuco-logo-block {
  display: grid;
  min-height: 176px;
  place-items: center;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(185, 25, 38, 0.12);
}

.schuco-logo-block img {
  width: min(230px, 86%);
  height: auto;
}

.schuco-feature span,
.product-link-card span {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.schuco-feature h3 {
  margin: 12px 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
}

.schuco-feature p {
  max-width: 820px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.schuco-page-hero .page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 20, 22, 0.82), rgba(92, 8, 15, 0.44) 52%, rgba(255, 244, 245, 0.1)),
    linear-gradient(0deg, rgba(17, 20, 22, 0.62), rgba(17, 20, 22, 0.08) 48%);
}

.schuco-proof-section,
.schuco-benefit-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 14%, rgba(185, 25, 38, 0.16), transparent 32%),
    radial-gradient(circle at 92% 16%, rgba(17, 20, 22, 0.1), transparent 30%),
    linear-gradient(90deg, rgba(255, 253, 248, 0.84) 0%, rgba(255, 250, 250, 0.72) 42%, rgba(255, 237, 239, 0.58) 100%),
    linear-gradient(0deg, rgba(255, 253, 248, 0.86) 0%, rgba(255, 253, 248, 0.54) 42%, rgba(105, 12, 20, 0.24) 100%),
    url("assets/sections/backgrounds/background-image-setting.webp") center / cover no-repeat,
    var(--white);
}

.schuco-proof-card {
  position: relative;
  width: min(100% - 32px, 1600px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(520px, 0.9fr) minmax(0, 1.26fr);
  gap: clamp(44px, 5vw, 92px);
  align-items: center;
  padding: clamp(42px, 5vw, 82px);
  border: 1px solid rgba(137, 19, 29, 0.22);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 250, 250, 0.94) 42%, rgba(255, 238, 240, 0.82) 100%),
    radial-gradient(circle at 18% 22%, rgba(137, 19, 29, 0.18), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(17, 20, 22, 0.12), transparent 32%),
    rgba(255, 255, 255, 0.86);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.82),
    0 42px 110px rgba(17, 20, 22, 0.17),
    0 22px 66px rgba(137, 19, 29, 0.16);
}

.schuco-proof-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  pointer-events: none;
  border: 1px solid rgba(137, 19, 29, 0.12);
  border-radius: 12px;
}

.schuco-proof-card::after {
  content: "";
  position: absolute;
  left: clamp(34px, 4vw, 62px);
  right: clamp(34px, 4vw, 62px);
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(137, 19, 29, 0.82), transparent);
}

.schuco-proof-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(340px, 29vw, 480px);
  padding: clamp(28px, 3vw, 48px);
  border: 1px solid rgba(185, 25, 38, 0.2);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.98), rgba(255, 245, 246, 0.92) 58%, rgba(255, 236, 238, 0.84) 100%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 249, 0.9)),
    var(--white);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.86),
    inset 0 -28px 70px rgba(137, 19, 29, 0.08),
    0 26px 66px rgba(17, 20, 22, 0.13);
}

.schuco-proof-logo::after {
  content: "Authorized Partner";
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  color: rgba(137, 19, 29, 0.72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.schuco-proof-logo img {
  display: block;
  width: min(100%, 560px);
  max-height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 16px 22px rgba(17, 20, 22, 0.12));
}

.schuco-proof-copy {
  position: relative;
  z-index: 1;
  max-width: 830px;
  padding: clamp(24px, 3vw, 42px);
  border-left: 4px solid rgba(137, 19, 29, 0.88);
  border-radius: 0 14px 14px 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.68), rgba(255, 246, 247, 0.46)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.18));
  box-shadow:
    inset 1px 0 0 rgba(255, 255, 255, 0.78),
    0 22px 58px rgba(137, 19, 29, 0.08);
}

.schuco-proof-copy h2 {
  max-width: none;
  margin-bottom: 22px;
  font-size: clamp(44px, 4.4vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.02em;
}

.schuco-proof-copy > p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(17, 20, 22, 0.78);
  font-size: clamp(17px, 1.15vw, 20px);
  line-height: 1.66;
}

.schuco-proof-detail {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: clamp(340px, 31vw, 490px);
  padding: 12px;
  border: 1px solid rgba(185, 25, 38, 0.2);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 246, 247, 0.82)),
    var(--white);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.72),
    0 24px 62px rgba(17, 20, 22, 0.14),
    0 16px 44px rgba(185, 25, 38, 0.1);
}

.schuco-proof-detail img {
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

.schuco-proof-main-img {
  width: 100%;
  height: clamp(320px, 29vw, 456px);
  filter: saturate(1.06) contrast(1.04);
}

.schuco-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.schuco-badge-row span,
.schuco-application-card span,
.schuco-benefit-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(185, 25, 38, 0.24);
  border-radius: 999px;
  background: rgba(185, 25, 38, 0.08);
  color: #86111c;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.schuco-application-grid {
  display: grid;
  width: min(100% - 32px, 1600px);
  max-width: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
}

.section-paper .product-lineup-heading {
  width: min(100% - 32px, 1600px);
  max-width: none;
  padding: 24px 28px 24px 26px;
  border: 1px solid rgba(185, 25, 38, 0.14);
  border-left: 4px solid #b91926;
  border-radius: 0 14px 14px 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 246, 247, 0.48)),
    rgba(255, 255, 255, 0.44);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.72),
    0 18px 48px rgba(17, 20, 22, 0.07);
}

.schuco-benefit-section .split-layout {
  width: min(100% - 32px, 1600px);
  max-width: none;
  grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(30px, 4vw, 70px);
}

.schuco-application-card,
.schuco-benefit-grid article {
  overflow: hidden;
  border: 1px solid rgba(185, 25, 38, 0.22);
  border-radius: 14px;
  background:
    radial-gradient(circle at 84% 8%, rgba(185, 25, 38, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 248, 0.9)),
    var(--white);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.72),
    0 26px 70px rgba(17, 20, 22, 0.13),
    0 18px 44px rgba(208, 34, 45, 0.12);
}

.schuco-application-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 4px solid #b91926;
  filter: saturate(1.08) contrast(1.05);
}

.schuco-application-card span,
.schuco-application-card h3,
.schuco-application-card p {
  margin-left: 22px;
  margin-right: 22px;
}

.schuco-application-card span {
  margin-top: 22px;
}

.schuco-application-card h3 {
  margin-top: 16px;
  margin-bottom: 10px;
}

.schuco-application-card p,
.schuco-benefit-grid p {
  color: var(--muted);
  line-height: 1.62;
}

.schuco-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.schuco-detail-visual {
  overflow: hidden;
  margin: 30px 0 0;
  border: 1px solid rgba(185, 25, 38, 0.18);
  border-radius: 8px;
  box-shadow:
    0 20px 52px rgba(17, 20, 22, 0.12),
    0 14px 34px rgba(185, 25, 38, 0.1);
}

.schuco-detail-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.schuco-benefit-grid article {
  min-height: 220px;
  padding: 24px;
}

.schuco-benefit-grid h3 {
  margin-top: 18px;
  margin-bottom: 10px;
}

.schuco-showroom-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.94) 0%, rgba(255, 250, 250, 0.84) 45%, rgba(255, 235, 238, 0.72) 100%),
    url("assets/sections/backgrounds/completed-work-background.webp") center / cover no-repeat,
    var(--paper);
}

.schuco-showroom-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(185, 25, 38, 0.12), transparent 30%),
    radial-gradient(circle at 96% 18%, rgba(255, 255, 255, 0.72), transparent 28%);
  pointer-events: none;
}

.schuco-showroom-section > .shell {
  position: relative;
  z-index: 1;
}

.schuco-showroom-heading {
  width: min(100% - 32px, 1600px);
  max-width: none;
  margin-bottom: 28px;
  padding: 24px 28px 24px 26px;
  border: 1px solid rgba(185, 25, 38, 0.12);
  border-left: 4px solid #b91926;
  border-radius: 0 14px 14px 0;
  background: rgba(255, 255, 255, 0.56);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.68),
    0 16px 42px rgba(17, 20, 22, 0.06);
}

.schuco-showroom-heading h2 {
  max-width: 980px;
  margin-bottom: 14px;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.04;
}

.schuco-showroom-heading p:not(.eyebrow) {
  max-width: 900px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.schuco-showroom-grid {
  display: grid;
  width: min(100% - 32px, 1600px);
  max-width: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.schuco-showroom-card {
  position: relative;
  display: block;
  width: 100%;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 14px;
  outline: 1px solid rgba(185, 25, 38, 0.16);
  outline-offset: -1px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 248, 0.9));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.78),
    0 24px 64px rgba(17, 20, 22, 0.12),
    0 16px 38px rgba(208, 34, 45, 0.12);
  isolation: isolate;
  transition: transform 260ms ease, box-shadow 260ms ease, outline-color 260ms ease;
}

.schuco-showroom-feature {
  min-height: 0;
}

.schuco-showroom-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 5px;
  background: linear-gradient(90deg, #86111c, #d0222d 46%, rgba(255, 255, 255, 0.22));
  box-shadow: 0 10px 28px rgba(208, 34, 45, 0.26);
}

.schuco-showroom-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(17, 20, 22, 0) 58%, rgba(17, 20, 22, 0.1) 100%),
    radial-gradient(circle at 16% 12%, rgba(255, 255, 255, 0.14), transparent 30%);
  pointer-events: none;
}

.schuco-showroom-card:hover {
  transform: translateY(-6px);
  outline-color: rgba(185, 25, 38, 0.34);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    0 34px 84px rgba(17, 20, 22, 0.2),
    0 24px 58px rgba(208, 34, 45, 0.18);
}

.schuco-showroom-card img {
  display: block;
  width: 100%;
  height: clamp(300px, 26vw, 430px);
  min-height: 300px;
  padding: 8px;
  border-radius: 14px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06) contrast(1.04);
  transition: transform 420ms ease, filter 420ms ease;
}

.schuco-showroom-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.1) contrast(1.06);
}

.schuco-showroom-card figcaption {
  position: absolute;
  left: clamp(18px, 2vw, 30px);
  right: clamp(18px, 2vw, 30px);
  bottom: clamp(16px, 1.8vw, 26px);
  z-index: 3;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.schuco-showroom-card span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.schuco-showroom-card strong {
  display: block;
  margin-top: 12px;
  color: var(--white);
  font-size: clamp(24px, 2.4vw, 38px);
  line-height: 1.04;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.44);
}

.product-lineup-heading {
  margin-bottom: 32px;
}

.product-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-link-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  border: 1px solid rgba(185, 25, 38, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 248, 0.9));
  box-shadow:
    0 18px 48px rgba(17, 20, 22, 0.08),
    0 12px 28px rgba(208, 34, 45, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-link-card > img {
  width: 100%;
  height: 194px;
  display: block;
  object-fit: cover;
  background: #f6eef0;
  filter: saturate(1.04) contrast(1.03);
  transition: transform 260ms ease;
}

.product-link-card:hover {
  transform: translateY(-5px);
  border-color: rgba(185, 25, 38, 0.42);
  box-shadow:
    0 26px 70px rgba(17, 20, 22, 0.13),
    0 18px 44px rgba(208, 34, 45, 0.12);
}

.product-link-card:hover > img {
  transform: scale(1.035);
}

.product-link-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  z-index: 1;
  background: linear-gradient(90deg, #7c1019, #d0222d, rgba(255, 214, 218, 0.86));
}

.product-link-card span {
  display: inline-flex;
  width: max-content;
  min-height: 30px;
  align-items: center;
  margin: 22px 24px 0;
  padding: 0 12px;
  border: 1px solid rgba(185, 25, 38, 0.2);
  border-radius: 999px;
  background: rgba(185, 25, 38, 0.08);
}

.product-link-card h3 {
  margin: 18px 24px 12px;
  font-size: 23px;
  line-height: 1.16;
}

.product-link-card p {
  margin: 0 24px 26px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.58;
}

.product-text-hero {
  min-height: 66svh;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 114, 121, 0.26), rgba(255, 114, 121, 0) 34%),
    linear-gradient(135deg, #220509 0%, #6f0d18 48%, #111416 100%);
}

.product-page-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: start;
}

.product-page-panel .rich-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.66;
}

.product-point-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-point-list li {
  padding: 18px 20px;
  border: 1px solid rgba(185, 25, 38, 0.16);
  border-left: 4px solid rgba(185, 25, 38, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(208, 34, 45, 0.06);
}

.product-gallery-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(208, 34, 45, 0.1);
  border-bottom: 1px solid rgba(208, 34, 45, 0.1);
  background:
    radial-gradient(circle at 8% 12%, rgba(208, 34, 45, 0.14), rgba(208, 34, 45, 0) 30%),
    radial-gradient(circle at 92% 18%, rgba(17, 20, 22, 0.08), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(255, 244, 245, 0.88));
}

.product-gallery-section .section-heading {
  padding: 24px 28px 24px 26px;
  border: 1px solid rgba(185, 25, 38, 0.14);
  border-left: 4px solid #b91926;
  border-radius: 0 14px 14px 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.76), rgba(255, 246, 247, 0.54)),
    rgba(255, 255, 255, 0.5);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.72),
    0 18px 48px rgba(17, 20, 22, 0.07);
}

.product-gallery-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr 0.88fr;
  gap: clamp(16px, 1.6vw, 24px);
}

.product-gallery-grid figure {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(185, 25, 38, 0.24);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 243, 245, 0.9)),
    var(--white);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.78),
    0 26px 70px rgba(17, 20, 22, 0.14),
    0 18px 42px rgba(208, 34, 45, 0.13);
  isolation: isolate;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.product-gallery-grid figure::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 3;
  height: 5px;
  background: linear-gradient(90deg, #85111b, #d0222d 46%, rgba(255, 255, 255, 0.3));
  box-shadow: 0 12px 32px rgba(208, 34, 45, 0.24);
}

.product-gallery-grid figure:hover {
  transform: translateY(-7px);
  border-color: rgba(185, 25, 38, 0.42);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.62),
    0 36px 92px rgba(17, 20, 22, 0.2),
    0 24px 58px rgba(208, 34, 45, 0.18);
}

.product-gallery-grid figure:first-child {
  grid-row: span 2;
  min-height: 676px;
}

.product-gallery-grid img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border-radius: 10px;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.06);
  transform: scale(1.012);
  transition: transform 460ms ease, filter 460ms ease;
}

.product-gallery-grid figure:hover img {
  filter: saturate(1.13) contrast(1.08);
  transform: scale(1.045);
}

.product-gallery-grid figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.42);
}

.product-gallery-grid figure::after {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 1;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%, rgba(17, 20, 22, 0.12)),
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.14), transparent 28%);
  pointer-events: none;
}

.product-gallery-grid-rich {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 1.8vw, 26px);
}

.product-gallery-grid-rich figure {
  min-height: 280px;
}

.product-gallery-grid-rich figure:first-child {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 578px;
}

.product-gallery-grid-rich figure:nth-child(7n + 4) {
  grid-column: span 2;
}

.product-gallery-grid-rich img {
  transform: scale(1.01);
}

.product-gallery-grid-rich:has(figure:nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-gallery-grid-rich:has(figure:nth-child(2):last-child) figure,
.product-gallery-grid-rich:has(figure:nth-child(2):last-child) figure:first-child {
  grid-column: auto;
  grid-row: auto;
  min-height: clamp(560px, 46vw, 760px);
}

.product-gallery-grid-rich:has(figure:nth-child(2):last-child) img {
  object-position: center;
}

@supports selector(figure:has(img)) {
  .product-gallery-grid-rich figure:has(img[src*="product-cover-"]) {
    grid-row: auto !important;
    min-height: auto !important;
    aspect-ratio: 16 / 10;
  }

  .product-gallery-grid-rich figure:first-child:has(img[src*="product-cover-"]) {
    grid-column: span 2;
  }
}

@media (min-width: 1500px) {
  .product-gallery-grid-rich {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .product-gallery-grid-rich figure:first-child {
    grid-column: span 2;
    grid-row: span 2;
  }

  .product-gallery-grid-rich figure:nth-child(7n + 4) {
    grid-column: span 2;
  }
}

.shower-showcase-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(185, 25, 38, 0.14), rgba(185, 25, 38, 0) 34%),
    linear-gradient(135deg, #fff 0%, #fff7f8 45%, #f8ecee 100%);
}

.shower-gallery-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.shower-gallery-grid figure {
  grid-column: span 4;
  min-height: 320px;
}

.shower-gallery-grid figure:first-child {
  grid-column: span 5;
  grid-row: span 2;
  min-height: 658px;
}

.shower-gallery-grid figure:nth-child(2) {
  grid-column: span 4;
}

.shower-gallery-grid figure:nth-child(3) {
  grid-column: span 3;
}

.shower-gallery-grid figure:nth-child(4),
.shower-gallery-grid figure:nth-child(5) {
  grid-column: span 4;
}

.shower-gallery-grid figure:nth-child(6),
.shower-gallery-grid figure:nth-child(7) {
  grid-column: span 6;
}

.shower-gallery-grid figcaption {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(17, 20, 22, 0.52);
  backdrop-filter: blur(10px);
  width: fit-content;
}

.front-house-gallery-section .section-heading {
  max-width: 1180px;
}

.front-house-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.front-house-gallery-grid figure {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(185, 25, 38, 0.18);
  border-radius: 8px;
  background: var(--coal);
  box-shadow:
    0 18px 48px rgba(17, 20, 22, 0.1),
    0 12px 28px rgba(208, 34, 45, 0.08);
}

.front-house-gallery-grid figure:nth-child(1),
.front-house-gallery-grid figure:nth-child(6),
.front-house-gallery-grid figure:nth-child(9) {
  grid-column: span 2;
  min-height: 360px;
}

.front-house-gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.01);
}

.front-house-gallery-grid figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.42);
}

.front-house-gallery-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 20, 22, 0.5), rgba(17, 20, 22, 0.02) 60%);
}

@media (max-width: 1100px) {
  .front-house-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .front-house-gallery-grid figure:nth-child(1),
  .front-house-gallery-grid figure:nth-child(6),
  .front-house-gallery-grid figure:nth-child(9) {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .front-house-gallery-grid {
    grid-template-columns: 1fr;
  }

  .front-house-gallery-grid figure,
  .front-house-gallery-grid figure:nth-child(1),
  .front-house-gallery-grid figure:nth-child(6),
  .front-house-gallery-grid figure:nth-child(9) {
    grid-column: auto;
    min-height: 300px;
  }
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 0.74fr;
  gap: 14px;
  align-items: end;
}

.image-stack img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}

.image-stack img:first-child {
  aspect-ratio: 4 / 5;
}

.image-stack img:last-child {
  aspect-ratio: 3 / 4;
  margin-bottom: 44px;
}

.spec-table {
  border-top: 1px solid var(--line-light);
}

.spec-table div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-light);
}

.spec-table span {
  color: rgba(255, 253, 248, 0.62);
  font-size: 13px;
}

.spec-table strong {
  font-size: 18px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.story-copy {
  grid-column: span 2;
  padding-right: 24px;
}

.story-card {
  border: 1px solid rgba(185, 25, 38, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  overflow: hidden;
  box-shadow:
    0 16px 38px rgba(208, 34, 45, 0.06),
    0 10px 28px rgba(17, 20, 22, 0.06);
}

.story-card img {
  width: 100%;
  aspect-ratio: 4 / 4.5;
  object-fit: cover;
}

.story-card h3,
.story-card p {
  padding-left: 18px;
  padding-right: 18px;
}

.story-card h3 {
  margin-top: 18px;
}

.product-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  gap: clamp(34px, 4vw, 64px);
  align-items: center;
  padding: clamp(28px, 3.2vw, 46px);
  overflow: hidden;
  border-radius: 16px;
  background:
    radial-gradient(circle at 8% 14%, rgba(185, 25, 38, 0.13), transparent 30%),
    radial-gradient(circle at 94% 18%, rgba(17, 20, 22, 0.08), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 241, 243, 0.72));
  border: 1px solid rgba(185, 25, 38, 0.22);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.78),
    0 28px 76px rgba(17, 20, 22, 0.13),
    0 18px 44px rgba(208, 34, 45, 0.12);
}

.product-band::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #85111b, #d0222d 46%, rgba(255, 255, 255, 0.3));
  box-shadow: 0 12px 34px rgba(208, 34, 45, 0.24);
}

.product-band::after {
  content: "";
  position: absolute;
  inset: 14px;
  pointer-events: none;
  border: 1px solid rgba(185, 25, 38, 0.1);
  border-radius: 12px;
}

.product-band img {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  padding: 8px;
  border: 1px solid rgba(185, 25, 38, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.72),
    0 24px 58px rgba(17, 20, 22, 0.14),
    0 18px 38px rgba(208, 34, 45, 0.1);
  filter: saturate(1.08) contrast(1.05);
}

.product-band > div {
  position: relative;
  z-index: 1;
  padding: clamp(22px, 2.6vw, 38px);
  border-left: 4px solid rgba(185, 25, 38, 0.86);
  border-radius: 0 14px 14px 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.76), rgba(255, 248, 249, 0.46)),
    rgba(255, 255, 255, 0.42);
  box-shadow:
    inset 1px 0 0 rgba(255, 255, 255, 0.78),
    0 18px 42px rgba(137, 19, 29, 0.07);
}

.product-band h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.product-band p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(17, 20, 22, 0.78);
  font-size: clamp(16.5px, 1.1vw, 19px);
  line-height: 1.68;
}

.product-band-dark {
  background: transparent;
  border-color: var(--line-light);
}

.product-band-dark p {
  color: rgba(255, 253, 248, 0.74);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: min(100% - 32px, 1680px);
  gap: clamp(14px, 1.6vw, 24px);
  margin-top: 58px;
}

.project-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 14px;
  outline: 1px solid rgba(185, 25, 38, 0.16);
  outline-offset: -1px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 247, 248, 0.86));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.68),
    0 24px 64px rgba(17, 20, 22, 0.12),
    0 16px 38px rgba(208, 34, 45, 0.1);
  transition: transform 260ms ease, box-shadow 260ms ease, outline-color 260ms ease;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 5px;
  background: linear-gradient(90deg, #86111c, #d0222d 46%, rgba(255, 255, 255, 0.18));
  box-shadow: 0 10px 28px rgba(208, 34, 45, 0.24);
}

.project-card:hover {
  transform: translateY(-6px);
  outline-color: rgba(185, 25, 38, 0.34);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.76),
    0 34px 84px rgba(17, 20, 22, 0.16),
    0 24px 58px rgba(208, 34, 45, 0.16);
}

.project-wide {
  grid-column: span 2;
}

.project-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.04);
  transition: transform 420ms ease, filter 420ms ease;
}

.project-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.1) contrast(1.06);
}

.project-card div {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: 100%;
  padding: clamp(24px, 3vw, 44px);
  align-self: end;
  background:
    radial-gradient(circle at 100% 0%, rgba(208, 34, 45, 0.08), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 249, 249, 0.72));
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.project-card div::before {
  content: "";
  position: absolute;
  left: clamp(24px, 3vw, 44px);
  right: clamp(24px, 3vw, 44px);
  bottom: calc(100% - 1px);
  height: 1px;
  background: linear-gradient(90deg, rgba(185, 25, 38, 0.28), rgba(185, 25, 38, 0));
}

.project-card h2 {
  max-width: 560px;
  margin-top: 10px;
  margin-bottom: 12px;
  font-size: clamp(32px, 3.1vw, 52px);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.project-card span {
  display: inline-flex;
  width: max-content;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(185, 25, 38, 0.18);
  border-radius: 999px;
  background: rgba(185, 25, 38, 0.08);
  color: #b91926;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card p {
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.52;
}

.project-card:not(.project-wide) {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.project-card:not(.project-wide) h2 {
  font-size: clamp(30px, 2.7vw, 42px);
}

.projects-hero .page-hero-content {
  max-width: 820px;
}

.projects-hero .page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 20, 22, 0.76), rgba(17, 20, 22, 0.36) 48%, rgba(185, 25, 38, 0.18)),
    radial-gradient(circle at 18% 30%, rgba(208, 34, 45, 0.28), transparent 32%);
}

.projects-portfolio-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.94) 0%, rgba(255, 250, 250, 0.84) 44%, rgba(255, 235, 238, 0.74) 100%),
    url("assets/sections/backgrounds/completed-work-background.webp") center top / cover no-repeat,
    var(--paper);
}

.projects-portfolio-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 6% 16%, rgba(185, 25, 38, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.2));
  pointer-events: none;
}

.projects-portfolio-section > .shell {
  position: relative;
  z-index: 1;
}

.projects-portfolio-section .section-heading {
  width: min(100% - 32px, 1440px);
  max-width: none;
  margin-top: 20px;
  margin-bottom: 32px;
  padding: 24px 28px 24px 26px;
  border-left: 4px solid #b91926;
  border-radius: 0 14px 14px 0;
  background: rgba(255, 255, 255, 0.58);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.68),
    0 16px 42px rgba(17, 20, 22, 0.06);
}

.projects-portfolio-section .section-heading h2 {
  max-width: 920px;
  margin-bottom: 12px;
}

.projects-portfolio-section .section-heading p:not(.eyebrow) {
  max-width: 880px;
  color: var(--muted);
}

.portfolio-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 14px;
}

.portfolio-tile {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--coal);
  color: var(--white);
}

.portfolio-feature {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 614px;
}

.portfolio-tile img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 380ms ease;
}

.portfolio-tile:hover img {
  transform: scale(1.04);
}

.portfolio-tile div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
}

.portfolio-tile h2,
.portfolio-tile h3 {
  margin-bottom: 0;
  color: var(--white);
}

.portfolio-tile h2 {
  font-size: 38px;
}

.projects-portfolio-section .portfolio-wall {
  width: min(100% - 32px, 1680px);
  gap: clamp(12px, 1.4vw, 22px);
}

.projects-portfolio-section .portfolio-tile {
  min-height: 326px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 14px;
  outline: 1px solid rgba(185, 25, 38, 0.16);
  outline-offset: -1px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 24px 64px rgba(17, 20, 22, 0.16),
    0 16px 38px rgba(208, 34, 45, 0.12);
  isolation: isolate;
  transition: transform 260ms ease, box-shadow 260ms ease, outline-color 260ms ease;
}

.projects-portfolio-section .portfolio-feature {
  min-height: 674px;
  outline-color: rgba(185, 25, 38, 0.28);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 32px 84px rgba(17, 20, 22, 0.2),
    0 20px 54px rgba(208, 34, 45, 0.16);
}

.projects-portfolio-section .portfolio-tile img {
  filter: saturate(1.06) contrast(1.04);
}

.projects-portfolio-section .portfolio-tile::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  height: 5px;
  background: linear-gradient(90deg, #86111c, #d0222d 48%, rgba(255, 255, 255, 0.22));
  box-shadow: 0 10px 28px rgba(208, 34, 45, 0.28);
}

.projects-portfolio-section .portfolio-tile::after {
  background:
    linear-gradient(180deg, rgba(17, 20, 22, 0.02) 0%, rgba(17, 20, 22, 0.18) 38%, rgba(17, 20, 22, 0.9) 100%),
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(208, 34, 45, 0.12), rgba(255, 255, 255, 0) 38%);
}

.projects-portfolio-section .portfolio-tile:hover {
  transform: translateY(-6px);
  outline-color: rgba(185, 25, 38, 0.36);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    0 34px 84px rgba(17, 20, 22, 0.2),
    0 24px 58px rgba(208, 34, 45, 0.18);
}

.projects-portfolio-section .portfolio-tile div {
  z-index: 2;
  left: clamp(18px, 2vw, 30px);
  right: clamp(18px, 2vw, 30px);
  bottom: clamp(18px, 2vw, 30px);
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.projects-portfolio-section .portfolio-tile span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.projects-portfolio-section .portfolio-tile h2,
.projects-portfolio-section .portfolio-tile h3 {
  margin-top: 12px;
  line-height: 1.04;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.44);
}

.projects-portfolio-section .portfolio-tile h3 {
  font-size: clamp(22px, 2vw, 28px);
}

.projects-portfolio-section .portfolio-feature h2 {
  font-size: clamp(38px, 4vw, 56px);
}

.landmark-projects-block {
  position: relative;
  width: min(100% - 32px, 1680px);
  display: grid;
  grid-template-columns: minmax(250px, 0.42fr) minmax(0, 1.58fr);
  gap: clamp(24px, 3.5vw, 52px);
  align-items: start;
  margin-bottom: 70px;
  padding: clamp(24px, 2.8vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(185, 25, 38, 0.14);
  border-radius: 14px;
  background:
    radial-gradient(circle at 10% 0%, rgba(208, 34, 45, 0.11), transparent 30%),
    radial-gradient(circle at 98% 8%, rgba(255, 255, 255, 0.92), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 247, 248, 0.88));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.74),
    0 26px 90px rgba(17, 20, 22, 0.09),
    0 18px 48px rgba(208, 34, 45, 0.1);
}

.landmark-projects-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.2)),
    url("assets/sections/backgrounds/completed-work-background.webp") center / cover no-repeat;
  opacity: 0.14;
  pointer-events: none;
}

.landmark-projects-block::after {
  content: "NEXIA";
  position: absolute;
  top: -36px;
  right: 34px;
  color: rgba(134, 17, 28, 0.055);
  font-size: clamp(82px, 10vw, 178px);
  font-weight: 900;
  letter-spacing: 0.04em;
  pointer-events: none;
}

.landmark-projects-block > * {
  position: relative;
  z-index: 1;
}

.landmark-projects-copy {
  position: sticky;
  top: 104px;
  padding-left: 22px;
  border-left: 4px solid #b91926;
}

.landmark-projects-copy p:not(.eyebrow) {
  max-width: 390px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.landmark-projects-block h2 {
  margin-bottom: 0;
  max-width: 430px;
  font-size: clamp(30px, 3vw, 44px);
  letter-spacing: -0.02em;
}

.compact-site-list {
  counter-reset: landmarkSites;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding-right: 0;
}

.compact-site-list li {
  counter-increment: landmarkSites;
  position: relative;
  min-height: 78px;
  padding: 15px 14px 14px 52px;
  overflow: hidden;
  border-color: rgba(185, 25, 38, 0.14);
  border-left: 0;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 246, 247, 0.78));
  font-size: 14px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.64),
    0 14px 34px rgba(17, 20, 22, 0.07);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.compact-site-list li::before {
  content: counter(landmarkSites, decimal-leading-zero);
  position: absolute;
  left: 14px;
  top: 15px;
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(185, 25, 38, 0.1);
  color: #b91926;
  font-size: 10px;
  font-weight: 900;
}

.compact-site-list li::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #d0222d, #86111c);
  opacity: 0.86;
}

.compact-site-list li:hover {
  transform: translateY(-3px);
  border-color: rgba(185, 25, 38, 0.28);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.74),
    0 22px 54px rgba(17, 20, 22, 0.1),
    0 16px 34px rgba(208, 34, 45, 0.12);
}

.compact-site-list strong {
  font-size: 15px;
}

.compact-site-list span {
  margin-top: 4px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.method-list-wide {
  grid-template-columns: repeat(2, 1fr);
}

.method-list-wide article {
  grid-template-columns: 52px 1fr;
}

.method-list-wide h3,
.method-list-wide p {
  grid-column: 2;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line-light);
}

.stat-strip div {
  display: grid;
  gap: 8px;
  min-height: 190px;
  padding: 24px;
  border-right: 1px solid var(--line-light);
}

.stat-strip div:last-child {
  border-right: 0;
}

.stat-strip strong {
  font-size: 30px;
  font-weight: 800;
}

.stat-strip span {
  color: rgba(255, 253, 248, 0.68);
}

.contact-hero {
  min-height: 54svh;
  background:
    linear-gradient(90deg, rgba(17, 20, 22, 0.84), rgba(77, 112, 103, 0.72)),
    url("assets/sections/site-visuals/hero-villa.webp") center / cover;
}

.contact-hero-content p {
  color: rgba(255, 253, 248, 0.78);
}

.contact-layout {
  align-items: stretch;
}

.contact-panel,
.enquiry-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 28px;
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.contact-lines a {
  font-weight: 800;
}

.contact-lines p {
  color: var(--muted);
}

.contact-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.enquiry-form label {
  display: grid;
  gap: 8px;
}

.enquiry-form span {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fbfaf6;
  color: var(--ink);
  padding: 13px 14px;
  outline: 0;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(77, 112, 103, 0.14);
}

.full-field,
.enquiry-form button {
  grid-column: span 2;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-preview-image.reveal {
  transform: translate(-205px, 18px);
}

.about-preview-image.reveal.is-visible {
  transform: translateX(-205px);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1100px) {
  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 40px;
  }

  .system-feature-grid,
  .system-promise-grid,
  .performance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalogue-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-site-wall,
  .portfolio-wall {
    grid-template-columns: repeat(3, 1fr);
  }

  .portfolio-feature {
    grid-column: span 2;
  }

  .story-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .workshop-layout {
    grid-template-columns: 1fr;
  }

  .landmark-layout,
  .partner-grid,
  .testimonial-layout,
  .landmark-projects-block {
    grid-template-columns: 1fr;
  }

  .landmark-projects-copy {
    position: static;
  }

  .partner-card-feature {
    grid-template-columns: 1fr;
  }

  .partner-logo-panel {
    min-height: 160px;
  }

  .client-brand-track {
    gap: 14px;
    padding: 14px 20px;
    animation-duration: 54s;
  }

  .client-brand-track span {
    width: 142px;
    height: 68px;
  }

  .completed-project-card {
    flex-basis: clamp(310px, 44vw, 390px);
  }

  .landmark-copy,
  .testimonial-intro {
    position: static;
  }

  .landmark-photo-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 70px;
    padding: 0 20px;
    gap: 12px;
  }

  .main-nav {
    position: fixed;
    inset: 70px 0 auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    background: var(--white);
    color: var(--ink);
    padding: 18px 20px 28px;
    box-shadow: 0 24px 40px rgba(17, 20, 22, 0.12);
  }

  body.nav-open .main-nav {
    display: grid;
  }

  .main-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-product-item {
    display: grid;
  }

  .product-mega-menu {
    position: static;
    transform: none;
    min-width: 0;
    border-top-width: 2px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
  }

  .nav-product-item:hover .product-mega-menu,
  .nav-product-item:focus-within .product-mega-menu {
    transform: none;
  }

  .mega-product-tabs {
    grid-template-columns: 1fr;
  }

  .mega-product-tabs > a,
  .mega-category > a,
  .mega-product-panel a {
    min-height: 44px;
    padding: 10px 18px;
    font-size: 13px;
  }

  .mega-product-panel {
    position: static;
    min-width: 0;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    padding: 0 0 8px 14px;
  }

  .product-lineup-intro,
  .schuco-feature,
  .product-page-panel {
    grid-template-columns: 1fr;
  }

  .product-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-gallery-grid figure:first-child {
    grid-column: span 2;
    min-height: 420px;
  }

  .product-gallery-grid-rich {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-gallery-grid-rich figure:nth-child(7n + 4) {
    grid-column: auto;
  }

  .shower-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shower-gallery-grid figure,
  .shower-gallery-grid figure:first-child,
  .shower-gallery-grid figure:nth-child(2),
  .shower-gallery-grid figure:nth-child(3),
  .shower-gallery-grid figure:nth-child(4),
  .shower-gallery-grid figure:nth-child(5),
  .shower-gallery-grid figure:nth-child(6),
  .shower-gallery-grid figure:nth-child(7) {
    grid-column: auto;
    grid-row: auto;
    min-height: 330px;
  }

  .phone-link,
  .header-actions .button {
    display: none;
  }

  .header-social-actions {
    gap: 7px;
  }

  .social-link {
    width: 36px;
    height: 36px;
  }

  .menu-button {
    display: grid;
  }

  .hero {
    min-height: 82svh;
    display: flex;
    padding: 0;
  }

  .hero-content {
    padding-bottom: 26px;
    transform: none;
  }

  h1,
  .page-hero-content h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-proof {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    grid-template-columns: 1fr;
    margin: 4px auto 0;
  }

  .hero-proof span {
    padding: 12px 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .intro-layout,
  .split-layout,
  .film-layout,
  .spec-layout,
  .contact-layout,
  .about-preview-layout,
  .testimonial-layout,
  .product-band {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-preview-image {
    width: min(100%, 620px);
    max-width: 620px;
    transform: none;
  }

  .about-preview-image.reveal,
  .about-preview-image.reveal.is-visible {
    transform: none;
  }

  .about-preview-copy {
    margin-left: 0;
  }

  .mosaic-grid,
  .project-grid,
  .portfolio-wall {
    grid-template-columns: 1fr;
  }

  .mosaic-large,
  .project-wide,
  .portfolio-feature {
    grid-column: auto;
    grid-row: auto;
  }

  .mosaic-large,
  .mosaic-item,
  .portfolio-feature,
  .portfolio-tile {
    min-height: 360px;
  }

  .three-column,
  .stat-strip {
    grid-template-columns: 1fr 1fr;
  }

  .project-card {
    grid-template-columns: 1fr;
  }

  .project-card img {
    min-height: 260px;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .method-list article {
    grid-template-columns: 50px 1fr;
  }

  .method-list article p {
    grid-column: 2;
  }

  .cta-layout,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .system-promise-strip {
    margin-top: 0;
    padding-top: 28px;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .landmark-projects-block {
    width: min(100% - 28px, 1680px);
    grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1.62fr);
    gap: 24px;
    padding: 24px;
  }

  .landmark-projects-copy {
    position: static;
  }

  .landmark-projects-block h2 {
    font-size: clamp(28px, 3.8vw, 38px);
  }

  .landmark-projects-copy p:not(.eyebrow) {
    font-size: 14px;
  }

  .compact-site-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .wordmark {
    font-size: 24px;
  }

  .brand-copy small {
    display: none;
  }

  .brand-copy {
    display: none;
  }

  .site-header .brand-copy,
  .site-header .brand-copy small {
    display: block;
  }

  .site-header .brand-copy small {
    font-size: 9px;
  }

  .header-social-actions {
    gap: 5px;
  }

  .social-link {
    width: 32px;
    height: 32px;
  }

  .social-link svg {
    width: 16px;
    height: 16px;
  }

  .brand::before {
    width: 116px;
    height: 40px;
  }

  .hero .eyebrow {
    max-width: 320px;
  }

  .hero-copy {
    max-width: 340px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 260px;
  }

  .hero {
    min-height: 72svh;
  }

  .floating-impact {
    top: auto;
    right: 12px;
    left: 12px;
    bottom: 12px;
    width: auto;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    gap: 10px;
    padding: 12px 13px;
    border-right: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 14px;
    transform: none;
  }

  .floating-impact strong {
    font-size: 24px;
  }

  .floating-impact span,
  .floating-impact em {
    font-size: 10px;
  }

  .landmark-list,
  .compact-site-list {
    padding-right: 0;
  }

  h1,
  .page-hero-content h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 29px;
  }

  h3 {
    font-size: 18px;
  }

  .hero-copy,
  .page-hero-content p,
  .section-heading p,
  .intro-copy p,
  .film-copy p,
  .rich-copy p {
    font-size: 16px;
  }

  .section {
    padding: 72px 0;
  }

  .system-feature-grid,
  .system-promise-grid,
  .catalogue-grid,
  .product-link-grid,
  .performance-grid,
  .testimonial-grid,
  .three-column,
  .story-grid,
  .workshop-unit-grid,
  .home-site-wall,
  .landmark-list,
  .landmark-metrics,
  .landmark-photo-strip,
  .compact-site-list,
  .stat-strip,
  .method-list-wide,
  .footer-grid,
  .enquiry-form {
    grid-template-columns: 1fr;
  }

  .product-gallery-grid {
    grid-template-columns: 1fr;
  }

  .product-gallery-grid figure,
  .product-gallery-grid figure:first-child {
    grid-column: auto;
    grid-row: auto;
    min-height: 300px;
  }

  .product-gallery-grid-rich figure,
  .product-gallery-grid-rich figure:first-child,
  .product-gallery-grid-rich figure:nth-child(7n + 4) {
    grid-column: auto;
    grid-row: auto;
    min-height: 300px;
  }

  .shower-gallery-grid {
    grid-template-columns: 1fr;
  }

  .shower-gallery-grid figure,
  .shower-gallery-grid figure:first-child,
  .shower-gallery-grid figure:nth-child(2),
  .shower-gallery-grid figure:nth-child(3),
  .shower-gallery-grid figure:nth-child(4),
  .shower-gallery-grid figure:nth-child(5),
  .shower-gallery-grid figure:nth-child(6),
  .shower-gallery-grid figure:nth-child(7) {
    grid-column: auto;
    grid-row: auto;
    min-height: 300px;
  }

  .story-copy,
  .full-field,
  .enquiry-form button {
    grid-column: auto;
  }

  .system-feature {
    min-height: auto;
  }

  .completed-project-copy {
    padding: 22px;
  }

  .completed-project-card {
    flex-basis: min(82vw, 320px);
  }

  .completed-projects-viewport::before,
  .completed-projects-viewport::after {
    width: 44px;
  }

  .system-feature img,
  .catalogue-card img {
    aspect-ratio: 16 / 11;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack img:last-child {
    margin-bottom: 0;
  }

  .spec-table div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mosaic-large,
  .mosaic-item {
    min-height: 300px;
  }

  .page-hero {
    min-height: 66svh;
    padding: 124px 0 58px;
  }
}

.legal-hero {
  min-height: 46svh;
  background:
    radial-gradient(circle at 12% 20%, rgba(208, 34, 45, 0.16), rgba(208, 34, 45, 0) 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 240, 242, 0.86));
  color: var(--ink);
}

.legal-hero .page-hero-content {
  color: var(--ink);
  text-shadow: none;
}

.legal-hero .page-hero-content p {
  color: var(--muted);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.legal-aside {
  position: sticky;
  top: 110px;
  padding: 28px;
  border: 1px solid rgba(185, 25, 38, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 241, 243, 0.9));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.7),
    0 18px 52px rgba(17, 20, 22, 0.08),
    0 12px 28px rgba(208, 34, 45, 0.08);
}

.legal-aside span {
  display: block;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.legal-aside strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
}

.legal-aside p {
  color: var(--muted);
}

.legal-document {
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(185, 25, 38, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    inset 4px 0 0 rgba(208, 34, 45, 0.88),
    0 20px 60px rgba(17, 20, 22, 0.08);
}

.legal-document h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-family: var(--sans);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
}

.legal-document h2:first-child {
  margin-top: 0;
}

.legal-document p,
.legal-document li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.legal-document ul {
  margin: 0 0 22px;
  padding-left: 22px;
}

.footer-legal {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.footer-legal a {
  color: rgba(255, 253, 248, 0.78);
}

.footer-legal a:hover {
  color: var(--white);
}

@media (max-width: 900px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-aside {
    position: static;
  }
}

.product-gallery-grid figcaption {
  display: none;
}

/* Final product pages: no text labels over gallery images. */
.product-gallery-grid figcaption,
.shower-gallery-grid figcaption,
.front-house-gallery-grid figcaption,
.gallery-item figcaption {
  display: none !important;
}

/* Project Photo Gallery: page-specific premium portfolio wall. */
.project-gallery-page {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 249, 0.88)),
    url("assets/sections/backgrounds/completed-work-background.webp") center top / cover fixed;
}

.project-gallery-page .image-hero {
  min-height: clamp(620px, 82svh, 900px);
}

.project-gallery-page .image-hero > img {
  object-position: center top;
  filter: saturate(1.05) contrast(1.08);
}

.project-gallery-page .page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 10, 12, 0.78), rgba(8, 10, 12, 0.36) 48%, rgba(8, 10, 12, 0.1)),
    linear-gradient(180deg, rgba(8, 10, 12, 0.18), rgba(8, 10, 12, 0.72));
}

.project-gallery-page .page-hero-content {
  max-width: 920px;
}

.project-gallery-page .page-hero-content p:not(.eyebrow) {
  max-width: 760px;
}

.project-gallery-page .floating-impact {
  display: none;
}

.project-gallery-page .section-white {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 248, 0.82)),
    url("assets/sections/backgrounds/background-image-setting.webp") center / cover;
}

.project-gallery-page .product-band {
  width: min(100% - 56px, 1600px);
  grid-template-columns: minmax(0, 1.16fr) minmax(390px, 0.84fr);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 245, 246, 0.86)),
    rgba(255, 255, 255, 0.72);
}

.project-gallery-page .product-band img {
  aspect-ratio: 16 / 9;
  min-height: clamp(420px, 38vw, 640px);
  object-position: center top;
}

.project-gallery-page .product-gallery-section {
  padding-top: clamp(88px, 8vw, 136px);
  padding-bottom: clamp(96px, 9vw, 150px);
  border-top: 1px solid rgba(185, 25, 38, 0.14);
  border-bottom: 1px solid rgba(17, 20, 22, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 246, 247, 0.9)),
    url("assets/sections/backgrounds/completed-work-background.webp") center / cover;
}

.project-gallery-page .product-gallery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(208, 34, 45, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.38));
  pointer-events: none;
}

.project-gallery-page .product-gallery-section > .shell {
  position: relative;
  z-index: 1;
}

.project-gallery-page .product-gallery-section .section-heading {
  width: min(100% - 56px, 1720px);
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(320px, 0.34fr);
  gap: clamp(20px, 3vw, 54px);
  align-items: end;
  margin-bottom: clamp(34px, 4vw, 62px);
  padding: clamp(28px, 3vw, 46px);
  border-left-width: 5px;
  border-radius: 0 18px 18px 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 244, 245, 0.78)),
    rgba(255, 255, 255, 0.74);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.78),
    0 32px 86px rgba(17, 20, 22, 0.11),
    0 18px 46px rgba(208, 34, 45, 0.1);
}

.project-gallery-page .product-gallery-section .section-heading .eyebrow {
  grid-column: 1;
}

.project-gallery-page .product-gallery-section .section-heading h2 {
  grid-column: 1;
  max-width: 980px;
  margin-bottom: 0;
}

.project-gallery-page .product-gallery-section .section-heading p:not(.eyebrow) {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  max-width: 520px;
  margin-left: auto;
}

.project-gallery-page .product-gallery-grid-rich {
  width: min(100% - 40px, 1720px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: clamp(18px, 1.7vw, 30px);
}

.project-gallery-page .product-gallery-grid-rich.reveal {
  opacity: 1;
  transform: none;
}

.project-gallery-page .product-gallery-grid-rich figure {
  min-height: clamp(320px, 24vw, 430px);
  padding: 10px;
  border-radius: 8px;
  border-color: rgba(121, 13, 24, 0.22);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(255, 246, 247, 0.9)),
    #fff;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.86),
    0 34px 88px rgba(17, 20, 22, 0.15),
    0 18px 44px rgba(208, 34, 45, 0.12);
}

.project-gallery-page .product-gallery-grid-rich figure:first-child {
  grid-column: span 2;
  grid-row: span 2;
  min-height: clamp(700px, 52vw, 920px);
}

.project-gallery-page .product-gallery-grid-rich figure:nth-child(4),
.project-gallery-page .product-gallery-grid-rich figure:nth-child(8),
.project-gallery-page .product-gallery-grid-rich figure:nth-child(11) {
  grid-column: span 2;
}

.project-gallery-page .product-gallery-grid-rich img {
  border-radius: 5px;
  object-position: center top;
  filter: saturate(1.08) contrast(1.08);
}

.project-gallery-page .product-gallery-grid-rich figure::after {
  inset: 10px;
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 48%, rgba(17, 20, 22, 0.08)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 34%);
}

.project-gallery-page .section-paper {
  background:
    linear-gradient(180deg, rgba(255, 249, 250, 0.96), rgba(255, 255, 255, 0.94)),
    url("assets/sections/backgrounds/background-image-setting.webp") center / cover;
}

.project-gallery-page .section-ink {
  background:
    linear-gradient(135deg, rgba(17, 20, 22, 0.96), rgba(63, 9, 15, 0.9)),
    url("assets/sections/backgrounds/completed-work-background.webp") center / cover;
}

@media (min-width: 1500px) {
  .project-gallery-page .product-gallery-grid-rich {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .project-gallery-page .image-hero {
    min-height: 70svh;
  }

  .project-gallery-page .product-band,
  .project-gallery-page .product-gallery-section .section-heading {
    width: min(100% - 28px, 1180px);
    grid-template-columns: 1fr;
  }

  .project-gallery-page .product-gallery-section .section-heading .eyebrow,
  .project-gallery-page .product-gallery-section .section-heading h2,
  .project-gallery-page .product-gallery-section .section-heading p:not(.eyebrow) {
    grid-column: auto;
    grid-row: auto;
    margin-left: 0;
  }

  .project-gallery-page .product-band img {
    min-height: 360px;
  }

  .project-gallery-page .product-band h2 {
    font-size: 34px;
    line-height: 1.06;
  }

  .project-gallery-page .product-band p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.62;
  }

  .project-gallery-page .product-gallery-grid-rich {
    width: min(100% - 28px, 1180px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-gallery-page .product-gallery-grid-rich figure:first-child {
    grid-column: span 2;
    min-height: 520px;
  }

  .project-gallery-page .product-gallery-grid-rich figure:nth-child(4),
  .project-gallery-page .product-gallery-grid-rich figure:nth-child(8),
  .project-gallery-page .product-gallery-grid-rich figure:nth-child(11) {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .project-gallery-page .product-band img,
  .project-gallery-page .product-gallery-grid-rich figure,
  .project-gallery-page .product-gallery-grid-rich figure:first-child,
  .project-gallery-page .product-gallery-grid-rich figure:nth-child(4),
  .project-gallery-page .product-gallery-grid-rich figure:nth-child(8),
  .project-gallery-page .product-gallery-grid-rich figure:nth-child(11) {
    grid-column: auto;
    grid-row: auto;
    min-height: 320px;
  }

  .project-gallery-page .product-gallery-grid-rich {
    grid-template-columns: 1fr;
  }
}

/* Premium product navigation polish */
.product-mega-menu {
  top: calc(100% + 14px);
  z-index: 300;
  min-width: 292px;
  border: 1px solid rgba(142, 18, 30, 0.16);
  border-top: 3px solid rgba(185, 25, 38, 0.88);
  border-radius: 0 0 8px 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 246, 247, 0.94)),
    rgba(255, 255, 255, 0.9);
  box-shadow:
    0 28px 80px rgba(17, 20, 22, 0.16),
    0 18px 42px rgba(142, 18, 30, 0.14);
  backdrop-filter: blur(18px);
  transform: translate(-46%, 16px) scale(0.985);
  transition:
    opacity 240ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 240ms ease;
}

.nav-product-item:hover .product-mega-menu,
.nav-product-item:focus-within .product-mega-menu,
.nav-product-item.is-open .product-mega-menu {
  transform: translate(-46%, 0) scale(1);
}

.mega-product-tabs {
  overflow: visible;
  border-radius: 0 0 8px 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 248, 0.96));
}

.mega-product-tabs > a,
.mega-category > a {
  min-height: 60px;
  padding: 0 38px;
  border-bottom: 1px solid rgba(142, 18, 30, 0.1);
  color: #8d1220;
  transition:
    background 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.mega-product-tabs > a:hover,
.mega-category:hover > a,
.mega-category.is-open > a {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 236, 238, 0.9));
  color: #6f0d17;
  box-shadow: inset 4px 0 0 rgba(185, 25, 38, 0.74);
}

.mega-category > a.is-highlighted {
  background:
    linear-gradient(135deg, rgba(169, 18, 30, 0.96), rgba(210, 48, 60, 0.88)),
    #b91926;
  color: #fffdf8;
}

.mega-category:hover > a.is-highlighted,
.mega-category.is-open > a.is-highlighted {
  background:
    linear-gradient(135deg, rgba(118, 11, 22, 0.98), rgba(190, 28, 42, 0.94)),
    #8e121e;
  color: #ffffff;
  transform: translateX(2px);
  box-shadow:
    inset 4px 0 0 rgba(255, 255, 255, 0.48),
    0 10px 24px rgba(142, 18, 30, 0.16);
}

.mega-category > a.is-highlighted::before {
  transition: transform 220ms ease;
}

.mega-category:hover > a.is-highlighted::before,
.mega-category.is-open > a.is-highlighted::before {
  transform: rotate(135deg) translate(-3px, -3px);
}

.mega-product-panel {
  left: auto;
  right: calc(100% + 8px);
  top: 0;
  z-index: 320;
  min-width: 340px;
  border: 1px solid rgba(142, 18, 30, 0.14);
  border-top: 3px solid rgba(185, 25, 38, 0.82);
  border-radius: 0 0 8px 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(255, 248, 249, 0.96)),
    rgba(255, 255, 255, 0.92);
  box-shadow:
    0 26px 76px rgba(17, 20, 22, 0.15),
    0 16px 38px rgba(142, 18, 30, 0.12);
  backdrop-filter: blur(18px);
  overflow-x: hidden;
  overflow-y: auto;
  transform: translateX(-14px) scale(0.985);
  transition:
    opacity 240ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 240ms ease;
}

.mega-product-panel::before {
  left: 100%;
  right: auto;
  width: 14px;
}

.mega-category:hover .mega-product-panel,
.mega-category.is-open .mega-product-panel {
  transform: translateX(0) scale(1);
}

.mega-product-panel a {
  min-height: 44px;
  padding: 9px 34px;
  color: #1c2024;
  transition:
    background 180ms ease,
    color 180ms ease,
    padding-left 180ms ease,
    box-shadow 180ms ease;
}

.mega-product-panel a:hover,
.mega-product-panel a:focus-visible {
  padding-left: 42px;
  background:
    linear-gradient(90deg, rgba(185, 25, 38, 0.12), rgba(255, 245, 246, 0.4));
  color: #8e121e;
  box-shadow: inset 3px 0 0 rgba(185, 25, 38, 0.76);
}

@media (max-width: 980px) {
  .product-mega-menu,
  .nav-product-item:hover .product-mega-menu,
  .nav-product-item:focus-within .product-mega-menu,
  .nav-product-item.is-open .product-mega-menu,
  .mega-product-panel,
  .mega-category:hover .mega-product-panel,
  .mega-category:focus-within .mega-product-panel {
    position: static;
    min-width: 0;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    backdrop-filter: none;
  }

  .mega-product-panel {
    padding: 0 0 8px 14px;
  }

  .mega-product-panel a:hover,
  .mega-product-panel a:focus-visible {
    padding-left: 24px;
  }
}

@media (max-width: 980px) {
  .nav-product-button {
    width: 100%;
    justify-content: space-between;
    min-height: 46px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(142, 18, 30, 0.12);
    text-align: left;
  }

  .product-mega-menu,
  .nav-product-item:hover .product-mega-menu,
  .nav-product-item:focus-within .product-mega-menu {
    position: static;
    max-height: 0;
    margin: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    border: 0;
    box-shadow: none;
    transition:
      max-height 260ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 180ms ease,
      visibility 180ms ease;
  }

  .nav-product-item.is-open .product-mega-menu {
    max-height: 76vh;
    margin-top: 8px;
    overflow: visible;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    border: 1px solid rgba(142, 18, 30, 0.14);
    border-top: 2px solid rgba(185, 25, 38, 0.76);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 18px 38px rgba(142, 18, 30, 0.11);
  }
}

@media (min-width: 981px) {
  .nav-product-item.is-open > .product-mega-menu {
    position: absolute !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translate(-46%, 0) scale(1) !important;
  }

  .mega-category.is-open > .mega-product-panel {
    position: absolute !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(0) scale(1) !important;
  }
}


/* Deploy image fallback: keeps cards and galleries premium even if a hosted asset is still propagating. */
.image-fallback,
img.is-image-missing {
  opacity: 0;
}
.image-fallback {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(208, 34, 45, 0.88), rgba(25, 29, 31, 0.88)),
    url("assets/videos/hero-video-poster.webp") center / cover no-repeat;
}
.image-fallback::before {
  content: "NEXIA SYSTEMS";
  position: absolute;
  inset: auto 18px 18px;
  z-index: 2;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.image-fallback::after {
  content: "Premium fenestration visual";
  position: absolute;
  left: 18px;
  bottom: 42px;
  z-index: 2;
  color: rgba(255, 253, 248, 0.84);
  font-size: 12px;
  font-weight: 600;
}
.page-hero.image-fallback::before {
  content: none;
}
.page-hero.image-fallback::after {
  content: none;
}
.brand.image-fallback,
.site-header .brand.image-fallback,
.footer-brand.image-fallback {
  background: none;
}
.brand.image-fallback::before {
  background-image: url("assets/videos/hero-video-poster.webp");
}


/* Keep image frames stable while eager-loading deploy assets. */
.catalogue-card img,
.product-link-card img,
.system-feature img,
.portfolio-tile img,
.completed-project-card img,
.product-gallery-grid img,
.product-band img,
.about-preview-image img,
.project-card img {
  min-height: 180px;
  background: rgba(17, 20, 22, 0.08);
}


/* Real logo image for reliable Vercel rendering. */
.brand::before {
  display: none;
}
.brand-logo-img {
  display: block;
  width: 154px;
  height: 52px;
  object-fit: contain;
  flex: 0 0 auto;
}
.site-header .brand-logo-img {
  width: 154px;
  height: 42px;
  object-position: left center;
}
.footer-brand .brand-logo-img {
  width: 150px;
  height: 48px;
}
.brand.logo-image-missing .wordmark {
  display: inline-flex;
}

/* Small-desktop fit layer: prevents clipped layouts on 1024-1366px screens. */
@media (max-width: 1180px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .shell,
  .page-hero.image-hero .page-hero-content,
  .system-promise-strip .shell,
  .section-white > .product-band,
  .product-gallery-section > .shell,
  .section-paper > .three-column,
  .section-ink > .spec-layout,
  .product-lineup-section > .shell,
  .catalogue-grid,
  .filters,
  .system-feature-grid,
  .completed-projects-viewport,
  .expertise-section .shell {
    width: min(100% - 32px, 1120px);
  }

  .site-header {
    height: 72px;
    padding: 0 20px;
    gap: 14px;
  }

  .site-header .brand {
    flex: 0 0 auto;
  }

  .site-header .brand-logo-img {
    width: 132px;
    height: 36px;
  }

  .site-header .brand-copy small {
    font-size: 9px;
  }

  .main-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    max-height: calc(100svh - 72px);
    overflow-y: auto;
    margin-left: 0;
    padding: 18px 20px 28px;
    background: var(--white);
    color: var(--ink);
    box-shadow: 0 24px 40px rgba(17, 20, 22, 0.12);
  }

  body.nav-open .main-nav {
    display: grid;
  }

  .main-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-product-item {
    display: grid;
  }

  .nav-product-button {
    min-height: 48px;
    text-align: left;
  }

  .product-mega-menu,
  .mega-product-panel {
    position: static;
    min-width: 0;
    max-height: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
  }

  .product-mega-menu {
    border-top-width: 2px;
  }

  .mega-product-tabs {
    grid-template-columns: 1fr;
  }

  .mega-product-tabs > a,
  .mega-category > a,
  .mega-product-panel a {
    min-height: 42px;
    padding: 10px 18px;
    font-size: 13px;
  }

  .mega-product-panel {
    padding: 0 0 8px 14px;
    border: 0;
  }

  .header-actions .button {
    display: none;
  }

  .header-social-actions {
    gap: 7px;
  }

  .social-link {
    width: 36px;
    height: 36px;
  }

  .menu-button {
    display: grid;
  }

  .hero {
    min-height: clamp(560px, 82svh, 820px);
  }

  .page-hero {
    min-height: clamp(440px, 64svh, 680px);
    padding: 118px 0 56px;
  }

  h1,
  .page-hero-content h1 {
    font-size: clamp(42px, 6vw, 66px);
    max-width: 920px;
  }

  h2 {
    font-size: clamp(32px, 4.5vw, 46px);
  }

  .about-preview-layout,
  .intro-layout,
  .split-layout,
  .film-layout,
  .spec-layout,
  .contact-layout,
  .product-band,
  .workshop-layout,
  .landmark-layout,
  .partner-grid,
  .testimonial-layout,
  .landmark-projects-block {
    grid-template-columns: 1fr;
  }

  .landmark-projects-block {
    padding: 26px 18px;
  }

  .landmark-projects-block h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .compact-site-list {
    grid-template-columns: 1fr;
  }

  .compact-site-list li {
    min-height: 78px;
  }

  .about-preview-image,
  .about-preview-image.reveal,
  .about-preview-image.reveal.is-visible {
    width: min(100%, 720px);
    max-width: 720px;
    transform: none;
  }

  .about-preview-copy,
  .landmark-copy,
  .testimonial-intro {
    margin-left: 0;
    position: static;
  }

  .system-feature-grid,
  .catalogue-grid,
  .product-link-grid,
  .performance-grid,
  .story-grid,
  .home-site-wall,
  .portfolio-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .system-feature {
    min-height: 390px;
  }

  .completed-projects-grid {
    width: max-content;
  }

  .completed-project-card {
    flex-basis: clamp(300px, 42vw, 380px);
  }

  .floating-impact {
    top: auto;
    right: 16px;
    bottom: 16px;
    width: min(220px, calc(100vw - 32px));
    transform: none;
  }
}

@media (max-width: 1400px) {
  .about-preview-image,
  .about-preview-image.reveal,
  .about-preview-image.reveal.is-visible {
    transform: none;
  }

  .about-preview-copy {
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .system-feature-grid,
  .catalogue-grid,
  .product-link-grid,
  .performance-grid,
  .story-grid,
  .home-site-wall,
  .portfolio-wall,
  .three-column,
  .stat-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-feature,
  .mosaic-large,
  .project-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .completed-project-card {
    flex-basis: min(86vw, 340px);
  }
}

.site-footer .footer-social-links .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  line-height: 0;
}

.site-footer .footer-social-links .social-link svg {
  display: block;
  width: 18px;
  height: 18px;
  margin: 0;
}

.expertise-section .system-feature-viewport {
  width: min(100% - 40px, 1720px);
}

.expertise-section .system-feature-grid {
  display: flex;
  grid-template-columns: none;
  width: max-content;
}

.expertise-section .system-feature {
  flex: 0 0 clamp(304px, 28vw, 424px);
}

@media (max-width: 760px) {
  .expertise-section .system-feature-viewport {
    width: min(100% - 28px, 1180px);
  }

  .expertise-section .system-feature {
    flex-basis: min(82vw, 340px);
    min-height: 390px;
  }

  .system-feature-grid.is-marquee-ready {
    animation-duration: 58s;
  }

  .schuco-proof-card,
  .schuco-application-grid,
  .schuco-benefit-grid,
  .schuco-showroom-grid {
    grid-template-columns: 1fr;
  }

  .schuco-showroom-grid {
    grid-template-columns: 1fr;
  }

  .schuco-proof-logo {
    justify-items: center;
  }

  .schuco-proof-logo img {
    max-width: 280px;
  }

  .schuco-proof-copy h2 {
    font-size: clamp(34px, 10vw, 52px);
  }

  .schuco-proof-detail {
    min-height: 0;
  }

  .schuco-proof-main-img {
    height: auto;
    min-height: 240px;
  }

  .schuco-showroom-feature,
  .schuco-showroom-card {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
  }

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

  .warranty-sample-viewport {
    width: min(100% - 28px, 1180px);
  }

  .warranty-sample-card {
    flex-basis: min(78vw, 300px);
    min-height: 238px;
  }

  .warranty-sample-button,
  .warranty-sample-card img {
    min-height: 238px;
  }

  .warranty-sample-track.is-marquee-ready {
    animation-duration: 62s;
  }

  .sample-lightbox {
    width: min(94vw, 1180px);
  }
}

@media (max-width: 1240px) {
  .schuco-proof-card {
    grid-template-columns: 1fr;
  }

  .schuco-proof-detail {
    max-width: 720px;
  }

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

@media (min-width: 901px) and (max-width: 1180px) {
  .landmark-projects-block {
    width: min(100% - 28px, 1680px);
    grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1.62fr);
    gap: 24px;
    padding: 24px;
  }

  .landmark-projects-copy {
    position: static;
  }

  .compact-site-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .projects-portfolio-section .portfolio-wall {
    width: min(100% - 28px, 1120px);
  }

  .projects-portfolio-section .project-grid {
    width: min(100% - 28px, 1120px);
    gap: 18px;
  }

  .projects-portfolio-section .project-card,
  .projects-portfolio-section .project-card:not(.project-wide) {
    grid-template-columns: 1fr;
  }

  .projects-portfolio-section .project-card img {
    min-height: 280px;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .projects-portfolio-section .portfolio-feature,
  .projects-portfolio-section .portfolio-tile {
    min-height: 380px;
  }
}

@media (max-width: 640px) {
  .projects-portfolio-section .section-heading {
    width: min(100% - 28px, 1120px);
    padding: 22px 18px;
  }

  .projects-portfolio-section .project-card div {
    padding: 24px 20px;
  }

  .projects-portfolio-section .project-card h2,
  .projects-portfolio-section .project-card:not(.project-wide) h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .projects-portfolio-section .portfolio-feature,
  .projects-portfolio-section .portfolio-tile {
    min-height: 300px;
  }
}
