:root {
  --ink: #080808;
  --muted: #6e6e6e;
  --line: #d9d9d9;
  --paper: #f4f4f2;
  --white: #ffffff;
  --black: #050505;
  --soft-black: #111111;
  --red: #7b1118;
  --red-dark: #52090f;
  --steel: #9ea3a8;
  --silver: #e5e5e2;
  --brass: #a6a6a1;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.16);
}

/* Mobile image recovery: keep the cleaner mobile layout without hiding visual content. */
@media (max-width: 760px) {
  html body main #home .hero-content {
    display: block !important;
    position: static !important;
    width: calc(100% - 32px) !important;
    max-width: 430px !important;
    margin: 0 auto !important;
    padding: 26px 0 10px !important;
    color: #111 !important;
    text-shadow: none !important;
  }

  html body main #home .hero-overlay,
  html body main #home .cover-badge,
  html body main #home .hero-signature {
    display: none !important;
  }

  html body main #home .hero-content .eyebrow,
  html body main #home .hero-content h1,
  html body main #home .hero-content p,
  html body main #home .hero-content span {
    color: inherit !important;
    text-shadow: none !important;
  }

  html body main #home .hero-copy {
    color: #666 !important;
  }

  html body main #home .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-top: 20px !important;
  }

  html body main #home .hero-facts,
  html body main #home > .trust-strip {
    display: grid !important;
  }

  html body main #home .space-stage,
  html body main #home .space-stage-track,
  html body main #home .advantage-cards,
  html body main #home .advantage-cards article,
  html body main #home .proof-grid,
  html body main #partners .proof-grid {
    overflow: visible !important;
  }

  html body main #home img,
  html body main .page img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-width: 100% !important;
  }

  html body main #home .space-slide img,
  html body main #home .advantage-cards img,
  html body main #products .system-family-photo,
  html body main #materials .material-photo img,
  html body main #advantages .compare-photo img,
  html body main #cases .case-photo,
  html body main #service .process-photo,
  html body main #partners .proof-photo img {
    width: 100% !important;
    height: auto !important;
    min-height: 180px !important;
    object-fit: cover !important;
    background: #f4f4f2 !important;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f6f5f1;
  font-family: Inter, Arial, sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 76px;
  padding: 18px 38px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(10, 10, 10, 0.12);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 46%),
    var(--black);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 3px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand em {
  display: block;
  font-style: normal;
}

.brand strong {
  font-size: 13px;
  letter-spacing: 0.18em;
}

.brand em {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.main-nav a {
  padding: 9px 7px;
  border-radius: 2px;
  color: #303030;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--red);
  background: #f1eeee;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.language-switcher {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(42px, auto));
  border: 1px solid rgba(8, 8, 8, 0.18);
  background: var(--white);
}

.lang-btn {
  min-height: 38px;
  padding: 0 12px;
  border: 0;
  color: #4a4a4a;
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.lang-btn + .lang-btn {
  border-left: 1px solid rgba(8, 8, 8, 0.16);
}

.lang-btn.is-active {
  color: var(--white);
  background: var(--black);
}

.header-cta,
.btn.primary {
  color: var(--white);
  background: var(--red);
}

.btn.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.72);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.page {
  display: block;
  scroll-margin-top: 86px;
  border-top: 1px solid rgba(8, 8, 8, 0.08);
}

/* Partners page must be a single landscape viewport, without adjacent sections peeking in. */
html body main section.page#partners {
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: calc(100svh - 76px) !important;
  padding: 0 !important;
  overflow: hidden !important;
  scroll-margin-top: 76px !important;
}

html body main section.page#partners > div.page-hero.compact,
html body main section.page#partners > div.proof-grid {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

html body main section.page#partners .partner-logo-wall {
  min-height: calc(100svh - 132px) !important;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  background: var(--ink);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.42) contrast(1.02) brightness(0.88);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.18) 48%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.42), transparent 48%);
}

.hero-content {
  position: absolute;
  left: clamp(24px, 6vw, 86px);
  bottom: 62px;
  z-index: 2;
  width: min(520px, calc(100% - 48px));
  padding: 0;
  margin: 0;
  color: var(--white);
  background: transparent;
  border-left: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-content::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 36px;
  z-index: -1;
  color: rgba(255, 255, 255, 0.06);
  font-size: clamp(70px, 10vw, 150px);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 0.8;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 880px;
  margin-bottom: 24px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 0.98;
  letter-spacing: 0;
}

.cover-title,
.page-hero.compact h1,
.monograph-strip h2,
.featured-case h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.cover-title {
  display: grid;
  gap: 10px;
  max-width: 520px;
  margin-bottom: 18px;
}

.cn-title {
  display: block;
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.38);
}

.en-title {
  display: block;
  max-width: 460px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(12px, 1.2vw, 16px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .btn.primary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--black);
  box-shadow: none;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.25;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy {
  max-width: 430px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1.75;
}

.hero-copy span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-signature {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 16px;
  margin-top: 24px;
  color: #b7a176;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.hero-signature span {
  position: relative;
  padding-left: 18px;
}

.hero-signature span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  background: var(--red);
  transform: translateY(-50%) rotate(45deg);
}

.cover-badge {
  position: absolute;
  right: clamp(24px, 5vw, 74px);
  bottom: 54px;
  z-index: 2;
  min-width: 156px;
  padding: 14px 16px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
}

.cover-badge strong,
.cover-badge span {
  display: block;
}

.cover-badge strong {
  margin-bottom: 6px;
  color: #d1bea0;
  font-size: 28px;
  line-height: 1;
}

.cover-badge span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 3;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid rgba(8, 8, 8, 0.16);
  border-radius: 2px;
  box-shadow: none;
}

.trust-strip div {
  padding: 30px 24px;
  background: transparent;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-strip span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.monograph-strip {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(360px, 1fr);
  gap: 34px 56px;
  width: min(1180px, calc(100% - 48px));
  margin: 112px auto 0;
  padding: 70px 0 64px;
  border-top: 1px solid rgba(8, 8, 8, 0.18);
  border-bottom: 1px solid rgba(8, 8, 8, 0.18);
}

.monograph-strip span {
  display: block;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.monograph-strip h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.04;
}

.monograph-strip p {
  align-self: end;
  max-width: 680px;
  margin-bottom: 0;
  font-size: 13px;
}

.monograph-strip ul {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
  border-top: 1px solid rgba(8, 8, 8, 0.14);
}

.monograph-strip li {
  padding: 18px 10px 0 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.advantage-stage {
  width: min(1180px, calc(100% - 48px));
  margin: 96px auto 0;
  background: var(--black);
  color: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: none;
}

.advantage-image {
  min-height: 360px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.2)),
    url("./assets/catalog-advantage-surface.jpg") center / cover;
}

.advantage-copy {
  padding: 38px 44px 44px;
}

.advantage-copy h2 {
  max-width: 820px;
  color: var(--white);
  font-size: clamp(24px, 2.6vw, 34px);
}

.advantage-icons {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.advantage-icons span {
  display: grid;
  min-height: 68px;
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.section,
.page-hero,
.case-layout,
.proof-grid,
.catalog-grid,
.material-grid,
.detail-rows,
.process,
.faq-list,
.contact-shell,
.timeline {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 112px 0;
}

.section-head {
  max-width: 560px;
  margin-bottom: 48px;
}

.range-grid,
.catalog-grid,
.material-grid,
.proof-grid,
.process,
.case-grid {
  display: grid;
  gap: 1px;
}

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

.range-grid article,
.catalog-grid article,
.material-grid article,
.process article,
.case-grid article,
.proof-grid article,
.material-panel,
.rfq-form,
.contact-cards div {
  border: 0;
  border-top: 1px solid rgba(8, 8, 8, 0.14);
  border-radius: 2px;
  background: transparent;
}

.range-grid article:hover,
.catalog-grid article:hover,
.material-grid article:hover,
.process article:hover {
  border-color: rgba(8, 8, 8, 0.34);
  box-shadow: none;
}

.range-grid article,
.catalog-grid article,
.material-grid article,
.process article {
  padding: 24px 20px 28px 0;
}

.range-grid span,
.catalog-grid span,
.process span {
  display: inline-flex;
  margin-bottom: 28px;
  color: #777;
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: 72px;
  align-items: stretch;
  padding-top: 0;
}

.material-panel {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 0;
  box-shadow: none;
}

.metal-swatch {
  min-height: 240px;
  border-radius: 2px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.82), transparent 24%, rgba(255, 255, 255, 0.36) 50%, rgba(0, 0, 0, 0.16) 76%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 7px),
    linear-gradient(135deg, #fbfbfa, #8f9396 45%, #e7e7e3);
}

ul {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.page-hero.compact {
  padding: 118px 0 50px;
}

.page-hero.compact h1,
.contact-shell h1 {
  color: var(--ink);
  font-size: clamp(30px, 4vw, 52px);
}

.page-hero.compact p {
  max-width: 740px;
  font-size: 13px;
}

.case-layout {
  padding-bottom: 112px;
}

.featured-case {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 34px;
  align-items: center;
  padding: 0;
  margin-bottom: 44px;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(8, 8, 8, 0.16);
  padding-top: 28px;
  border-radius: 2px;
}

.image-sim {
  min-height: 340px;
  border-radius: 2px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 10px),
    linear-gradient(140deg, #f8f8f5, #a1a3a5 47%, #1a1a1a);
}

.image-sim.kitchen {
  min-height: 560px;
  background-image: url("./assets/optimized/volume-kitchen-sereno-a55ca3d5.webp");
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.08);
}

.image-sim.brand-proof {
  background: url("./assets/optimized/catalog-brand-proof-f7c0761d.webp") center / cover;
}

.image-sim.bath { background: url("./assets/volume-bath-lavabo.jpg") center / cover; }
.image-sim.wardrobe { background: url("./assets/optimized/volume-wardrobe-tessuto-8296c322.webp") center / cover; }
.image-sim.basement { background: linear-gradient(135deg, #e8e8e4, #8d9092 55%, #0f0f0f); }
.image-sim.showroom { background: linear-gradient(135deg, #ffffff, #bfc0be 45%, #080808); }
.image-sim.factory { background: linear-gradient(135deg, #eeeeea, #9b9d9d 48%, #ffffff); }
.image-sim.outdoor { background: url("./assets/optimized/volume-outdoor-kitchen-457fe3dc.webp") center / cover; }

.label {
  display: inline-block;
  margin-bottom: 12px;
  color: #777;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--ink);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spec-lines {
  display: grid;
  margin: 22px 0;
  border-top: 1px solid rgba(8, 8, 8, 0.16);
}

.spec-lines span {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 10px 0;
  color: var(--muted);
  border-bottom: 1px solid rgba(8, 8, 8, 0.14);
  font-size: 13px;
}

.spec-lines b {
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.case-grid article,
.proof-grid article {
  padding: 16px;
}

.proof-grid,
.catalog-grid,
.material-grid,
.process {
  padding-bottom: 96px;
}

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

.certificate-stack {
  display: grid;
  gap: 12px;
  min-height: 260px;
  padding: 28px;
  border-radius: 2px;
  background:
    linear-gradient(135deg, #fafaf8, #d8d8d4),
    var(--silver);
}

.certificate-stack span {
  display: block;
  border: 1px solid #c9c9c5;
  border-radius: 2px;
  background: var(--white);
}

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

.product-photo {
  height: 250px;
  margin: 0 0 24px;
  border-radius: 2px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.32), transparent),
    linear-gradient(140deg, #f8f8f5, #a1a3a5 47%, #1a1a1a);
  background-size: cover;
  background-position: center;
  filter: grayscale(0.68) contrast(1.02);
}

.kitchen-photo {
  background-image: url("./assets/optimized/volume-kitchen-sereno-a55ca3d5.webp");
}

.wardrobe-photo {
  background-image: url("./assets/optimized/volume-wardrobe-tessuto-8296c322.webp");
}

.bath-photo {
  background-image: url("./assets/volume-bath-lavabo.jpg");
}

.threshold-photo {
  background-image: url("./assets/optimized/volume-threshold-6026755c.webp");
}

.basement-photo {
  background-image: url("./assets/optimized/space-threshold-1-030f85ee.webp");
}

.laundry-photo {
  background-image: url("./assets/optimized/space-threshold-2-dad0262e.webp");
}

.wine-photo {
  background-image: url("./assets/optimized/volume-threshold-6026755c.webp");
}

.architecture-photo {
  background-image: url("./assets/volume-cover-monograph.jpg");
}

.wall-panel-photo {
  background-image: url("./assets/optimized/space-architecture-1-677e90e4.webp");
}

.hidden-door-photo {
  background-image: url("./assets/optimized/space-architecture-2-102c89d6.webp");
}

.concealed-cabinet-photo {
  background-image: url("./assets/optimized/catalog-wardrobe-d6f7201f.webp");
}

.openair-photo {
  background-image: url("./assets/optimized/volume-outdoor-kitchen-457fe3dc.webp");
}

.living-photo {
  background-image: url("./assets/optimized/catalog-metal-flow-89b657b4.webp");
}

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

.reading-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(1180px, calc(100% - 48px));
  margin: -52px auto 96px;
}

.reading-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  background: #f9f8f4;
}

.reading-grid span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--red);
  font-weight: 800;
}

.dot {
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 26px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #ffffff, var(--steel) 48%, #111111 100%);
}

.detail-rows {
  display: grid;
  gap: 12px;
  padding-bottom: 96px;
}

.detail-rows div {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
}

.detail-rows span {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 12px;
  padding-bottom: 96px;
}

details {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--white);
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}

details p {
  margin: 14px 0 0;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.75fr);
  gap: 48px;
  align-items: start;
  padding: 92px 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.contact-cards div {
  padding: 20px;
}

.contact-cards strong,
.contact-cards span {
  display: block;
}

.contact-cards span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.rfq-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: #2b2b2b;
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--ink);
  background: #f8f8f6;
  font: inherit;
}

textarea {
  min-height: 122px;
  resize: vertical;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: 96px;
}

.timeline div {
  padding: 30px;
  border-left: 3px solid var(--red);
  background: var(--white);
}

.timeline span {
  display: block;
  margin-bottom: 32px;
  color: var(--brass);
  font-weight: 800;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .site-header.nav-open .main-nav {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    grid-template-columns: repeat(2, 1fr);
    padding-top: 10px;
  }

  .site-header.nav-open .header-actions {
    display: flex;
    grid-column: 1 / -1;
    justify-content: space-between;
    padding-top: 12px;
  }
}

@media (max-width: 860px) {
  .site-header {
    padding: 12px 18px;
  }

  .brand {
    min-width: 0;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding-top: 34px;
    padding-bottom: 34px;
    margin-left: 24px;
    margin-top: 42px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.38) 58%, rgba(0, 0, 0, 0.72));
  }

  .cover-badge {
    left: 24px;
    right: auto;
    bottom: 32px;
    min-width: 144px;
  }

  .trust-strip,
  .range-grid,
  .case-grid,
  .proof-grid,
  .catalog-grid,
  .material-grid,
  .reading-grid,
  .process,
  .timeline,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .monograph-strip {
    grid-template-columns: 1fr;
  }

  .monograph-strip ul {
    grid-template-columns: 1fr 1fr;
  }

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

  .split-section,
  .featured-case,
  .contact-shell,
  .material-panel {
    grid-template-columns: 1fr;
  }

  .detail-rows div {
    grid-template-columns: 1fr;
  }

  .section,
  .page-hero.compact,
  .contact-shell {
    padding-top: 64px;
  }
}

@media (max-width: 540px) {
  .site-header.nav-open .main-nav {
    grid-template-columns: 1fr;
  }

  .site-header.nav-open .header-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .brand em {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  h1 {
    font-size: 38px;
  }

  .cn-title {
    font-size: 36px;
  }

  .en-title {
    font-size: 13px;
  }

  .hero-copy {
    font-size: 14px;
  }

  .hero-copy span {
    font-size: 12px;
  }

  .hero-signature {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 20px;
    font-size: 11px;
  }

  h2 {
    font-size: 30px;
  }
}

/* Luxury homepage direction inspired by the provided black-and-white reference board. */
body {
  background: #242424;
}

body::before {
  content: "大牌高端首页";
  position: fixed;
  left: 34px;
  top: 160px;
  z-index: 1;
  width: 1em;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(28px, 3.2vw, 52px);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: 0.18em;
  pointer-events: none;
}

body::after {
  content: "HOMEPAGE DESIGN";
  position: fixed;
  left: 118px;
  top: 520px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.32);
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 0.08em;
  writing-mode: vertical-rl;
  pointer-events: none;
}

.site-header {
  background: rgba(8, 8, 8, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.brand strong,
.main-nav a {
  color: #fff;
}

.brand em {
  color: rgba(255, 255, 255, 0.56);
}

.main-nav a:hover,
.main-nav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.language-switcher {
  border-color: rgba(255, 255, 255, 0.24);
  background: transparent;
}

.lang-btn {
  color: rgba(255, 255, 255, 0.72);
}

.lang-btn + .lang-btn {
  border-left-color: rgba(255, 255, 255, 0.2);
}

.lang-btn.is-active {
  color: #050505;
  background: #fff;
}

.header-cta {
  color: #050505;
  background: #fff;
}

main {
  width: min(920px, calc(100% - 260px));
  margin: 0 auto;
  background: #f7f6f1;
}

.hero {
  min-height: 760px;
  background: #050505;
}

.hero-image {
  height: 58%;
  object-position: center 38%;
  filter: grayscale(0.75) contrast(1.04) brightness(0.78);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.52) 58%, #050505 58%, #050505 100%);
}

.hero-content {
  left: 0;
  right: 0;
  bottom: 54px;
  width: min(620px, calc(100% - 64px));
  margin: 0 auto;
  text-align: center;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.66);
}

.cover-title {
  justify-items: center;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cn-title {
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.28;
}

.en-title {
  max-width: 420px;
  padding-top: 0;
  border-top: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  letter-spacing: 0.22em;
}

.hero-copy {
  max-width: 460px;
  margin: 0 auto 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

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

.btn,
.header-cta {
  min-height: 34px;
  padding: 0 18px;
  font-size: 10px;
}

.btn.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.hero-signature,
.cover-badge {
  display: none;
}

.trust-strip,
.monograph-strip,
.section,
.page-hero,
.case-layout,
.proof-grid,
.catalog-grid,
.material-grid,
.reading-grid,
.detail-rows,
.process,
.faq-list,
.contact-shell,
.timeline {
  width: min(760px, calc(100% - 56px));
}

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

.trust-strip div {
  padding: 24px 18px;
}

.section,
.page-hero.compact,
.contact-shell {
  padding-top: 86px;
}

.page-hero.compact h1,
.contact-shell h1,
.monograph-strip h2,
h2 {
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.18;
}

.page-hero.compact p,
.monograph-strip p,
.range-grid p,
.catalog-grid p,
.material-grid p,
.case-grid p,
.proof-grid p,
.process p,
.detail-rows span,
details p,
.contact-cards span,
.hero-copy {
  font-size: 11px;
  line-height: 1.8;
}

.monograph-strip {
  grid-template-columns: 1fr;
  margin-top: 92px;
}

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

.advantage-stage {
  width: min(760px, calc(100% - 56px));
}

.advantage-image {
  min-height: 250px;
}

.advantage-copy {
  padding: 30px;
}

.advantage-copy h2 {
  font-size: clamp(20px, 2.3vw, 28px);
}

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

.range-grid,
.material-grid,
.process {
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 34px;
}

.catalog-grid,
.proof-grid,
.case-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 28px;
}

.product-photo {
  height: 210px;
}

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

.image-sim.kitchen {
  min-height: 420px;
}

.reading-grid {
  margin-top: -34px;
  gap: 0;
}

.reading-grid article,
.detail-rows div,
details,
.rfq-form,
.contact-cards div {
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(8, 8, 8, 0.16);
  box-shadow: none;
}

.timeline div {
  background: transparent;
  border-left-color: rgba(8, 8, 8, 0.2);
}

.rfq-form {
  padding: 0;
}

input,
select,
textarea {
  background: #fff;
}

@media (max-width: 1120px) {
  body::before,
  body::after {
    display: none;
  }

  main {
    width: min(940px, calc(100% - 40px));
  }

  .nav-toggle span {
    background: #fff;
  }

  .nav-toggle {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.24);
  }
}

@media (max-width: 680px) {
  main {
    width: 100%;
  }

  .hero {
    min-height: 700px;
  }

  .hero-content {
    bottom: 42px;
  }

  .cn-title {
    font-size: 25px;
  }

  .en-title {
    font-size: 9px;
  }

  .trust-strip,
  .range-grid,
  .catalog-grid,
  .material-grid,
  .proof-grid,
  .process,
  .case-grid,
  .advantage-icons,
  .reading-grid {
    grid-template-columns: 1fr;
  }
}

/* White luxury homepage direction based on the inner CHANEL-style content reference. */
body {
  background: #fff;
  color: #080808;
}

body::before,
body::after {
  display: none;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(8, 8, 8, 0.12);
  backdrop-filter: blur(18px);
}

.brand strong,
.main-nav a {
  color: #080808;
}

.brand em {
  color: rgba(8, 8, 8, 0.52);
}

.main-nav a:hover,
.main-nav a.is-active {
  color: #080808;
  background: #f0efeb;
}

.language-switcher {
  border-color: rgba(8, 8, 8, 0.18);
  background: #fff;
}

.lang-btn {
  color: rgba(8, 8, 8, 0.64);
}

.lang-btn + .lang-btn {
  border-left-color: rgba(8, 8, 8, 0.14);
}

.lang-btn.is-active {
  color: #fff;
  background: #050505;
}

.header-cta {
  color: #fff;
  background: #050505;
}

main {
  width: min(1080px, calc(100% - 56px));
  margin: 0 auto;
  background: #fff;
}

.hero {
  display: grid;
  min-height: auto;
  padding-bottom: 58px;
  background: #fff;
}

.hero-image {
  position: relative;
  display: block;
  height: min(66vh, 620px);
  min-height: 430px;
  object-position: center 45%;
  filter: grayscale(0.28) contrast(1.02) brightness(0.98);
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  width: min(620px, calc(100% - 48px));
  margin: 36px auto 0;
  color: #080808;
  text-align: center;
}

.hero .eyebrow {
  color: rgba(8, 8, 8, 0.48);
}

.cover-title {
  justify-items: center;
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
}

.cn-title {
  color: #080808;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: 0.18em;
  text-shadow: none;
}

.en-title {
  max-width: 430px;
  padding-top: 0;
  border-top: 0;
  color: rgba(8, 8, 8, 0.56);
  font-size: 10px;
  letter-spacing: 0.22em;
}

.hero-copy {
  max-width: 470px;
  margin: 0 auto 22px;
  color: rgba(8, 8, 8, 0.56);
  font-size: 12px;
  line-height: 1.8;
}

.hero-copy span {
  color: rgba(8, 8, 8, 0.52);
}

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

.hero .btn.primary {
  color: #fff;
  background: #050505;
  box-shadow: none;
}

.btn.secondary {
  color: #080808;
  border-color: rgba(8, 8, 8, 0.24);
}

.btn.secondary:hover {
  color: #fff;
  background: #050505;
  border-color: #050505;
}

.hero-signature,
.cover-badge {
  display: none;
}

.trust-strip,
.monograph-strip,
.section,
.page-hero,
.case-layout,
.proof-grid,
.catalog-grid,
.material-grid,
.reading-grid,
.detail-rows,
.process,
.faq-list,
.contact-shell,
.timeline {
  width: min(920px, calc(100% - 48px));
}

.trust-strip {
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  background: #fff;
  border-top: 1px solid rgba(8, 8, 8, 0.14);
  border-bottom: 1px solid rgba(8, 8, 8, 0.14);
}

.trust-strip div {
  padding: 24px 16px;
}

.section,
.page-hero.compact,
.contact-shell {
  padding-top: 92px;
}

.page-hero.compact h1,
.contact-shell h1,
.monograph-strip h2,
h2 {
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.16;
  letter-spacing: 0.02em;
}

.page-hero.compact p,
.monograph-strip p,
.range-grid p,
.catalog-grid p,
.material-grid p,
.case-grid p,
.proof-grid p,
.process p,
.detail-rows span,
details p,
.contact-cards span {
  font-size: 11px;
  line-height: 1.8;
}

.monograph-strip {
  grid-template-columns: 0.92fr 1.08fr;
  margin-top: 88px;
  padding: 0;
  background: #fff;
  border: 0;
}

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

.advantage-stage {
  width: min(920px, calc(100% - 48px));
  background: #050505;
}

.advantage-image {
  min-height: 310px;
  filter: grayscale(0.42) contrast(1.05);
}

.advantage-copy {
  padding: 36px;
}

.advantage-copy h2 {
  font-size: clamp(20px, 2.2vw, 28px);
}

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

.range-grid,
.material-grid,
.process {
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 34px;
}

.catalog-grid,
.proof-grid,
.case-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 34px 30px;
}

.product-photo {
  height: 230px;
  filter: grayscale(0.34) contrast(1.03);
}

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

.image-sim.kitchen {
  min-height: 430px;
}

.reading-grid {
  margin-top: -26px;
  gap: 0;
}

.reading-grid article,
.detail-rows div,
details,
.rfq-form,
.contact-cards div {
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(8, 8, 8, 0.14);
  box-shadow: none;
}

.timeline div {
  background: transparent;
  border-left-color: rgba(8, 8, 8, 0.2);
}

.rfq-form {
  padding: 0;
}

input,
select,
textarea {
  background: #fff;
}

@media (max-width: 1120px) {
  main {
    width: min(940px, calc(100% - 40px));
  }

  .nav-toggle span {
    background: #080808;
  }

  .nav-toggle {
    background: #fff;
    border-color: rgba(8, 8, 8, 0.2);
  }
}

@media (max-width: 760px) {
  main {
    width: 100%;
  }

  .hero {
    padding-bottom: 44px;
  }

  .hero-image {
    height: 52vh;
    min-height: 360px;
  }

  .hero-content {
    width: min(520px, calc(100% - 34px));
    margin-top: 30px;
  }

  .cn-title {
    font-size: 25px;
    letter-spacing: 0.12em;
  }

  .en-title {
    font-size: 9px;
  }

  .trust-strip,
  .range-grid,
  .catalog-grid,
  .material-grid,
  .proof-grid,
  .process,
  .case-grid,
  .advantage-icons,
  .reading-grid,
  .monograph-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    width: calc(100% - 32px);
  }
}

/* Opening screen: black cinematic stainless-steel welcome. */
main {
  width: 100%;
}

.site-header {
  background: rgba(5, 5, 5, 0.72);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.brand strong,
.main-nav a {
  color: #fff;
}

.brand em {
  color: rgba(255, 255, 255, 0.55);
}

.main-nav a:hover,
.main-nav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.language-switcher {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.lang-btn {
  color: rgba(255, 255, 255, 0.72);
}

.lang-btn + .lang-btn {
  border-left-color: rgba(255, 255, 255, 0.18);
}

.lang-btn.is-active {
  color: #050505;
  background: #fff;
}

.header-cta {
  color: #050505;
  background: #fff;
}

.hero {
  min-height: 100svh;
  padding: 0;
  background: #020202;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -18% -38%;
  z-index: 3;
  pointer-events: none;
  transform: translateX(-118%) skewX(-16deg);
  background:
    linear-gradient(
      102deg,
      transparent 0%,
      transparent 39%,
      rgba(116, 132, 138, 0.08) 44%,
      rgba(217, 225, 228, 0.26) 48%,
      rgba(255, 255, 255, 0.86) 50%,
      rgba(188, 199, 204, 0.34) 53%,
      rgba(120, 134, 140, 0.1) 58%,
      transparent 64%,
      transparent 100%
    );
  mix-blend-mode: screen;
  animation: sceneLightSweep 3.2s cubic-bezier(0.16, 0.84, 0.32, 1) 0.35s 1 both;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 30%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, #020202 92%);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.42) contrast(1.08) brightness(0.52);
  transform: scale(1.03);
}

.hero-overlay {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.22) 45%, rgba(0, 0, 0, 0.82)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.18) 38%, rgba(0, 0, 0, 0.84));
}

.hero-content {
  position: relative;
  z-index: 4;
  display: grid;
  place-items: center;
  width: min(760px, calc(100% - 48px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 92px 0 72px;
  color: #fff;
  text-align: center;
}

.hero .eyebrow {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  letter-spacing: 0.3em;
}

.cover-title {
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
}

.cn-title {
  color: #fff;
  background:
    linear-gradient(
      104deg,
      #ffffff 0%,
      #ffffff 31%,
      #9ea8ad 39%,
      #f7fbfc 45%,
      #b6c0c5 50%,
      #ffffff 57%,
      #ffffff 100%
    );
  background-size: 280% 100%;
  background-position: 100% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(32px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0.02em;
  text-shadow: 0 0 28px rgba(255, 255, 255, 0.18);
  animation: stainlessTextSweep 3.2s cubic-bezier(0.16, 0.84, 0.32, 1) 0.35s 1 both;
}

.shine-name {
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: inherit;
  background: inherit;
  background-size: inherit;
  background-position: inherit;
  -webkit-background-clip: text;
  background-clip: text;
  vertical-align: baseline;
  text-shadow:
    0 0 14px rgba(255, 255, 255, 0.34),
    0 0 38px rgba(167, 180, 185, 0.26);
}

.shine-name::after {
  display: none;
}

.en-title {
  max-width: 620px;
  padding-top: 0;
  border-top: 0;
  color: rgba(255, 255, 255, 0.84);
  background:
    linear-gradient(
      104deg,
      rgba(255, 255, 255, 0.84) 0%,
      rgba(255, 255, 255, 0.84) 34%,
      rgba(134, 148, 154, 0.95) 41%,
      #ffffff 48%,
      rgba(177, 189, 195, 0.96) 54%,
      rgba(255, 255, 255, 0.84) 63%,
      rgba(255, 255, 255, 0.84) 100%
    );
  background-size: 280% 100%;
  background-position: 100% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(15px, 1.6vw, 22px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.2em;
  text-transform: none;
  animation: stainlessSubTextSweep 3.2s cubic-bezier(0.16, 0.84, 0.32, 1) 0.35s 1 both;
}

.hero-copy,
.hero-actions,
.hero-signature,
.cover-badge {
  display: none;
}

.trust-strip {
  margin-top: 0;
}

@keyframes nameLightSweep {
  0% {
    left: -72%;
    opacity: 0;
  }

  18% {
    opacity: 1;
  }

  54% {
    left: 120%;
    opacity: 0.94;
  }

  100% {
    left: 120%;
    opacity: 0;
  }
}

@keyframes sceneLightSweep {
  0% {
    opacity: 0;
    transform: translateX(-118%) skewX(-16deg);
  }

  12% {
    opacity: 0.15;
  }

  42% {
    opacity: 0.92;
  }

  72% {
    opacity: 0.3;
  }

  100% {
    opacity: 0;
    transform: translateX(118%) skewX(-16deg);
  }
}

@keyframes stainlessTextSweep {
  0%,
  14% {
    color: #fff;
    background-position: 100% 50%;
    -webkit-text-fill-color: #fff;
    text-shadow: 0 0 28px rgba(255, 255, 255, 0.18);
  }

  30%,
  64% {
    color: transparent;
    background-position: 0% 50%;
    -webkit-text-fill-color: transparent;
    text-shadow:
      0 0 18px rgba(255, 255, 255, 0.24),
      0 0 46px rgba(165, 180, 188, 0.18);
  }

  100% {
    color: #fff;
    background-position: -24% 50%;
    -webkit-text-fill-color: #fff;
    text-shadow: 0 0 28px rgba(255, 255, 255, 0.18);
  }
}

@keyframes stainlessSubTextSweep {
  0%,
  14% {
    color: rgba(255, 255, 255, 0.84);
    background-position: 100% 50%;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.84);
  }

  30%,
  64% {
    color: transparent;
    background-position: 0% 50%;
    -webkit-text-fill-color: transparent;
  }

  100% {
    color: rgba(255, 255, 255, 0.84);
    background-position: -24% 50%;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.84);
  }
}

@media (max-width: 1120px) {
  .nav-toggle {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.24);
  }

  .nav-toggle span {
    background: #fff;
  }
}

@media (max-width: 760px) {
  .hero-content {
    width: min(520px, calc(100% - 34px));
    padding-top: 86px;
  }

  .cn-title {
    font-size: clamp(32px, 11vw, 46px);
    line-height: 1.14;
  }

  .en-title {
    max-width: 330px;
    font-size: 14px;
    letter-spacing: 0.14em;
  }

  .hero .eyebrow {
    font-size: 9px;
    letter-spacing: 0.2em;
  }
}

/* White cover direction: quiet luxury opening instead of a black cinematic intro. */
body {
  background: #fff;
}

main {
  width: min(1080px, calc(100% - 56px));
  background: #fff;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(8, 8, 8, 0.12);
}

.brand strong,
.main-nav a {
  color: #080808;
}

.brand em {
  color: rgba(8, 8, 8, 0.52);
}

.main-nav a:hover,
.main-nav a.is-active {
  color: #080808;
  background: #f0efeb;
}

.language-switcher {
  border-color: rgba(8, 8, 8, 0.18);
  background: #fff;
}

.lang-btn {
  color: rgba(8, 8, 8, 0.64);
}

.lang-btn + .lang-btn {
  border-left-color: rgba(8, 8, 8, 0.14);
}

.lang-btn.is-active {
  color: #fff;
  background: #050505;
}

.header-cta {
  color: #fff;
  background: #050505;
}

.hero {
  display: grid;
  min-height: auto;
  padding: 0 0 62px;
  background: #fff;
  isolation: auto;
}

.hero::before,
.hero::after {
  display: none;
}

.hero-image {
  position: relative;
  display: block;
  inset: auto;
  width: 100%;
  height: min(64vh, 600px);
  min-height: 430px;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.24) contrast(1.03) brightness(0.98);
  transform: none;
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: block;
  width: min(680px, calc(100% - 48px));
  min-height: auto;
  margin: 40px auto 0;
  padding: 0;
  color: #080808;
  text-align: center;
}

.hero .eyebrow {
  margin-bottom: 18px;
  color: rgba(8, 8, 8, 0.48);
  font-size: 10px;
  letter-spacing: 0.28em;
}

.cover-title {
  gap: 14px;
  max-width: 680px;
}

.cn-title {
  color: #080808;
  background: none;
  font-size: clamp(28px, 4.1vw, 54px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.04em;
  text-shadow: none;
  animation: none;
}

.shine-name {
  color: inherit;
  background: none;
  text-shadow: none;
}

.shine-name::after {
  display: none;
}

.en-title {
  max-width: 560px;
  background: none;
  color: rgba(8, 8, 8, 0.58);
  font-size: clamp(13px, 1.3vw, 17px);
  font-weight: 500;
  letter-spacing: 0.18em;
  animation: none;
}

.hero-copy,
.hero-actions {
  display: none;
}

.trust-strip,
.monograph-strip,
.section,
.page-hero,
.case-layout,
.proof-grid,
.catalog-grid,
.material-grid,
.reading-grid,
.detail-rows,
.process,
.faq-list,
.contact-shell,
.timeline,
.advantage-stage {
  width: min(920px, calc(100% - 48px));
}

@media (max-width: 1120px) {
  main {
    width: min(940px, calc(100% - 40px));
  }

  .nav-toggle {
    background: #fff;
    border-color: rgba(8, 8, 8, 0.2);
  }

  .nav-toggle span {
    background: #080808;
  }
}

@media (max-width: 760px) {
  main {
    width: 100%;
  }

  .hero {
    padding-bottom: 48px;
  }

  .hero-image {
    height: 52vh;
    min-height: 360px;
  }

  .hero-content {
    width: min(520px, calc(100% - 34px));
    margin-top: 30px;
    padding-top: 0;
  }

  .cn-title {
    font-size: clamp(28px, 9vw, 38px);
    line-height: 1.16;
  }

  .en-title {
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  .hero .eyebrow {
    font-size: 9px;
    letter-spacing: 0.18em;
  }
}

/* Refined Fadior text logo for the header. */
.brand {
  gap: 0;
  min-width: 156px;
}

.brand-mark {
  display: none;
}

.brand-logo {
  display: inline-grid;
  justify-items: start;
  gap: 5px;
  color: #080808;
  line-height: 1;
}

.brand-logo strong {
  display: block;
  color: #080808;
  font-size: 18px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: 0.18em;
}

.brand-logo em {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 2px 9px 2px 10px;
  color: #080808;
  border: 1.5px solid #080808;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.22em;
}

@media (max-width: 760px) {
  .brand {
    min-width: auto;
  }

  .brand-logo strong {
    font-size: 16px;
  }

  .brand-logo em {
    min-height: 18px;
    padding: 2px 8px;
    font-size: 9px;
  }
}

/* Full-screen hero and compact black navigation direction. */
body {
  background: #fff;
}

main {
  width: 100%;
  background: #fff;
}

.site-header {
  min-height: 58px;
  padding: 8px 24px;
  gap: 18px;
  background: #050505;
  border-bottom: 0;
  backdrop-filter: none;
}

.brand {
  min-width: 126px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  color: #fff;
}

.brand-logo strong {
  display: none;
}

.brand-logo em {
  min-height: 28px;
  padding: 5px 12px 5px 14px;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.22em;
}

.brand strong,
.brand em,
.main-nav a {
  color: #fff;
}

.main-nav {
  gap: 2px;
}

.main-nav a {
  padding: 7px 9px;
  border-radius: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.header-actions {
  gap: 10px;
}

.language-switcher {
  border-color: rgba(255, 255, 255, 0.26);
  background: transparent;
}

.lang-btn {
  min-height: 38px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.lang-btn + .lang-btn {
  border-left-color: rgba(255, 255, 255, 0.2);
}

.lang-btn.is-active {
  color: #050505;
  background: #fff;
}

.header-cta {
  min-height: 38px;
  color: #050505;
  background: #fff;
}

.page {
  border-top: 0;
}

.hero {
  position: relative;
  display: block;
  min-height: calc(100svh - 58px);
  padding: 0;
  overflow: hidden;
  background: #050505;
}

.hero::before,
.hero::after {
  display: none;
}

.hero-image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -16%;
  display: block;
  width: 128%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 58%;
  filter: none;
  transform: none;
}

.hero-overlay {
  display: none;
}

.hero-content,
.cover-badge,
.hero-copy,
.hero-actions,
.hero-signature {
  display: none;
}

.trust-strip {
  margin-top: 0;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    justify-self: start;
    width: 38px;
    height: 38px;
    background: #050505;
    border-color: rgba(255, 255, 255, 0.28);
  }

  .nav-toggle span {
    background: #fff;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 56px;
    padding: 8px 14px;
    gap: 10px;
  }

  .brand {
    min-width: auto;
  }

  .brand-logo em {
    min-height: 26px;
    padding: 5px 9px 5px 11px;
    font-size: 11px;
  }

  .hero {
    min-height: calc(100svh - 56px);
    padding: 0;
  }

  .hero-image {
    left: -34%;
    width: 156%;
    height: 100%;
    min-height: 0;
  }
}

/* Floating blurred trust strip over the hero reflection area. */
.page-home {
  position: relative;
}

.trust-strip {
  position: relative;
  z-index: 6;
  width: min(900px, calc(100% - 108px));
  margin: -72px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  color: #fff;
  background: rgba(5, 5, 5, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
}

.trust-strip div {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 14px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  white-space: nowrap;
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong {
  display: inline;
  flex: 0 0 auto;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.46);
}

.trust-strip span {
  display: inline;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.35;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.42);
}

.trust-strip strong::after {
  content: "/";
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.46);
  font-weight: 600;
}

.monograph-strip {
  margin-top: 110px;
}

.space-showcase {
  grid-column: 1 / -1;
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.space-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: stretch;
  min-height: 180px;
  overflow: hidden;
  border-top: 1px solid rgba(8, 8, 8, 0.14);
}

.space-meta {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 18px 18px 18px 0;
}

.space-meta span {
  color: #7b1118;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.space-meta h3 {
  margin: 0;
  color: #080808;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.space-marquee {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 18px 0;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.space-marquee::-webkit-scrollbar {
  display: none;
}

.space-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: spaceStageScroll 34s linear infinite;
  will-change: transform;
}

.space-track.reverse {
  animation-name: spaceStageScrollReverse;
}

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

.space-track img {
  display: block;
  width: clamp(260px, 28vw, 420px);
  height: 160px;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.12) contrast(1.02);
}

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

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

@keyframes spaceStageScrollReverse {
  from {
    transform: translateX(calc(-50% - 8px));
  }

  to {
    transform: translateX(0);
  }
}

@media (max-width: 900px) {
  .trust-strip {
    width: min(620px, calc(100% - 36px));
    grid-template-columns: repeat(2, 1fr);
    margin-top: -118px;
  }

  .trust-strip div:nth-child(2) {
    border-right: 0;
  }

  .trust-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}

@media (max-width: 560px) {
  .trust-strip {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    margin-top: -194px;
  }

  .trust-strip div {
    min-height: auto;
    padding: 13px 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .trust-strip strong {
    font-size: 13px;
  }

  .trust-strip span {
    margin-top: 0;
    font-size: 10px;
  }

  .monograph-strip {
    margin-top: 72px;
  }

  .space-showcase {
    gap: 14px;
  }

  .space-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .space-meta {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 16px 0 4px;
  }

  .space-meta h3 {
    font-size: 15px;
  }

  .space-marquee {
    overflow-x: auto;
    padding: 10px 0 16px;
    -webkit-mask-image: none;
    mask-image: none;
    scroll-snap-type: x proximity;
  }

  .space-track {
    animation-duration: 28s;
  }

  .space-track img {
    width: 260px;
    height: 150px;
    scroll-snap-align: start;
  }
}

/* Full-screen hero with a smaller staged image over a soft filled backdrop. */
.hero {
  background:
    linear-gradient(rgba(5, 5, 5, 0.2), rgba(5, 5, 5, 0.08)),
    url("./assets/optimized/fadior-hero-reception-fixed-arc-2e554bd5.webp") center 58% / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -24px;
  z-index: 0;
  display: block;
  background: url("./assets/optimized/fadior-hero-reception-fixed-arc-2e554bd5.webp") center 58% / cover no-repeat;
  filter: blur(18px) saturate(1.06);
  opacity: 0.68;
  transform: scale(1.04);
  animation: none;
}

.hero-image {
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  object-fit: contain;
  object-position: center center;
  padding: clamp(18px, 3vh, 34px) clamp(22px, 5vw, 72px) clamp(72px, 12vh, 122px);
  transform: none;
}

.trust-strip {
  z-index: 6;
}

@media (max-width: 560px) {
  .hero-image {
    padding: 18px 16px 214px;
  }
}

/* Return the cover to the original reception photo, full-bleed and cleaner. */
.hero {
  background: #050505;
}

.hero::before {
  display: none;
}

.hero-image {
  inset: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  object-position: center 58%;
}

/* Single-image stage carousel for the seven catalogue spaces. */
.space-showcase {
  grid-column: 1 / -1;
  display: block;
  margin-top: 42px;
}

.space-stage {
  position: relative;
  overflow: hidden;
  background: #050505;
  border-top: 1px solid rgba(8, 8, 8, 0.2);
}

.space-stage-track {
  display: flex;
  width: 100%;
  transition: transform 900ms cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}

.space-stage-track.is-instant {
  transition: none;
}

.space-slide {
  position: relative;
  flex: 0 0 100%;
  display: block;
  min-width: 100%;
  aspect-ratio: 16 / 8.2;
  overflow: hidden;
  background: #050505;
  color: #fff;
}

.space-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.1) contrast(1.02);
  transform: scale(1.02);
  transition: transform 900ms cubic-bezier(0.76, 0, 0.24, 1), filter 900ms ease;
}

.space-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.66), transparent 38%, rgba(0, 0, 0, 0.18)),
    linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.54));
  opacity: 0.92;
  pointer-events: none;
}

.space-slide.is-active img {
  transform: scale(1);
  filter: grayscale(0) contrast(1.04);
}

.space-caption {
  position: absolute;
  left: clamp(22px, 5vw, 72px);
  bottom: clamp(28px, 5vw, 62px);
  z-index: 2;
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin: 0;
  color: #fff;
}

.space-caption b,
.space-caption strong {
  display: inline;
  margin: 0;
  color: #fff;
  text-transform: none;
}

.space-caption b {
  color: #8d121b;
  font-size: clamp(24px, 4.2vw, 58px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0.04em;
}

.space-caption strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 5vw, 72px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
}

.space-stage-controls {
  position: absolute;
  right: clamp(18px, 3vw, 38px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  background: rgba(5, 5, 5, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.space-control {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.space-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.space-dots button {
  width: 22px;
  height: 2px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
}

.space-dots button.is-active {
  background: #fff;
}

@media (max-width: 760px) {
  .hero-image {
    left: 0;
    width: 100%;
    padding: 0;
    object-position: center 58%;
  }

  .space-slide {
    aspect-ratio: 4 / 3.25;
  }

  .space-caption {
    left: 18px;
    right: 18px;
    bottom: 72px;
    gap: 10px;
  }

  .space-stage-controls {
    right: 14px;
    bottom: 16px;
    left: 14px;
    justify-content: space-between;
  }

  .space-dots button {
    width: 14px;
  }
}

/* Three-card black stage carousel: center card becomes the hero. */
.monograph-strip {
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(260px, 0.72fr) minmax(360px, 1fr);
  gap: 28px 56px;
  margin-top: 110px;
  padding: 76px max(24px, calc((100vw - 1180px) / 2)) 92px;
  color: #fff;
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.14), transparent 34%),
    linear-gradient(180deg, #070707 0%, #050505 100%);
  border: 0;
}

.monograph-strip h2 {
  color: #fff;
}

.monograph-strip p {
  color: rgba(255, 255, 255, 0.62);
}

.monograph-strip > div > span {
  color: #b01822;
}

.space-showcase {
  margin-top: 30px;
}

.space-stage {
  --space-item: 33.333333%;
  overflow: hidden;
  padding: 36px 0 86px;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.space-stage-track {
  align-items: center;
  transition-duration: 1050ms;
}

.space-stage-track.is-instant {
  transition: none;
}

.space-slide {
  flex: 0 0 var(--space-item);
  min-width: var(--space-item);
  aspect-ratio: auto;
  padding: 34px 10px 26px;
  overflow: visible;
  background: transparent;
  opacity: 0.42;
  transform: translateY(24px) scale(0.82);
  transform-origin: center;
  transition:
    transform 1050ms cubic-bezier(0.76, 0, 0.24, 1),
    opacity 1050ms ease,
    filter 1050ms ease;
}

.space-slide.is-active {
  z-index: 3;
  opacity: 1;
  transform: translateY(-18px) scale(1.04);
}

.space-slide img {
  height: clamp(260px, 30vw, 420px);
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.58);
  object-fit: cover;
  transform: none;
}

.space-slide.is-active img {
  transform: none;
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.78);
}

.space-slide::after {
  inset: 34px 10px 26px;
  background:
    linear-gradient(180deg, transparent 36%, rgba(0, 0, 0, 0.74)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent 38%, rgba(0, 0, 0, 0.18));
  opacity: 0.96;
}

.space-caption {
  left: 30px;
  bottom: 50px;
  gap: 10px;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 620ms ease 220ms,
    transform 620ms ease 220ms;
}

.space-slide.is-active .space-caption {
  opacity: 1;
  transform: translateY(0);
}

.space-caption b {
  color: #b01822;
  font-size: clamp(22px, 3.2vw, 48px);
}

.space-caption strong {
  font-size: clamp(26px, 4vw, 56px);
}

.space-stage-controls {
  left: 50%;
  right: auto;
  bottom: 18px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

.space-control {
  width: 32px;
  height: 32px;
  border-color: rgba(255, 255, 255, 0.2);
}

.space-dots button {
  width: 24px;
  background: rgba(255, 255, 255, 0.24);
}

@media (max-width: 900px) {
  .monograph-strip {
    grid-template-columns: 1fr;
    padding: 58px 24px 76px;
  }

  .space-stage {
    margin-inline: -24px;
    padding-inline: 0;
  }

  .space-slide {
    transform: translateY(18px) scale(0.82);
  }

  .space-slide.is-active {
    transform: translateY(-12px) scale(1.03);
  }
}

@media (max-width: 560px) {
  .space-stage {
    padding-bottom: 82px;
  }

  .space-slide {
    padding-inline: 8px;
  }

  .space-slide img {
    height: 190px;
  }

  .space-caption {
    bottom: 38px;
    left: 16px;
    gap: 6px;
  }

  .space-caption b {
    font-size: 20px;
  }

  .space-caption strong {
    font-size: 24px;
  }

  .space-stage-controls {
    left: 16px;
    right: 16px;
    justify-content: space-between;
    transform: none;
  }
}

/* White section with OneSpace-style horizontal case cards. */
.monograph-strip {
  display: block;
  width: 100%;
  max-width: none;
  margin-top: 42px;
  padding: 26px max(24px, calc((100vw - 1180px) / 2)) 0;
  color: #080808;
  background: #fff;
  border-top: 1px solid rgba(8, 8, 8, 0.12);
  border-bottom: 1px solid rgba(8, 8, 8, 0.12);
}

.monograph-strip h2 {
  color: #080808;
}

.monograph-strip p {
  color: #666;
}

.product-system-title {
  display: flex;
  align-items: flex-end;
  min-height: 76px;
  color: #080808;
  font-size: clamp(30px, 3.7vw, 50px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
}

.product-system-intro {
  margin-top: 38px;
}

.product-system-intro h2 {
  max-width: 780px;
  margin: 0;
  color: #050505;
  font-size: clamp(34px, 4.2vw, 62px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.monograph-strip > div:first-child > span {
  color: #7b1118;
}

.space-showcase {
  margin-top: 52px;
}

.space-stage {
  --space-item: min(44vw, 620px);
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  margin-inline: calc(-1 * max(24px, calc((100vw - 1180px) / 2)));
  padding: 30px 0 38px;
  background: #fff;
  border-top: 1px solid rgba(8, 8, 8, 0.12);
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.space-stage::-webkit-scrollbar {
  display: none;
}

.monograph-strip,
.space-showcase,
.space-stage {
  min-width: 0;
}

.space-stage-track {
  display: flex;
  align-items: stretch;
  width: max-content;
  padding-inline: calc((100% - var(--space-item)) / 2);
  transition: none;
  transform: none !important;
  will-change: auto;
}

.space-slide {
  flex: 0 0 var(--space-item);
  min-width: var(--space-item);
  display: flex;
  flex-direction: column;
  padding: 0 18px;
  overflow: visible;
  color: #fff;
  background: transparent;
  opacity: 0.38;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  transform: scale(0.9);
  -webkit-user-drag: none;
  transform-origin: center;
  transition:
    transform 980ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 980ms ease;
  will-change: transform, opacity;
}

.space-slide.is-active {
  z-index: 3;
  opacity: 1;
  transform: scale(1);
}

.space-slide::after {
  display: none;
}

.space-slide img {
  display: block;
  width: 100%;
  height: clamp(300px, 31vw, 450px);
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  border: 0;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.22);
  filter: none;
  transform: none;
  pointer-events: none;
  -webkit-user-drag: none;
}

.space-slide.is-active img {
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.26);
  transform: none;
}

.space-caption {
  position: static;
  order: -1;
  display: grid;
  align-content: center;
  gap: 5px;
  min-height: 112px;
  padding: 18px 24px 16px;
  color: #fff;
  background: #050505;
  border-radius: 8px 8px 0 0;
  opacity: 1;
  transform: none;
  transition: none;
}

.space-slide.is-active .space-caption {
  opacity: 1;
  transform: none;
}

.space-caption b {
  display: none;
  flex: 0 0 auto;
  color: #8d111a;
  font-size: clamp(22px, 2.6vw, 38px);
  font-weight: 800;
  line-height: 1;
}

.space-caption strong {
  display: block;
  color: #fff;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(17px, 1.8vw, 24px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.04em;
}

.space-caption small {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.space-caption em {
  display: block;
  max-width: 92%;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.45;
}

.space-stage-controls {
  display: none;
}

.space-stage-controls {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 12px;
  transform: translateX(-50%);
  background: #050505;
  border: 1px solid rgba(8, 8, 8, 0.14);
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.space-control {
  width: 32px;
  height: 32px;
  color: #fff;
  background: transparent;
  border: 0;
}

.space-dots {
  gap: 8px;
}

.space-dots button {
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.26);
}

.space-dots button.is-active {
  background: #fff;
}

@media (max-width: 900px) {
  .monograph-strip {
    display: block;
    grid-template-columns: 1fr;
    overflow: hidden;
    margin-top: 32px;
    padding: 22px 24px 0;
  }

  .space-showcase {
    width: 100%;
  }

  .product-system-title {
    min-height: 64px;
  }

  .product-system-intro {
    margin-top: 30px;
  }

  .space-stage {
    --space-item: min(68vw, 520px);
    width: calc(100% + 48px);
    margin-inline: -24px;
    padding-bottom: 34px;
  }

  .space-slide {
    padding: 0 12px;
  }

  .space-slide img {
    height: 300px;
  }
}

@media (max-width: 560px) {
  .product-system-intro {
    margin-top: 26px;
  }

  .product-system-intro h2 {
    margin-bottom: 30px;
    font-size: 30px;
    line-height: 1.16;
  }

  .space-stage {
    --space-item: 78vw;
    padding-bottom: 30px;
  }

  .space-slide {
    padding: 0 9px;
  }

  .space-slide img {
    height: 225px;
  }

  .space-caption {
    min-height: 104px;
    padding: 14px 15px 12px;
    gap: 3px;
  }

  .space-caption b {
    font-size: 20px;
  }

  .space-caption strong {
    font-size: 16px;
  }

  .space-caption small {
    font-size: 9px;
  }

  .space-caption em {
    max-width: 100%;
    font-size: 10px;
    line-height: 1.35;
  }

  .space-stage-controls {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}

/* Product core advantages as six image cards. */
.advantage-stage {
  width: min(1180px, calc(100% - 48px));
  margin: 96px auto 0;
  overflow: hidden;
  color: #fff;
  background: #050505;
  border-radius: 2px;
  box-shadow: none;
}

.advantage-image {
  display: none;
}

.advantage-copy {
  padding: clamp(30px, 4vw, 52px);
}

.advantage-copy .eyebrow {
  color: #9d141d;
}

.advantage-copy h2 {
  max-width: 850px;
  margin-bottom: 32px;
  color: #fff;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.12;
}

.advantage-icons {
  display: none;
}

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

.advantage-cards article {
  position: relative;
  aspect-ratio: 16 / 11;
  min-height: 0;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.advantage-cards img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.22) contrast(1.03) brightness(0.82);
  transform: scale(1.02);
}

.advantage-cards article::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 30%, rgba(0, 0, 0, 0.82) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.42), transparent 54%);
  pointer-events: none;
}

.advantage-cards div {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 6px;
}

.advantage-cards strong,
.advantage-cards span {
  display: block;
}

.advantage-cards strong {
  color: #fff;
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.04em;
}

.advantage-cards span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .advantage-stage {
    width: min(920px, calc(100% - 40px));
  }

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

@media (max-width: 560px) {
  .advantage-stage {
    width: calc(100% - 28px);
    margin-top: 72px;
  }

  .advantage-copy {
    padding: 24px 18px 18px;
  }

  .advantage-copy h2 {
    margin-bottom: 22px;
    font-size: 24px;
  }

  .advantage-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .advantage-cards article,
  .advantage-cards img {
    min-height: 0;
  }
}

/* SEO title stays in the DOM; visually it appears after the hero image has landed. */
.page-home .hero-overlay {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.12) 46%, rgba(0, 0, 0, 0.34)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.42));
  pointer-events: none;
  animation: heroOverlayReveal 1.1s ease 1.15s both;
}

.page-home .hero-content {
  position: absolute;
  left: clamp(22px, 7vw, 96px);
  bottom: clamp(56px, 11vh, 126px);
  z-index: 2;
  display: block;
  width: min(900px, calc(100% - 44px));
  min-height: 0;
  margin: 0;
  padding: 0;
  color: #fff;
  opacity: 0;
  text-align: left;
  transform: translateY(14px);
  animation: heroTextReveal 1.05s cubic-bezier(0.16, 0.84, 0.32, 1) 1.55s both;
}

.page-home .hero .eyebrow {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.page-home .cover-title {
  justify-items: start;
  max-width: 920px;
  margin: 0;
  gap: 12px;
}

.page-home .cn-title {
  color: #fff;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.56);
}

.page-home .en-title {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(14px, 1.4vw, 20px);
  line-height: 1.55;
  letter-spacing: 0.12em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 760px) {
  .page-home .hero-content {
    left: 22px;
    right: 22px;
    bottom: 58px;
    width: auto;
  }

  .page-home .hero .eyebrow {
    margin-bottom: 14px;
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .page-home .cn-title {
    font-size: clamp(30px, 10vw, 42px);
    line-height: 1.14;
  }

  .page-home .en-title {
    font-size: 12px;
    letter-spacing: 0.08em;
  }
}

@keyframes heroOverlayReveal {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes heroTextReveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .hero-overlay,
  .page-home .hero-content {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* Native draggable rail for the product system carousel. */
.page-home .space-stage {
  cursor: grab;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
  user-select: none;
  -webkit-overflow-scrolling: touch;
}

.page-home .space-stage::-webkit-scrollbar {
  display: none;
}

.page-home .space-stage.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.page-home .space-stage.is-dragging .space-slide {
  pointer-events: none;
}

.page-home .space-stage-track {
  padding-inline: calc((100% - var(--space-item)) / 2);
  transition: none;
  transform: none !important;
  will-change: auto;
}

.page-home .space-stage-track.is-instant {
  transition: none;
}

.page-home .space-slide {
  scroll-snap-align: center;
  scroll-snap-stop: always;
  transition:
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 720ms ease,
    filter 720ms ease;
  will-change: transform, opacity, filter;
}

/* Brand frame: 10-page navigation, language menu, and WhatsApp entry. */
body .site-header {
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  min-height: 64px;
  padding: 12px 28px;
  background: #050505;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

body .brand {
  min-width: 134px;
  color: #fff;
}

body .brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 34px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  color: #fff;
  background: transparent;
}

body .brand-logo em {
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.22em;
}

body .main-nav {
  min-width: 0;
  justify-content: center;
  gap: 1px;
  overflow-x: auto;
  scrollbar-width: none;
}

body .main-nav::-webkit-scrollbar {
  display: none;
}

body .main-nav a {
  flex: 0 0 auto;
  padding: 8px 7px;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  border-radius: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: none;
  white-space: nowrap;
}

body .main-nav a:hover,
body .main-nav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

body .header-actions {
  gap: 10px;
  min-width: max-content;
}

body .language-switcher {
  position: relative;
  display: block;
  border: 0;
  background: transparent;
}

body .language-trigger,
body .whatsapp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  cursor: pointer;
  white-space: nowrap;
}

body .language-trigger {
  gap: 8px;
  min-width: 96px;
  padding: 0 14px;
  color: #050505;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

body .language-trigger::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}

body .language-options {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 60;
  display: grid;
  min-width: 156px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(8, 8, 8, 0.18);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

body .language-switcher.is-open .language-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

body .lang-btn {
  width: 100%;
  min-height: 38px;
  padding: 0 14px;
  color: #161616;
  background: #fff;
  border: 0;
  border-bottom: 1px solid rgba(8, 8, 8, 0.1);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: left;
}

body .lang-btn + .lang-btn {
  border-left: 0;
}

body .lang-btn:last-child {
  border-bottom: 0;
}

body .lang-btn:hover,
body .lang-btn.is-active {
  color: #fff;
  background: #050505;
}

body .whatsapp-cta {
  min-width: 112px;
  padding: 0 16px;
  color: #fff;
  background: #0f8f54;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

body .whatsapp-cta:hover {
  background: #0b7545;
}

body .brand-editorial,
body .brand-facts,
body .brand-philosophy {
  width: min(1380px, calc(100% - 80px));
  margin: 0 auto;
}

body .brand-editorial {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(560px, 0.58fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
  min-height: calc(100vh - 64px);
  padding: clamp(56px, 6vw, 84px) 0;
  border-bottom: 1px solid rgba(8, 8, 8, 0.16);
}

body .brand-copy {
  max-width: 540px;
}

body .brand-copy h1 {
  margin: 0;
  font-size: clamp(32px, 3.4vw, 52px);
  line-height: 1.1;
  letter-spacing: 0;
}

body .brand-copy p:not(.eyebrow) {
  margin: 20px 0 0;
  color: #5d5d5d;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.85;
}

body .brand-visual {
  position: relative;
  min-height: clamp(500px, 62vh, 690px);
  margin: 0;
  overflow: hidden;
  background: #e9e9e6;
  border: 1px solid rgba(8, 8, 8, 0.1);
}

body .brand-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 45% 54%;
  border: 0;
  filter: grayscale(0.28) contrast(1.02);
}

body .brand-visual figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  margin: 0;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(5, 5, 5, 0.48);
  backdrop-filter: blur(8px);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body .brand-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0 0 76px;
  border-bottom: 1px solid rgba(8, 8, 8, 0.16);
}

body .brand-facts article {
  min-height: 210px;
  padding: 30px 28px;
  background: #fff;
}

body .brand-facts span {
  display: block;
  margin-bottom: 34px;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body .brand-facts strong {
  display: block;
  margin-bottom: 14px;
  color: #080808;
  font-size: 18px;
  line-height: 1.28;
}

body .brand-facts p {
  margin: 0;
  color: #6c6c6c;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
}

body .brand-philosophy {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
  gap: 48px;
  padding: 72px 0 108px;
}

body .brand-philosophy h2 {
  margin: 0;
  font-size: clamp(26px, 3.2vw, 46px);
  line-height: 1.12;
}

body .brand-philosophy .timeline {
  width: 100%;
  padding-bottom: 0;
}

body .brand-philosophy .timeline div {
  background: #f2f2ef;
}

/* Keep the long-scroll order clean: page 1 is the cover, page 2 is Brand. */
body .page-home > .trust-strip,
body .page-home > .monograph-strip,
body .page-home > .advantage-stage,
body .page-home > .split-section {
  display: none;
}

html[dir="rtl"] body {
  direction: rtl;
}

html[dir="rtl"] body .language-options {
  right: auto;
  left: 0;
}

html[dir="rtl"] body .lang-btn {
  text-align: right;
}

@media (max-width: 1180px) {
  body .site-header {
    grid-template-columns: auto auto 1fr;
  }

  body .main-nav {
    justify-content: flex-start;
  }

  body .brand-editorial,
  body .brand-philosophy {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 860px) {
  body .site-header {
    grid-template-columns: auto auto;
    padding: 18px 20px;
  }

  body .brand {
    min-width: auto;
  }

  body .nav-toggle {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-left: auto;
    border-color: rgba(255, 255, 255, 0.28);
    background: transparent;
  }

  body .nav-toggle span {
    background: #fff;
  }

  body .main-nav,
  body .header-actions {
    grid-column: 1 / -1;
    width: 100%;
  }

  body .main-nav {
    display: none;
    padding-top: 12px;
    justify-content: flex-start;
    flex-wrap: wrap;
    overflow: visible;
  }

  body .site-header.nav-open .main-nav {
    display: flex;
  }

  body .header-actions {
    display: none;
    justify-content: flex-start;
  }

  body .site-header.nav-open .header-actions {
    display: flex;
  }

  body .brand-editorial,
  body .brand-facts,
  body .brand-philosophy {
    width: min(100% - 36px, 680px);
  }

  body .brand-editorial {
    padding-top: 68px;
  }

  body .brand-copy h1 {
    font-size: clamp(32px, 10vw, 48px);
  }
}

@media (max-width: 520px) {
  body .header-actions {
    flex-wrap: wrap;
  }

  body .language-trigger,
  body .whatsapp-cta {
    min-width: 0;
    flex: 1 1 140px;
  }

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

body .brand-facts article {
  min-height: auto;
  }
}

/* Brand page compact editorial correction. */
body .brand-editorial {
  grid-template-columns: minmax(330px, 0.39fr) minmax(620px, 0.61fr);
  gap: clamp(28px, 3.4vw, 56px);
  align-items: start;
  min-height: auto;
  padding-top: clamp(28px, 3.2vw, 48px);
  padding-bottom: clamp(38px, 4vw, 58px);
}

body .brand-copy {
  max-width: 560px;
  padding-top: 6px;
}

body .brand-copy .eyebrow {
  margin-bottom: 18px;
}

body .brand-copy h1 {
  max-width: 520px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.14;
  font-weight: 900;
}

body .brand-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.82;
}

body .brand-visual {
  width: 100%;
  min-height: clamp(560px, 68vh, 720px);
}

body .brand-visual img {
  object-position: 40% 50%;
}

@media (max-width: 1180px) {
  body .brand-editorial {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 48px;
  }

  body .brand-copy,
  body .brand-copy h1,
  body .brand-copy p:not(.eyebrow) {
    max-width: 760px;
  }

  body .brand-visual {
    min-height: 480px;
  }
}

@media (max-width: 520px) {
  body .brand-editorial {
    padding-top: 36px;
  }

  body .brand-copy h1 {
    font-size: clamp(27px, 8vw, 36px);
  }

  body .brand-visual {
    min-height: 420px;
  }
}

/* Brand page: place the four proof points inside the first brand screen. */
body #brand .brand-editorial {
  grid-template-columns: minmax(330px, 0.39fr) minmax(620px, 0.61fr);
  grid-template-rows: auto auto;
  align-items: start;
  row-gap: clamp(28px, 4vw, 48px);
}

body #brand .brand-visual {
  min-height: clamp(520px, 58vh, 650px);
}

body #brand .brand-visual img {
  object-position: 50% 50%;
  filter: contrast(1.04) saturate(0.94);
}

body #brand .brand-visual figcaption {
  display: none;
}

body #brand .brand-editorial > .brand-facts {
  grid-column: 1 / -1;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 4.2vw, 76px);
  padding: clamp(28px, 3.2vw, 42px) 0 0;
  border-top: 1px solid rgba(8, 8, 8, 0.16);
  border-bottom: 0;
}

body #brand .brand-editorial > .brand-facts article {
  min-height: 0;
  padding: 0;
  background: transparent;
}

body #brand .brand-editorial > .brand-facts span {
  margin-bottom: 28px;
  color: var(--red);
  font-size: 13px;
  letter-spacing: 0.22em;
}

body #brand .brand-editorial > .brand-facts strong {
  margin-bottom: 16px;
  font-size: clamp(17px, 1.3vw, 24px);
  line-height: 1.22;
}

body #brand .brand-editorial > .brand-facts p {
  max-width: 260px;
  color: #676767;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.75;
}

@media (max-width: 1180px) {
  body #brand .brand-editorial {
    grid-template-columns: 1fr;
  }

  body #brand .brand-editorial > .brand-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  body #brand .brand-editorial > .brand-facts {
    grid-template-columns: 1fr;
  }

  body #brand .brand-editorial > .brand-facts span {
    margin-bottom: 12px;
  }
}

/* Final override: quiet, one-screen brand introduction. */
body #brand .brand-editorial {
  width: min(100% - 72px, 1480px);
  min-height: calc(100svh - 96px);
  grid-template-columns: minmax(320px, 0.34fr) minmax(620px, 0.66fr);
  grid-template-rows: minmax(0, auto) auto;
  column-gap: clamp(36px, 4vw, 72px);
  row-gap: clamp(18px, 2vw, 28px);
  align-content: center;
  padding-top: clamp(24px, 2.5vw, 36px);
  padding-bottom: clamp(24px, 2.5vw, 36px);
}

body #brand .brand-copy {
  max-width: 470px;
  padding-top: 0;
}

body #brand .brand-copy .eyebrow {
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: 0.16em;
}

body #brand .brand-copy h1 {
  max-width: 430px;
  font-size: clamp(27px, 2.45vw, 38px);
  line-height: 1.18;
  font-weight: 850;
}

body #brand .brand-copy p:not(.eyebrow) {
  max-width: 450px;
  margin-top: 14px;
  color: #666;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.72;
}

body #brand .brand-visual {
  height: clamp(300px, 40vh, 390px);
  min-height: 0;
  border-radius: 4px;
}

body #brand .brand-visual img {
  height: 100%;
  min-height: 0;
  object-position: 50% 50%;
}

body #brand .brand-editorial > .brand-facts {
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 34px);
  padding: clamp(14px, 1.6vw, 20px) 0 0;
  border-top: 1px solid rgba(8, 8, 8, 0.12);
}

body #brand .brand-editorial > .brand-facts span {
  margin-bottom: 9px;
  font-size: 10.5px;
  letter-spacing: 0.18em;
}

body #brand .brand-editorial > .brand-facts strong {
  margin-bottom: 6px;
  font-size: clamp(14px, 0.95vw, 16px);
  line-height: 1.28;
}

body #brand .brand-editorial > .brand-facts p {
  max-width: 230px;
  color: #737373;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.5;
}

body .page:not(.page-home) > .page-hero.compact h1 {
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.16;
}

@media (max-width: 1180px) {
  body #brand .brand-editorial {
    width: min(100% - 44px, 820px);
    min-height: auto;
    grid-template-columns: 1fr;
    align-content: start;
    padding-top: 46px;
    padding-bottom: 54px;
  }

  body #brand .brand-copy,
  body #brand .brand-copy h1,
  body #brand .brand-copy p:not(.eyebrow) {
    max-width: 680px;
  }

  body #brand .brand-visual {
    height: 390px;
  }

  body #brand .brand-editorial > .brand-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  body .page:not(.page-home) > .page-hero.compact h1 {
    font-size: clamp(27px, 7.8vw, 36px);
  }

  body #brand .brand-editorial {
    width: min(100% - 32px, 440px);
    padding-top: 24px;
    padding-bottom: 32px;
  }

  body #brand .brand-copy h1 {
    font-size: clamp(27px, 7.6vw, 36px);
  }

  body #brand .brand-visual {
    height: 220px;
  }

  body #brand .brand-editorial > .brand-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
  }

  body #brand .brand-editorial > .brand-facts strong {
    font-size: 14px;
  }

body #brand .brand-editorial > .brand-facts p {
  font-size: 11.5px;
  line-height: 1.45;
  }
}

/* Final brand page composition: compact one-screen editorial layout. */
body #brand {
  background: #fff;
}

body #brand .brand-editorial {
  width: min(100% - 88px, 1500px);
  min-height: calc(100svh - 64px);
  display: grid;
  grid-template-columns: minmax(330px, 0.36fr) minmax(680px, 0.64fr);
  grid-template-rows: minmax(0, auto) auto;
  column-gap: clamp(44px, 5vw, 88px);
  row-gap: clamp(20px, 2.4vw, 34px);
  align-content: center;
  align-items: center;
  padding: clamp(26px, 3vw, 42px) 0;
}

body #brand .brand-copy {
  max-width: 500px;
  padding-top: 0;
}

body #brand .brand-copy .eyebrow {
  margin-bottom: 18px;
  color: #8a1119;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

body #brand .brand-copy h1 {
  max-width: 480px;
  margin: 0;
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 850;
  line-height: 1.18;
  letter-spacing: 0;
}

body #brand .brand-copy p:not(.eyebrow) {
  max-width: 470px;
  margin-top: 18px;
  color: #5c5c5c;
  font-size: clamp(13px, 0.95vw, 14.5px);
  font-weight: 560;
  line-height: 1.82;
}

body #brand .brand-copy p:not(.eyebrow) + p:not(.eyebrow) {
  margin-top: 12px;
}

body #brand .brand-visual {
  width: 100%;
  height: clamp(420px, 54vh, 520px);
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: #f4f4f4;
}

body #brand .brand-visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 50% 50%;
}

body #brand .brand-visual figcaption {
  right: clamp(18px, 2vw, 30px);
  bottom: clamp(18px, 2vw, 28px);
  left: auto;
  width: min(520px, calc(100% - 40px));
  padding: 12px 18px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

body #brand .brand-editorial > .brand-facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 46px);
  margin: 0;
  padding: clamp(18px, 2vw, 24px) 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

body #brand .brand-editorial > .brand-facts article {
  min-height: 0;
}

body #brand .brand-editorial > .brand-facts span {
  display: block;
  margin-bottom: 10px;
  color: #8a1119;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.18em;
}

body #brand .brand-editorial > .brand-facts strong {
  display: block;
  margin-bottom: 7px;
  color: #0a0a0a;
  font-size: clamp(15px, 1vw, 17px);
  font-weight: 850;
  line-height: 1.25;
}

body #brand .brand-editorial > .brand-facts p {
  max-width: 260px;
  margin: 0;
  color: #696969;
  font-size: 12.5px;
  font-weight: 560;
  line-height: 1.55;
}

@media (max-width: 1180px) {
  body #brand .brand-editorial {
    width: min(100% - 44px, 860px);
    min-height: auto;
    grid-template-columns: 1fr;
    row-gap: 28px;
    align-content: start;
    padding-top: 44px;
    padding-bottom: 52px;
  }

  body #brand .brand-copy,
  body #brand .brand-copy h1,
  body #brand .brand-copy p:not(.eyebrow) {
    max-width: 720px;
  }

  body #brand .brand-visual {
    height: clamp(320px, 48vw, 460px);
  }

  body #brand .brand-editorial > .brand-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  body #brand .brand-editorial {
    width: min(100% - 32px, 440px);
    row-gap: 22px;
    padding-top: 26px;
    padding-bottom: 34px;
  }

  body #brand .brand-copy .eyebrow {
    margin-bottom: 12px;
    font-size: 11px;
  }

  body #brand .brand-copy h1 {
    font-size: clamp(27px, 7.2vw, 34px);
  }

  body #brand .brand-copy p:not(.eyebrow) {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.72;
  }

  body #brand .brand-visual {
    height: 250px;
  }

  body #brand .brand-visual figcaption {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    padding: 10px 12px;
    font-size: 9.5px;
    letter-spacing: 0.1em;
  }

  body #brand .brand-editorial > .brand-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
    padding-top: 18px;
  }

  body #brand .brand-editorial > .brand-facts span {
    margin-bottom: 7px;
    font-size: 10px;
  }

  body #brand .brand-editorial > .brand-facts strong {
    font-size: 14px;
  }

  body #brand .brand-editorial > .brand-facts p {
    font-size: 11.5px;
    line-height: 1.45;
  }
}

/* Brand page final override: compact one-screen editorial layout. */
body #brand {
  background: #fff;
}

body #brand .brand-editorial {
  width: min(100% - 88px, 1500px);
  min-height: calc(100svh - 64px);
  display: grid;
  grid-template-columns: minmax(330px, 0.36fr) minmax(680px, 0.64fr);
  grid-template-rows: minmax(0, auto) auto;
  column-gap: clamp(44px, 5vw, 88px);
  row-gap: clamp(20px, 2.4vw, 34px);
  align-content: center;
  align-items: center;
  padding: clamp(26px, 3vw, 42px) 0;
}

body #brand .brand-copy {
  max-width: 500px;
  padding-top: 0;
}

body #brand .brand-copy .eyebrow {
  margin-bottom: 18px;
  color: #8a1119;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

body #brand .brand-copy h1 {
  max-width: 480px;
  margin: 0;
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 850;
  line-height: 1.18;
  letter-spacing: 0;
}

body #brand .brand-copy p:not(.eyebrow) {
  max-width: 470px;
  margin-top: 18px;
  color: #5c5c5c;
  font-size: clamp(13px, 0.95vw, 14.5px);
  font-weight: 560;
  line-height: 1.82;
}

body #brand .brand-copy p:not(.eyebrow) + p:not(.eyebrow) {
  margin-top: 12px;
}

body #brand .brand-visual {
  width: 100%;
  height: clamp(420px, 54vh, 520px);
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: #f4f4f4;
}

body #brand .brand-visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 50% 50%;
}

body #brand .brand-visual figcaption {
  right: clamp(18px, 2vw, 30px);
  bottom: clamp(18px, 2vw, 28px);
  left: auto;
  width: min(520px, calc(100% - 40px));
  padding: 12px 18px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

body #brand .brand-editorial > .brand-facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 46px);
  margin: 0;
  padding: clamp(18px, 2vw, 24px) 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

body #brand .brand-editorial > .brand-facts article {
  min-height: 0;
}

body #brand .brand-editorial > .brand-facts span {
  display: block;
  margin-bottom: 10px;
  color: #8a1119;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.18em;
}

body #brand .brand-editorial > .brand-facts strong {
  display: block;
  margin-bottom: 7px;
  color: #0a0a0a;
  font-size: clamp(15px, 1vw, 17px);
  font-weight: 850;
  line-height: 1.25;
}

body #brand .brand-editorial > .brand-facts p {
  max-width: 260px;
  margin: 0;
  color: #696969;
  font-size: 12.5px;
  font-weight: 560;
  line-height: 1.55;
}

@media (max-width: 1180px) {
  body #brand .brand-editorial {
    width: min(100% - 44px, 860px);
    min-height: auto;
    grid-template-columns: 1fr;
    row-gap: 28px;
    align-content: start;
    padding-top: 44px;
    padding-bottom: 52px;
  }

  body #brand .brand-copy,
  body #brand .brand-copy h1,
  body #brand .brand-copy p:not(.eyebrow) {
    max-width: 720px;
  }

  body #brand .brand-visual {
    height: clamp(320px, 48vw, 460px);
  }

  body #brand .brand-editorial > .brand-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  body #brand .brand-editorial {
    width: min(100% - 32px, 440px);
    row-gap: 22px;
    padding-top: 26px;
    padding-bottom: 34px;
  }

  body #brand .brand-copy .eyebrow {
    margin-bottom: 12px;
    font-size: 11px;
  }

  body #brand .brand-copy h1 {
    font-size: clamp(27px, 7.2vw, 34px);
  }

  body #brand .brand-copy p:not(.eyebrow) {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.72;
  }

  body #brand .brand-visual {
    height: 250px;
  }

  body #brand .brand-visual figcaption {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    padding: 10px 12px;
    font-size: 9.5px;
    letter-spacing: 0.1em;
  }

  body #brand .brand-editorial > .brand-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
    padding-top: 18px;
  }

  body #brand .brand-editorial > .brand-facts span {
    margin-bottom: 7px;
    font-size: 10px;
  }

  body #brand .brand-editorial > .brand-facts strong {
    font-size: 14px;
  }

  body #brand .brand-editorial > .brand-facts p {
    font-size: 11.5px;
    line-height: 1.45;
  }
}

/* Viewport comfort guard for the final brand screen. */
body #brand .brand-editorial {
  min-height: calc(100svh - 96px) !important;
}

/* Keep the refined brand screen comfortably inside one viewport. */
body #brand .brand-editorial {
  min-height: calc(100svh - 96px);
}

/* Materials page: tighten the proof section into a buyer-readable layout. */
body #materials {
  padding-bottom: clamp(72px, 7vw, 118px);
}

body #materials .page-hero.compact {
  width: min(1800px, calc(100% - 96px));
  max-width: none;
  padding-top: clamp(58px, 6vw, 92px);
  padding-bottom: clamp(34px, 4vw, 56px);
  text-align: left;
}

body #materials .page-hero.compact .eyebrow {
  margin-bottom: 18px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

body #materials .page-hero.compact h1 {
  max-width: 900px;
  margin-right: 0;
  margin-left: 0;
  font-size: clamp(30px, 3.1vw, 44px);
  line-height: 1.18;
  letter-spacing: 0;
}

body #materials .page-hero.compact p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: #777;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.8;
}

body #materials .material-grid {
  width: min(1800px, calc(100% - 96px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  padding-bottom: clamp(72px, 7vw, 104px);
}

body #materials .material-grid article {
  min-height: clamp(560px, 37vw, 660px);
  padding: 0 0 34px;
  border: 1px solid rgba(8, 8, 8, 0.12);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 20px 54px rgba(8, 8, 8, 0.06);
  overflow: hidden;
}

body #materials .material-grid article:hover {
  border-color: rgba(8, 8, 8, 0.24);
  box-shadow: 0 24px 64px rgba(8, 8, 8, 0.09);
}

body #materials .material-grid .dot {
  width: 52px;
  height: 52px;
  margin-bottom: 34px;
}

body #materials .material-photo {
  width: 100%;
  height: clamp(260px, 18vw, 340px);
  margin: 0 0 38px;
  overflow: hidden;
  background: #f5f4f2;
  border-bottom: 1px solid rgba(8, 8, 8, 0.08);
}

body #materials .material-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

body #materials .material-grid h3 {
  margin: 0 34px 16px;
  color: #080808;
  font-size: clamp(22px, 1.55vw, 28px);
  line-height: 1.25;
}

body #materials .material-grid p {
  max-width: 430px;
  margin: 0 34px;
  color: #777;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.72;
}

body #materials .door-finishes-card {
  padding: 0;
}

body #materials .door-finishes-card a {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0 0 34px;
  color: inherit;
}

body #materials .door-finishes-card a::after {
  content: "";
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 28px;
  height: 28px;
  border-top: 2px solid #8a1119;
  border-right: 2px solid #8a1119;
  transform: rotate(45deg);
  opacity: 0.76;
}

body #materials .door-finishes-card em {
  display: inline-flex;
  width: max-content;
  margin: auto 34px 0;
  padding-top: 24px;
  color: #8a1119;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body #materials .door-finishes-card:hover {
  border-color: rgba(138, 17, 25, 0.34);
  box-shadow: 0 28px 70px rgba(138, 17, 25, 0.09);
}

@media (max-width: 900px) {
  body #materials .page-hero.compact,
  body #materials .material-grid {
    width: min(100% - 40px, 680px);
  }

  body #materials .material-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  body #materials .page-hero.compact {
    width: min(100% - 32px, 420px);
    padding-top: 44px;
    text-align: left;
  }

  body #materials .page-hero.compact h1 {
    font-size: clamp(27px, 8vw, 34px);
  }

  body #materials .page-hero.compact p:not(.eyebrow) {
    margin-left: 0;
  }

  body #materials .material-grid {
    width: min(100% - 32px, 420px);
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body #materials .material-grid article {
    min-height: 0;
    padding: 0 0 28px;
  }

  body #materials .material-photo {
    height: 230px;
    margin-bottom: 28px;
  }

  body #materials .material-grid h3 {
    margin-right: 24px;
    margin-left: 24px;
  }

  body #materials .material-grid p {
    margin-right: 24px;
    margin-left: 24px;
  }

  body #materials .door-finishes-card {
    padding: 0;
  }

  body #materials .door-finishes-card a {
    padding: 0 0 28px;
  }

  body #materials .door-finishes-card em {
    margin-right: 24px;
    margin-left: 24px;
  }
}

/* Advantages page: compact headline and buyer-friendly proof cards. */
body #advantages {
  padding-bottom: clamp(72px, 7vw, 118px);
}

body #advantages .page-hero.compact {
  width: min(1060px, calc(100% - 96px));
  max-width: none;
  padding-top: clamp(58px, 6vw, 92px);
  padding-bottom: clamp(36px, 4vw, 58px);
  text-align: center;
}

body #advantages .page-hero.compact .eyebrow {
  margin-bottom: 18px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

body #advantages .page-hero.compact h1 {
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(34px, 4.1vw, 58px);
  line-height: 1.12;
  letter-spacing: 0;
}

body #advantages .page-hero.compact p:not(.eyebrow) {
  max-width: 700px;
  margin: 22px auto 0;
  color: #777;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.8;
}

body #advantages .detail-rows {
  width: min(1060px, calc(100% - 96px));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding-bottom: 0;
}

body #advantages .detail-rows div {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  min-height: 210px;
  padding: 34px 38px 36px;
  overflow: hidden;
  border: 1px solid rgba(8, 8, 8, 0.12);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(246, 246, 243, 0.94)),
    #fff;
  box-shadow: 0 20px 54px rgba(8, 8, 8, 0.06);
}

body #advantages .detail-rows div::before {
  content: "0" counter(advantage);
  position: absolute;
  right: 28px;
  top: 24px;
  color: rgba(8, 8, 8, 0.08);
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
}

body #advantages .detail-rows {
  counter-reset: advantage;
}

body #advantages .detail-rows div {
  counter-increment: advantage;
}

body #advantages .detail-rows strong {
  max-width: 280px;
  color: #080808;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.22;
  letter-spacing: 0;
}

body #advantages .detail-rows span {
  max-width: 430px;
  color: #727272;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.78;
}

@media (max-width: 900px) {
  body #advantages .page-hero.compact,
  body #advantages .detail-rows {
    width: min(100% - 40px, 680px);
  }

  body #advantages .detail-rows {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  body #advantages .page-hero.compact {
    width: min(100% - 32px, 420px);
    padding-top: 44px;
    text-align: left;
  }

  body #advantages .page-hero.compact h1 {
    font-size: clamp(29px, 9vw, 39px);
  }

  body #advantages .page-hero.compact p:not(.eyebrow) {
    margin-left: 0;
  }

  body #advantages .detail-rows {
    width: min(100% - 32px, 420px);
    gap: 14px;
  }

  body #advantages .detail-rows div {
    min-height: 0;
    padding: 28px 24px 30px;
  }
}

/* Case page: editorial project layout with aligned title and case cards. */
body #cases {
  padding-bottom: clamp(76px, 8vw, 128px);
}

body #cases .page-hero.compact,
body #cases .case-layout {
  width: min(1500px, calc(100% - 112px));
  max-width: none;
}

body #cases .page-hero.compact {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: end;
  padding-top: clamp(64px, 7vw, 108px);
  padding-bottom: clamp(30px, 4vw, 54px);
}

body #cases .page-hero.compact .eyebrow {
  grid-column: 1;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

body #cases .page-hero.compact h1 {
  grid-column: 1 / -1;
  max-width: 1160px;
  margin: 0;
  font-size: clamp(36px, 4.7vw, 72px);
  line-height: 1.04;
  letter-spacing: 0;
}

body #cases .page-hero.compact p:not(.eyebrow) {
  grid-column: 1 / -1;
  max-width: 820px;
  margin: 18px 0 0;
  color: #777;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.78;
}

body #cases .case-layout {
  padding-bottom: 0;
}

body #cases .featured-case {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.65fr);
  gap: 0;
  align-items: stretch;
  margin-bottom: clamp(28px, 4vw, 54px);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(8, 8, 8, 0.12);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 28px 76px rgba(8, 8, 8, 0.08);
}

body #cases .featured-case .image-sim.kitchen {
  min-height: clamp(460px, 48vw, 720px);
  filter: grayscale(0.28) contrast(1.05);
}

body #cases .featured-case > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 4.5vw, 72px);
  border-left: 1px solid rgba(8, 8, 8, 0.12);
}

body #cases .featured-case .label {
  margin-bottom: 18px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body #cases .featured-case h2 {
  max-width: 520px;
  margin-bottom: 20px;
  font-size: clamp(28px, 3.1vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

body #cases .featured-case p {
  max-width: 540px;
  color: #666;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.82;
}

body #cases .spec-lines {
  margin-top: 20px;
  margin-bottom: 24px;
  border-top: 1px solid rgba(8, 8, 8, 0.13);
}

body #cases .spec-lines span {
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  padding: 13px 0;
}

body #cases .case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

body #cases .case-grid article {
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(8, 8, 8, 0.12);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(8, 8, 8, 0.06);
}

body #cases .case-grid .image-sim {
  min-height: 260px;
  border-radius: 0;
  filter: grayscale(0.18) contrast(1.04);
}

body #cases .case-grid h3 {
  margin: 0;
  padding: 24px 26px 0;
  color: #080808;
  font-size: clamp(19px, 1.45vw, 25px);
  line-height: 1.22;
}

body #cases .case-grid p {
  margin: 0;
  padding: 12px 26px 28px;
  color: #707070;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.72;
}

@media (max-width: 1100px) {
  body #cases .page-hero.compact,
  body #cases .case-layout {
    width: min(100% - 48px, 920px);
  }

  body #cases .page-hero.compact,
  body #cases .featured-case {
    grid-template-columns: 1fr;
  }

  body #cases .featured-case > div:last-child {
    border-left: 0;
    border-top: 1px solid rgba(8, 8, 8, 0.12);
  }

  body #cases .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  body #cases .page-hero.compact,
  body #cases .case-layout {
    width: min(100% - 32px, 440px);
  }

  body #cases .page-hero.compact {
    padding-top: 46px;
  }

  body #cases .page-hero.compact h1 {
    font-size: clamp(31px, 9.2vw, 42px);
  }

  body #cases .featured-case .image-sim.kitchen {
    min-height: 340px;
  }

  body #cases .featured-case > div:last-child {
    padding: 30px 24px;
  }

  body #cases .spec-lines span {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  body #cases .case-grid {
    grid-template-columns: 1fr;
  }
}

/* Service page: clearer four-step process layout. */
body #service .page-hero.compact {
  width: min(100% - 56px, 1320px);
  padding: 78px 0 34px;
}

body #service .page-hero.compact .eyebrow {
  margin-bottom: 20px;
  color: #7b1118;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

body #service .page-hero.compact h1 {
  max-width: 1180px;
  margin: 0;
  font-size: clamp(38px, 3.25vw, 58px);
  line-height: 1.16;
  letter-spacing: 0;
}

body #service .page-hero.compact p:not(.eyebrow) {
  max-width: 960px;
  margin-top: 34px;
  color: #777;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}

body #service .process {
  width: min(100% - 56px, 1560px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
  padding: 20px 0 110px;
}

body #service .process article {
  min-width: 0;
  min-height: 280px;
  padding: 44px 30px 34px;
  border: 1px solid rgba(8, 8, 8, 0.14);
  border-top-color: rgba(8, 8, 8, 0.22);
  border-radius: 0;
  background: #fff;
}

body #service .process span {
  display: block;
  margin-bottom: 42px;
  color: #7c7c7c;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

body #service .process h3 {
  margin: 0 0 18px;
  color: #080808;
  font-size: 23px;
  line-height: 1.25;
  letter-spacing: 0;
}

body #service .process p {
  margin: 0;
  color: #777;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
}

@media (max-width: 1180px) {
  body #service .page-hero.compact,
  body #service .process {
    width: min(100% - 48px, 920px);
  }

  body #service .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (max-width: 680px) {
  body #service .page-hero.compact,
  body #service .process {
    width: min(100% - 32px, 440px);
  }

  body #service .page-hero.compact {
    padding-top: 52px;
  }

  body #service .page-hero.compact h1 {
    font-size: clamp(30px, 9vw, 42px);
  }

  body #service .process {
    grid-template-columns: 1fr;
    padding-bottom: 72px;
  }

  body #service .process article {
    min-height: 220px;
    padding: 32px 24px 28px;
  }
}

/* Contact page: softer inquiry module. */
body #contact {
  background:
    linear-gradient(180deg, #fff 0%, #f7f5f1 100%);
}

body #contact .contact-shell {
  width: min(100% - 56px, 1360px);
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(460px, 0.72fr);
  gap: 56px;
  align-items: stretch;
  padding: 68px 0 82px;
}

body #contact .contact-shell > div:first-child {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(8, 8, 8, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 70px rgba(8, 8, 8, 0.055);
}

body #contact .contact-shell > div:first-child::before {
  display: none;
}

body #contact .eyebrow {
  margin-bottom: 14px;
  color: #7b1118;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

body #contact .contact-shell h1 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(26px, 2.1vw, 34px);
  line-height: 1.18;
  letter-spacing: 0;
}

body #contact .contact-shell > div:first-child > p:not(.eyebrow) {
  max-width: 540px;
  margin: 14px 0 0;
  color: #6d6d6d;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.68;
}

body #contact .contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: auto;
  padding-top: 22px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body #contact .contact-cards div:nth-child(5),
body #contact .contact-cards div:nth-child(6) {
  grid-column: auto;
}

body #contact .contact-cards div {
  min-height: 66px;
  padding: 14px 18px;
  border: 1px solid rgba(8, 8, 8, 0.09);
  border-radius: 7px;
  background: #fbfaf8;
  box-shadow: none;
}

body #contact .contact-cards div:nth-child(even),
body #contact .contact-cards div:nth-child(5),
body #contact .contact-cards div:nth-child(6) {
  border-right: 1px solid rgba(8, 8, 8, 0.09);
}

body #contact .contact-cards div:nth-child(6) {
  border-bottom: 1px solid rgba(8, 8, 8, 0.09);
}

body #contact .contact-cards strong {
  display: block;
  margin-bottom: 5px;
  color: #7b1118;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body #contact .contact-cards span {
  display: block;
  margin-top: 0;
  color: #747474;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.48;
}

body #contact .rfq-form {
  position: relative;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(8, 8, 8, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 80px rgba(8, 8, 8, 0.08);
}

body #contact .rfq-form::before {
  content: "方案咨询";
  display: block;
  margin-bottom: 2px;
  color: #7b1118;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

body #contact label {
  gap: 10px;
  color: #202020;
  font-size: 14px;
  font-weight: 850;
}

body #contact input,
body #contact select,
body #contact textarea {
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(8, 8, 8, 0.14);
  border-radius: 6px;
  background: #fbfaf8;
  color: #080808;
  font-size: 14px;
  font-weight: 650;
}

body #contact textarea {
  min-height: 126px;
}

body #contact input:focus,
body #contact select:focus,
body #contact textarea:focus {
  outline: 2px solid rgba(123, 17, 24, 0.16);
  border-color: rgba(123, 17, 24, 0.48);
  background: #fff;
}

body #contact .rfq-form .btn.primary {
  min-height: 52px;
  margin-top: 6px;
  border-radius: 6px;
  background: #7b1118;
  box-shadow: 0 16px 34px rgba(123, 17, 24, 0.18);
}

@media (max-width: 1100px) {
  body #contact .contact-shell {
    width: min(100% - 48px, 920px);
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 74px;
  }

  body #contact .contact-shell > div:first-child::before {
    left: 0;
    top: 6px;
    width: 90px;
    height: 3px;
  }

  body #contact .contact-shell > div:first-child {
    padding-top: 34px;
  }
}

@media (max-width: 680px) {
  body #contact .contact-shell {
    width: min(100% - 32px, 440px);
    padding: 58px 0 72px;
  }

  body #contact .contact-shell h1 {
    font-size: clamp(32px, 10vw, 44px);
  }

  body #contact .contact-cards {
    grid-template-columns: 1fr;
  }

  body #contact .rfq-form {
    padding: 24px;
  }
}

/* Partner page: verified proof materials for overseas buyer trust. */
body #partners .page-hero.compact {
  width: min(100% - 56px, 1560px);
  max-width: none;
  padding-top: clamp(58px, 6vw, 92px);
  padding-bottom: clamp(34px, 4vw, 58px);
}

body #partners .page-hero.compact h1 {
  max-width: 1260px;
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1.12;
  letter-spacing: 0;
}

body #partners .page-hero.compact p:not(.eyebrow) {
  max-width: 920px;
  margin-top: 22px;
  color: #777;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}

body #partners .proof-grid {
  width: min(100% - 56px, 1560px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 10px 0 112px;
}

body #partners .proof-grid article {
  min-width: 0;
  padding: 18px 18px 28px;
  border: 1px solid rgba(8, 8, 8, 0.12);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(246, 246, 243, 0.92)),
    #fff;
  box-shadow: 0 18px 50px rgba(8, 8, 8, 0.055);
}

body #partners .proof-photo {
  display: block;
  width: 100%;
  height: clamp(260px, 22vw, 360px);
  margin: 0 0 24px;
  overflow: hidden;
  border: 1px solid rgba(8, 8, 8, 0.1);
  border-radius: 4px;
  background: #ececea;
}

body #partners .proof-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

body #partners .proof-grid article:nth-child(2) .proof-photo img,
body #partners .proof-grid article:nth-child(3) .proof-photo img {
  object-fit: contain;
  background: #f5f5f2;
}

body #partners .proof-grid h3 {
  margin: 0 10px 12px;
  color: #080808;
  font-size: clamp(21px, 1.8vw, 28px);
  line-height: 1.24;
}

body #partners .proof-grid p {
  margin: 0 10px;
  color: #747474;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.72;
}

@media (max-width: 1180px) {
  body #partners .page-hero.compact,
  body #partners .proof-grid {
    width: min(100% - 48px, 920px);
  }

  body #partners .proof-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body #partners .proof-photo {
    height: clamp(280px, 48vw, 430px);
  }
}

@media (max-width: 620px) {
  body #partners .page-hero.compact,
  body #partners .proof-grid {
    width: min(100% - 32px, 440px);
  }

  body #partners .page-hero.compact {
    padding-top: 52px;
  }

  body #partners .page-hero.compact h1 {
    font-size: clamp(30px, 9vw, 42px);
  }

  body #partners .proof-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 76px;
  }

  body #partners .proof-grid article {
    padding: 14px 14px 24px;
  }

  body #partners .proof-photo {
    height: 238px;
    margin-bottom: 20px;
  }
}

/* Refined type scale: keep the site quiet, clean, and premium. */
body .page:not(.page-home) > .page-hero.compact h1 {
  max-width: 980px;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.16;
  letter-spacing: 0;
}

body .page:not(.page-home) > .page-hero.compact p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.75;
}

body #brand .brand-editorial {
  width: min(100% - 72px, 1480px);
  min-height: calc(100svh - 64px);
  grid-template-columns: minmax(320px, 0.34fr) minmax(620px, 0.66fr);
  grid-template-rows: minmax(0, auto) auto;
  column-gap: clamp(36px, 4vw, 72px);
  row-gap: clamp(22px, 2.6vw, 34px);
  align-content: center;
  padding-top: clamp(28px, 3vw, 44px);
  padding-bottom: clamp(30px, 3.2vw, 48px);
}

body #brand .brand-copy {
  max-width: 470px;
  padding-top: clamp(4px, 1vw, 14px);
}

body #brand .brand-copy .eyebrow {
  margin-bottom: 16px;
  font-size: 12px;
  letter-spacing: 0.16em;
}

body #brand .brand-copy h1 {
  max-width: 440px;
  font-size: clamp(28px, 2.55vw, 40px);
  line-height: 1.18;
  font-weight: 850;
}

body #brand .brand-copy p:not(.eyebrow) {
  max-width: 455px;
  margin-top: 16px;
  color: #656565;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.76;
}

body #brand .brand-visual {
  height: clamp(300px, 40vh, 390px);
  min-height: 0;
  border-radius: 4px;
}

body #brand .brand-visual img {
  height: 100%;
  min-height: 0;
  object-position: 50% 50%;
}

body #brand .brand-editorial > .brand-facts {
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 34px);
  padding: clamp(14px, 1.6vw, 20px) 0 0;
  border-top: 1px solid rgba(8, 8, 8, 0.12);
}

body #brand .brand-editorial > .brand-facts article {
  min-height: 0;
  padding: 0;
}

body #brand .brand-editorial > .brand-facts span {
  margin-bottom: 9px;
  font-size: 10.5px;
  letter-spacing: 0.18em;
}

body #brand .brand-editorial > .brand-facts strong {
  margin-bottom: 6px;
  font-size: clamp(14px, 0.95vw, 16px);
  line-height: 1.28;
}

body #brand .brand-editorial > .brand-facts p {
  max-width: 230px;
  color: #737373;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.5;
}

@media (max-width: 1180px) {
  body #brand .brand-editorial {
    width: min(100% - 44px, 820px);
    min-height: auto;
    grid-template-columns: 1fr;
    align-content: start;
    padding-top: 46px;
    padding-bottom: 54px;
  }

  body #brand .brand-copy,
  body #brand .brand-copy h1,
  body #brand .brand-copy p:not(.eyebrow) {
    max-width: 680px;
  }

  body #brand .brand-visual {
    height: 390px;
  }

  body #brand .brand-editorial > .brand-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  body .page:not(.page-home) > .page-hero.compact h1 {
    font-size: clamp(27px, 7.8vw, 36px);
  }

  body #brand .brand-editorial {
    width: min(100% - 32px, 440px);
    padding-top: 24px;
    padding-bottom: 32px;
  }

  body #brand .brand-copy h1 {
    font-size: clamp(27px, 7.6vw, 36px);
  }

  body #brand .brand-visual {
    height: 220px;
  }

  body #brand .brand-editorial > .brand-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
  }

  body #brand .brand-editorial > .brand-facts strong {
    font-size: 14px;
  }

  body #brand .brand-editorial > .brand-facts p {
    font-size: 11.5px;
    line-height: 1.45;
  }
}

/* Page covers: make every inner page open with a full-screen editorial cover. */
body .page:not(.page-home):not(#brand) > .page-hero.compact {
  width: min(100% - 72px, 1680px);
  min-height: calc(100svh - 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(72px, 8vw, 132px) 0;
  border-bottom: 1px solid rgba(8, 8, 8, 0.14);
}

body .page:not(.page-home):not(#brand) > .page-hero.compact h1 {
  max-width: 1280px;
  margin: 0;
  font-size: clamp(42px, 5.6vw, 86px);
  line-height: 1.06;
  letter-spacing: 0;
}

body .page:not(.page-home):not(#brand) > .page-hero.compact p:not(.eyebrow) {
  max-width: 920px;
  margin: 28px 0 0;
  color: #777;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.85;
}

body .brand-editorial {
  width: min(100% - 72px, 1680px);
  min-height: calc(100svh - 64px);
  align-items: center;
  padding-top: clamp(64px, 7vw, 104px);
  padding-bottom: clamp(64px, 7vw, 104px);
}

body .brand-copy h1 {
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.06;
}

body .brand-visual {
  min-height: clamp(620px, 76vh, 860px);
}

/* Product systems: show 10 spaces as two clean rows of five on desktop. */
body #products .catalog-grid {
  width: min(100% - 56px, 1760px);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px 28px;
  padding: 40px 0 72px;
}

body #products .catalog-grid article {
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

body #products .product-photo {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  height: auto;
  margin: 0 0 14px;
  border-radius: 4px;
  filter: grayscale(0.18) contrast(1.03);
}

body #products .catalog-grid span {
  display: block;
  margin: 0 0 12px;
  color: #7a7a7a;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0;
}

body #products .catalog-grid h3 {
  margin: 0 0 8px;
  color: #080808;
  font-size: clamp(16px, 1.02vw, 20px);
  line-height: 1.28;
}

body #products .catalog-grid p {
  margin: 0;
  color: #777;
  font-size: 12.5px;
  font-weight: 650;
  line-height: 1.58;
}

@media (max-width: 1280px) {
  body #products .catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body .page:not(.page-home):not(#brand) > .page-hero.compact,
  body .brand-editorial {
    width: min(100% - 40px, 760px);
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  body .page:not(.page-home):not(#brand) > .page-hero.compact h1,
  body .brand-copy h1 {
    font-size: clamp(34px, 8.2vw, 54px);
  }

  body .brand-visual {
    min-height: 480px;
  }

  body #products .catalog-grid {
    width: min(100% - 40px, 760px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 48px;
  }
}

@media (max-width: 560px) {
  body .page:not(.page-home):not(#brand) > .page-hero.compact,
  body .brand-editorial {
    width: min(100% - 32px, 440px);
    padding-top: 56px;
    padding-bottom: 56px;
  }

  body .page:not(.page-home):not(#brand) > .page-hero.compact h1,
  body .brand-copy h1 {
    font-size: clamp(30px, 9.6vw, 42px);
  }

  body .brand-visual {
    min-height: 380px;
  }

  body #products .catalog-grid {
    width: min(100% - 32px, 440px);
    grid-template-columns: 1fr;
    gap: 34px;
    padding-bottom: 76px;
  }
}

body #cases .case-layout {
  padding-top: 72px;
}

/* Core advantages: direct comparison between honeycomb aluminum and Fadior steel frame. */
body #advantages .advantage-compare {
  width: min(100% - 56px, 1560px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  padding: 72px 0 118px;
}

body #advantages .compare-column {
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(8, 8, 8, 0.12);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(8, 8, 8, 0.06);
}

body #advantages .compare-column.fadior {
  border-color: rgba(123, 17, 24, 0.26);
  background:
    linear-gradient(135deg, rgba(123, 17, 24, 0.055), rgba(255, 255, 255, 0.92)),
    #fff;
}

body #advantages .compare-label {
  margin: 0 0 24px;
  color: #8b8b8b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body #advantages .compare-column.fadior .compare-label {
  color: var(--red);
}

body #advantages .compare-column article {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 0 20px;
  min-height: 132px;
  padding: 24px 0;
  border-top: 1px solid rgba(8, 8, 8, 0.1);
}

body #advantages .compare-column article:last-child {
  padding-bottom: 4px;
}

body #advantages .compare-column article > span {
  grid-row: 1 / span 2;
  color: rgba(8, 8, 8, 0.28);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

body #advantages .compare-column.fadior article > span {
  color: rgba(123, 17, 24, 0.8);
}

body #advantages .compare-column strong {
  display: block;
  margin: 0 0 10px;
  color: #111;
  font-size: clamp(20px, 1.65vw, 28px);
  line-height: 1.24;
}

body #advantages .compare-column.competitor strong {
  color: #4d4d4d;
}

body #advantages .compare-column p:not(.compare-label) {
  margin: 0;
  color: #707070;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.74;
}

body #advantages .compare-column.fadior p:not(.compare-label) {
  color: #5f5f5f;
}

@media (max-width: 980px) {
  body #advantages .advantage-compare {
    width: min(100% - 40px, 760px);
    grid-template-columns: 1fr;
    padding-top: 48px;
  }
}

@media (max-width: 560px) {
  body #advantages .advantage-compare {
    width: min(100% - 32px, 440px);
    gap: 16px;
    padding-bottom: 76px;
  }

  body #advantages .compare-column {
    padding: 22px;
  }

body #advantages .compare-column article {
    grid-template-columns: 44px 1fr;
    gap: 0 14px;
    min-height: 0;
    padding: 20px 0;
  }
}

/* Case center: six country/style cases visible as a compact 3x2 wall. */
body #cases {
  padding-bottom: 0;
}

body #cases > .page-hero.compact {
  width: min(100% - 72px, 1680px);
  min-height: auto;
  padding-top: clamp(42px, 4.8vw, 72px);
  padding-bottom: clamp(24px, 2.8vw, 38px);
}

body #cases > .page-hero.compact h1 {
  max-width: 1120px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.1;
}

body #cases > .page-hero.compact p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 18px;
  font-size: 13.5px;
  line-height: 1.68;
}

body #cases .case-layout {
  width: min(100% - 72px, 1680px);
  padding-top: 26px;
  padding-bottom: clamp(44px, 4.5vw, 68px);
}

body #cases .case-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

body #cases .case-grid article {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(8, 8, 8, 0.12);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(8, 8, 8, 0.055);
}

body #cases .case-grid .image-sim {
  width: 100%;
  min-height: 0;
  aspect-ratio: 1.82 / 1;
  border-radius: 0;
}

body #cases .case-grid h3 {
  margin: 0;
  padding: 20px 22px 10px;
  color: #080808;
  font-size: clamp(19px, 1.45vw, 26px);
  line-height: 1.22;
}

body #cases .case-grid p {
  min-height: 66px;
  margin: 0;
  padding: 0 22px 24px;
  color: #727272;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.58;
}

@media (max-width: 1080px) {
  body #cases > .page-hero.compact,
  body #cases .case-layout {
    width: min(100% - 44px, 920px);
  }

  body #cases .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  body #cases > .page-hero.compact,
  body #cases .case-layout {
    width: min(100% - 32px, 440px);
  }

  body #cases .case-grid {
    grid-template-columns: 1fr;
  }

  body #cases .case-grid p {
    min-height: 0;
  }
}

/* Final brand page layout: villa image plus proof row in the first brand screen. */
body #brand .brand-editorial {
  width: min(100% - 72px, 1680px);
  min-height: calc(100svh - 64px);
  display: grid;
  grid-template-columns: minmax(330px, 0.39fr) minmax(620px, 0.61fr);
  grid-template-rows: auto auto;
  gap: clamp(30px, 3.6vw, 56px);
  align-items: start;
  padding-top: clamp(36px, 4vw, 62px);
  padding-bottom: clamp(42px, 4.4vw, 68px);
}

body #brand .brand-copy {
  max-width: 590px;
  padding-top: 4px;
}

body #brand .brand-copy .eyebrow {
  margin-bottom: 18px;
}

body #brand .brand-copy h1 {
  max-width: 560px;
  font-size: clamp(31px, 3.05vw, 48px);
  line-height: 1.12;
}

body #brand .brand-copy p:not(.eyebrow) {
  max-width: 590px;
  margin-top: 18px;
  font-size: 13.5px;
  line-height: 1.8;
}

body #brand .brand-visual {
  width: 100%;
  min-height: clamp(500px, 58vh, 640px);
}

body #brand .brand-visual img {
  object-position: 50% 50%;
  filter: contrast(1.04) saturate(0.95);
}

body #brand .brand-visual figcaption {
  display: none;
}

body #brand .brand-editorial > .brand-facts {
  grid-column: 1 / -1;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(30px, 4.2vw, 78px);
  padding: clamp(30px, 3.2vw, 42px) 0 0;
  border-top: 1px solid rgba(8, 8, 8, 0.16);
  border-bottom: 0;
}

body #brand .brand-editorial > .brand-facts article {
  min-height: 0;
  padding: 0;
  background: transparent;
}

body #brand .brand-editorial > .brand-facts span {
  margin-bottom: 28px;
  color: var(--red);
  font-size: 13px;
  letter-spacing: 0.22em;
}

body #brand .brand-editorial > .brand-facts strong {
  margin-bottom: 16px;
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.22;
}

body #brand .brand-editorial > .brand-facts p {
  max-width: 270px;
  color: #676767;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.75;
}

@media (max-width: 1180px) {
  body #brand .brand-editorial {
    width: min(100% - 44px, 820px);
    grid-template-columns: 1fr;
    min-height: auto;
  }

  body #brand .brand-editorial > .brand-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  body #brand .brand-editorial {
    width: min(100% - 32px, 440px);
    padding-top: 42px;
  }

  body #brand .brand-copy h1 {
    font-size: clamp(29px, 8.8vw, 40px);
  }

  body #brand .brand-visual {
    min-height: 380px;
  }

  body #brand .brand-editorial > .brand-facts {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  body #brand .brand-editorial > .brand-facts span {
    margin-bottom: 12px;
  }
}

/* Absolute final override: quiet, one-screen brand introduction. */
body #brand .brand-editorial {
  width: min(100% - 72px, 1480px);
  min-height: calc(100svh - 64px);
  grid-template-columns: minmax(320px, 0.34fr) minmax(620px, 0.66fr);
  grid-template-rows: minmax(0, auto) auto;
  column-gap: clamp(36px, 4vw, 72px);
  row-gap: clamp(18px, 2vw, 28px);
  align-content: center;
  padding-top: clamp(24px, 2.5vw, 36px);
  padding-bottom: clamp(24px, 2.5vw, 36px);
}

body #brand .brand-copy {
  max-width: 470px;
  padding-top: 0;
}

body #brand .brand-copy .eyebrow {
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: 0.16em;
}

body #brand .brand-copy h1 {
  max-width: 430px;
  font-size: clamp(27px, 2.45vw, 38px);
  line-height: 1.18;
  font-weight: 850;
}

body #brand .brand-copy p:not(.eyebrow) {
  max-width: 450px;
  margin-top: 14px;
  color: #666;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.72;
}

body #brand .brand-visual {
  height: clamp(300px, 40vh, 390px);
  min-height: 0;
  border-radius: 4px;
}

body #brand .brand-visual img {
  height: 100%;
  min-height: 0;
  object-position: 50% 50%;
}

body #brand .brand-editorial > .brand-facts {
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 34px);
  padding: clamp(14px, 1.6vw, 20px) 0 0;
  border-top: 1px solid rgba(8, 8, 8, 0.12);
}

body #brand .brand-editorial > .brand-facts span {
  margin-bottom: 9px;
  font-size: 10.5px;
  letter-spacing: 0.18em;
}

body #brand .brand-editorial > .brand-facts strong {
  margin-bottom: 6px;
  font-size: clamp(14px, 0.95vw, 16px);
  line-height: 1.28;
}

body #brand .brand-editorial > .brand-facts p {
  max-width: 230px;
  color: #737373;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.5;
}

body .page:not(.page-home) > .page-hero.compact h1 {
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.16;
}

@media (max-width: 1180px) {
  body #brand .brand-editorial {
    width: min(100% - 44px, 820px);
    min-height: auto;
    grid-template-columns: 1fr;
    align-content: start;
    padding-top: 46px;
    padding-bottom: 54px;
  }

  body #brand .brand-copy,
  body #brand .brand-copy h1,
  body #brand .brand-copy p:not(.eyebrow) {
    max-width: 680px;
  }

  body #brand .brand-visual {
    height: 390px;
  }

  body #brand .brand-editorial > .brand-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  body .page:not(.page-home) > .page-hero.compact h1 {
    font-size: clamp(27px, 7.8vw, 36px);
  }

  body #brand .brand-editorial {
    width: min(100% - 32px, 440px);
    padding-top: 24px;
    padding-bottom: 32px;
  }

  body #brand .brand-copy h1 {
    font-size: clamp(27px, 7.6vw, 36px);
  }

  body #brand .brand-visual {
    height: 220px;
  }

  body #brand .brand-editorial > .brand-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
  }

  body #brand .brand-editorial > .brand-facts strong {
    font-size: 14px;
  }

  body #brand .brand-editorial > .brand-facts p {
    font-size: 11.5px;
    line-height: 1.45;
  }
}

/* Brand page final override: compact one-screen editorial layout. */
body #brand {
  background: #fff;
}

body #brand .brand-editorial {
  width: min(100% - 88px, 1500px);
  min-height: calc(100svh - 64px);
  display: grid;
  grid-template-columns: minmax(330px, 0.36fr) minmax(680px, 0.64fr);
  grid-template-rows: minmax(0, auto) auto;
  column-gap: clamp(44px, 5vw, 88px);
  row-gap: clamp(20px, 2.4vw, 34px);
  align-content: center;
  align-items: center;
  padding: clamp(26px, 3vw, 42px) 0;
}

body #brand .brand-copy {
  max-width: 500px;
  padding-top: 0;
}

body #brand .brand-copy .eyebrow {
  margin-bottom: 18px;
  color: #8a1119;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

body #brand .brand-copy h1 {
  max-width: 480px;
  margin: 0;
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 850;
  line-height: 1.18;
  letter-spacing: 0;
}

body #brand .brand-copy p:not(.eyebrow) {
  max-width: 470px;
  margin-top: 18px;
  color: #5c5c5c;
  font-size: clamp(13px, 0.95vw, 14.5px);
  font-weight: 560;
  line-height: 1.82;
}

body #brand .brand-copy p:not(.eyebrow) + p:not(.eyebrow) {
  margin-top: 12px;
}

body #brand .brand-visual {
  width: 100%;
  height: clamp(420px, 54vh, 520px);
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: #f4f4f4;
}

body #brand .brand-visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 50% 50%;
}

body #brand .brand-visual figcaption {
  right: clamp(18px, 2vw, 30px);
  bottom: clamp(18px, 2vw, 28px);
  left: auto;
  width: min(520px, calc(100% - 40px));
  padding: 12px 18px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

body #brand .brand-editorial > .brand-facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 46px);
  margin: 0;
  padding: clamp(18px, 2vw, 24px) 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

body #brand .brand-editorial > .brand-facts article {
  min-height: 0;
}

body #brand .brand-editorial > .brand-facts span {
  display: block;
  margin-bottom: 10px;
  color: #8a1119;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.18em;
}

body #brand .brand-editorial > .brand-facts strong {
  display: block;
  margin-bottom: 7px;
  color: #0a0a0a;
  font-size: clamp(15px, 1vw, 17px);
  font-weight: 850;
  line-height: 1.25;
}

body #brand .brand-editorial > .brand-facts p {
  max-width: 260px;
  margin: 0;
  color: #696969;
  font-size: 12.5px;
  font-weight: 560;
  line-height: 1.55;
}

@media (max-width: 1180px) {
  body #brand .brand-editorial {
    width: min(100% - 44px, 860px);
    min-height: auto;
    grid-template-columns: 1fr;
    row-gap: 28px;
    align-content: start;
    padding-top: 44px;
    padding-bottom: 52px;
  }

  body #brand .brand-copy,
  body #brand .brand-copy h1,
  body #brand .brand-copy p:not(.eyebrow) {
    max-width: 720px;
  }

  body #brand .brand-visual {
    height: clamp(320px, 48vw, 460px);
  }

  body #brand .brand-editorial > .brand-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  body #brand .brand-editorial {
    width: min(100% - 32px, 440px);
    row-gap: 22px;
    padding-top: 26px;
    padding-bottom: 34px;
  }

  body #brand .brand-copy .eyebrow {
    margin-bottom: 12px;
    font-size: 11px;
  }

  body #brand .brand-copy h1 {
    font-size: clamp(27px, 7.2vw, 34px);
  }

  body #brand .brand-copy p:not(.eyebrow) {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.72;
  }

  body #brand .brand-visual {
    height: 250px;
  }

  body #brand .brand-visual figcaption {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    padding: 10px 12px;
    font-size: 9.5px;
    letter-spacing: 0.1em;
  }

  body #brand .brand-editorial > .brand-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
    padding-top: 18px;
  }

  body #brand .brand-editorial > .brand-facts span {
    margin-bottom: 7px;
    font-size: 10px;
  }

  body #brand .brand-editorial > .brand-facts strong {
    font-size: 14px;
  }

  body #brand .brand-editorial > .brand-facts p {
    font-size: 11.5px;
    line-height: 1.45;
  }
}

/* Brand page mobile height polish. */
@media (max-width: 620px) {
  body #brand .brand-editorial {
    row-gap: 16px;
    padding-top: 18px;
    padding-bottom: 24px;
  }

  body #brand .brand-copy .eyebrow {
    margin-bottom: 10px;
  }

  body #brand .brand-copy h1 {
    font-size: clamp(25px, 6.8vw, 31px);
    line-height: 1.14;
  }

  body #brand .brand-copy p:not(.eyebrow) {
    margin-top: 10px;
    font-size: 12.5px;
    line-height: 1.58;
  }

  body #brand .brand-visual {
    height: 198px;
  }

  body #brand .brand-editorial > .brand-facts {
    gap: 12px 16px;
    padding-top: 14px;
  }

  body #brand .brand-editorial > .brand-facts span {
    margin-bottom: 5px;
  }

  body #brand .brand-editorial > .brand-facts strong {
    margin-bottom: 4px;
    font-size: 13.5px;
  }

  body #brand .brand-editorial > .brand-facts p {
    font-size: 11px;
    line-height: 1.35;
  }
}

/* Product page final polish: headline and product cards must share one viewport. */
body #products {
  padding-bottom: 0;
}

body #products > .page-hero.compact {
  width: min(100% - 76px, 1760px);
  min-height: 0;
  display: block;
  padding: clamp(30px, 3.2vw, 46px) 0 clamp(20px, 2.4vw, 34px);
  border-bottom: 1px solid rgba(8, 8, 8, 0.12);
}

body #products > .page-hero.compact .eyebrow {
  margin-bottom: 14px;
  color: #8a1119;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

body #products > .page-hero.compact h1 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.12;
  font-weight: 850;
  letter-spacing: 0;
}

body #products .catalog-grid {
  width: min(100% - 76px, 1760px);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 24px);
  padding: clamp(24px, 2.6vw, 36px) 0 clamp(40px, 4vw, 64px);
}

body #products .product-photo {
  aspect-ratio: 1.42 / 1;
  margin-bottom: 12px;
}

body #products .catalog-grid span {
  margin-bottom: 8px;
  font-size: clamp(16px, 1.4vw, 22px);
}

body #products .catalog-grid h3 {
  margin-bottom: 7px;
  font-size: clamp(15px, 1vw, 18px);
}

body #products .catalog-grid p {
  font-size: 12px;
  line-height: 1.48;
}

@media (max-width: 1280px) {
  body #products > .page-hero.compact,
  body #products .catalog-grid {
    width: min(100% - 48px, 1060px);
  }

  body #products .catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body #products > .page-hero.compact,
  body #products .catalog-grid {
    width: min(100% - 32px, 480px);
  }

  body #products > .page-hero.compact {
    padding-top: 34px;
  }

  body #products > .page-hero.compact h1 {
    font-size: clamp(26px, 8vw, 36px);
  }

  body #products .catalog-grid {
    grid-template-columns: 1fr;
  }
}

/* Brand desktop vertical balance. */
@media (min-width: 1181px) {
  body #brand .brand-editorial {
    align-content: start;
    padding-top: clamp(44px, 5.5vh, 60px);
  }
}

/* Absolute final product page fix: compact title strip, no blank cover area. */
body #products > .page-hero.compact {
  width: min(100% - 76px, 1760px) !important;
  min-height: 0 !important;
  display: block !important;
  padding: 24px 0 16px !important;
  margin: 0 auto !important;
  border-bottom: 1px solid rgba(8, 8, 8, 0.12) !important;
}

body #products > .page-hero.compact .eyebrow {
  margin: 0 0 8px !important;
  font-size: 12px !important;
  line-height: 1 !important;
}

body #products > .page-hero.compact h1 {
  max-width: 1500px !important;
  margin: 0 !important;
  font-size: clamp(24px, 2.25vw, 36px) !important;
  line-height: 1.16 !important;
  font-weight: 850 !important;
  letter-spacing: 0 !important;
}

body #products .catalog-grid {
  width: min(100% - 76px, 1760px) !important;
  margin: 0 auto !important;
  padding: 16px 0 48px !important;
  gap: 16px 24px !important;
}

body #products .product-photo {
  aspect-ratio: 1.5 / 1 !important;
  margin-bottom: 10px !important;
}

body #products .catalog-grid span {
  margin-bottom: 6px !important;
  font-size: 18px !important;
}

body #products .catalog-grid h3 {
  margin-bottom: 5px !important;
  font-size: clamp(14px, 0.9vw, 17px) !important;
  line-height: 1.22 !important;
}

body #products .catalog-grid p {
  font-size: 11.5px !important;
  line-height: 1.42 !important;
}

@media (max-width: 1280px) {
  body #products > .page-hero.compact,
  body #products .catalog-grid {
    width: min(100% - 48px, 1060px) !important;
  }
}

@media (max-width: 760px) {
  body #products > .page-hero.compact,
  body #products .catalog-grid {
    width: min(100% - 32px, 480px) !important;
  }

  body #products > .page-hero.compact h1 {
    font-size: clamp(24px, 7vw, 34px) !important;
  }
}

/* Absolute final inner-page system: all section headers match the compact product page. */
body .page:not(.page-home):not(#brand) > .page-hero.compact {
  width: min(100% - 76px, 1760px) !important;
  min-height: 0 !important;
  display: block !important;
  margin: 0 auto !important;
  padding: 24px 0 16px !important;
  border-bottom: 1px solid rgba(8, 8, 8, 0.12) !important;
  text-align: left !important;
}

body .page:not(.page-home):not(#brand) > .page-hero.compact .eyebrow {
  margin: 0 0 8px !important;
  color: #8a1119 !important;
  font-size: 12px !important;
  font-weight: 850 !important;
  line-height: 1 !important;
  letter-spacing: 0.16em !important;
}

body .page:not(.page-home):not(#brand) > .page-hero.compact h1 {
  max-width: 1500px !important;
  margin: 0 !important;
  color: #050505 !important;
  font-size: clamp(24px, 2.25vw, 36px) !important;
  font-weight: 850 !important;
  line-height: 1.16 !important;
  letter-spacing: 0 !important;
}

body .page:not(.page-home):not(#brand) > .page-hero.compact p:not(.eyebrow) {
  max-width: 920px !important;
  margin: 10px 0 0 !important;
  color: #747474 !important;
  font-size: 12.5px !important;
  font-weight: 650 !important;
  line-height: 1.55 !important;
}

body #materials .material-grid,
body #advantages .advantage-compare,
body #cases .case-layout,
body #service .process,
body #faq .faq-list,
body #partners .proof-grid,
body #partners .partner-logo-wall {
  margin-top: 0 !important;
  padding-top: 16px !important;
}

body #materials .material-grid,
body #advantages .advantage-compare,
body #cases .case-layout,
body #service .process,
body #faq .faq-list,
body #partners .proof-grid,
body #partners .partner-logo-wall,
body #products .catalog-grid {
  width: min(100% - 76px, 1760px) !important;
}

@media (max-width: 1280px) {
  body .page:not(.page-home):not(#brand) > .page-hero.compact,
  body #materials .material-grid,
  body #advantages .advantage-compare,
  body #cases .case-layout,
  body #service .process,
  body #faq .faq-list,
  body #partners .proof-grid,
  body #partners .partner-logo-wall,
  body #products .catalog-grid {
    width: min(100% - 48px, 1060px) !important;
  }
}

@media (max-width: 760px) {
  body .page:not(.page-home):not(#brand) > .page-hero.compact,
  body #materials .material-grid,
  body #advantages .advantage-compare,
  body #cases .case-layout,
  body #service .process,
  body #faq .faq-list,
  body #partners .proof-grid,
  body #partners .partner-logo-wall,
  body #products .catalog-grid {
    width: min(100% - 32px, 480px) !important;
  }

  body .page:not(.page-home):not(#brand) > .page-hero.compact h1 {
    font-size: clamp(24px, 7vw, 34px) !important;
  }
}

/* Product page title polish: keep the section intro compact. */
body #products > .page-hero.compact {
  padding: 26px 0 18px !important;
}

body #products > .page-hero.compact .eyebrow {
  margin-bottom: 10px !important;
  font-size: 13px !important;
  letter-spacing: 0.12em !important;
}

body #products > .page-hero.compact h1 {
  max-width: 720px !important;
  font-size: clamp(18px, 1.35vw, 23px) !important;
  line-height: 1.42 !important;
  font-weight: 720 !important;
  color: #222 !important;
}

@media (max-width: 760px) {
  body #products > .page-hero.compact {
    padding: 24px 0 16px !important;
  }

  body #products > .page-hero.compact h1 {
    max-width: 100% !important;
    font-size: 17px !important;
    line-height: 1.45 !important;
  }
}

/* Final unified intro typography: every inner page matches the compact product header. */
body .page:not(.page-home):not(#brand) > .page-hero.compact {
  padding: 26px 0 18px !important;
}

body .page:not(.page-home):not(#brand) > .page-hero.compact .eyebrow {
  margin-bottom: 10px !important;
  color: #8a1119 !important;
  font-size: 13px !important;
  font-weight: 850 !important;
  letter-spacing: 0.12em !important;
}

body .page:not(.page-home):not(#brand) > .page-hero.compact h1 {
  max-width: 760px !important;
  color: #222 !important;
  font-size: clamp(18px, 1.35vw, 23px) !important;
  font-weight: 720 !important;
  line-height: 1.42 !important;
}

body .page:not(.page-home):not(#brand) > .page-hero.compact p:not(.eyebrow) {
  max-width: 760px !important;
  margin-top: 8px !important;
  color: #747474 !important;
  font-size: 12.5px !important;
  font-weight: 650 !important;
  line-height: 1.55 !important;
}

@media (max-width: 760px) {
  body .page:not(.page-home):not(#brand) > .page-hero.compact {
    padding: 24px 0 16px !important;
  }

  body .page:not(.page-home):not(#brand) > .page-hero.compact h1 {
    max-width: 100% !important;
    font-size: 17px !important;
    line-height: 1.45 !important;
  }
}

/* Partner logo reservation block. */
body #partners .partner-logo-wall {
  display: grid;
  grid-template-columns: minmax(260px, 0.28fr) minmax(0, 1fr);
  gap: 28px;
  margin: 34px auto 82px !important;
  padding: 30px 0 0 !important;
  border-top: 1px solid rgba(8, 8, 8, 0.12);
}

body #partners .partner-logo-intro .eyebrow {
  margin: 0 0 12px;
  color: #8a1119;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

/* Case center: real images extracted from Fadior technical manual. */
body #cases .case-grid article {
  grid-template-rows: auto auto 1fr !important;
}

body #cases .case-grid .case-photo {
  display: block;
  width: 100%;
  aspect-ratio: 1.82 / 1;
  object-fit: cover;
  object-position: center;
  background: #f4f4f4;
  filter: contrast(1.03) saturate(0.96);
}

body #cases .case-grid article:nth-child(2) .case-photo {
  object-position: 50% 48%;
}

body #cases .case-grid article:nth-child(4) .case-photo {
  object-position: 50% 50%;
}

body #cases .case-grid article:nth-child(5) .case-photo {
  object-position: 50% 54%;
}

body #cases .case-grid h3 {
  font-size: clamp(16px, 1.05vw, 19px) !important;
  line-height: 1.25 !important;
}

body #cases .case-grid p {
  min-height: 0 !important;
  font-size: 12.5px !important;
  line-height: 1.55 !important;
}

body #partners .partner-logo-intro h2 {
  max-width: 340px;
  margin: 0;
  color: #080808;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.18;
}

body #partners .partner-logo-intro p:not(.eyebrow) {
  max-width: 360px;
  margin: 12px 0 0;
  color: #747474;
  font-size: 12.5px;
  font-weight: 650;
  line-height: 1.6;
}

body #partners .partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

body #partners .partner-logo-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(82px, 1fr) auto;
  place-items: center;
  min-height: 128px;
  padding: 18px 20px 16px;
  border: 1px solid rgba(8, 8, 8, 0.12);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(8, 8, 8, 0.045);
}

body #partners .partner-logo-card img {
  display: block;
  width: auto;
  max-width: min(180px, 82%);
  max-height: 54px;
  object-fit: contain;
}

body #partners .partner-logo-card span,
body #partners .partner-logo-card strong {
  color: rgba(8, 8, 8, 0.58);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
  letter-spacing: 0;
}

body #partners .partner-logo-text {
  grid-template-rows: 1fr auto;
  background: linear-gradient(135deg, #fff, #f8f5f1);
}

body #partners .partner-logo-text strong {
  align-self: end;
  color: #080808;
  font-size: 22px;
  font-weight: 900;
}

body #partners .partner-logo-slot {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 112px;
  border: 1px solid rgba(8, 8, 8, 0.14);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(8, 8, 8, 0.045);
}

body #partners .partner-logo-slot::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px dashed rgba(8, 8, 8, 0.18);
  border-radius: 4px;
}

body #partners .partner-logo-slot span {
  position: relative;
  z-index: 1;
  color: rgba(8, 8, 8, 0.32);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  body #partners .partner-logo-wall {
    grid-template-columns: 1fr;
  }

  body #partners .partner-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  body #partners .partner-logo-grid {
    grid-template-columns: 1fr;
  }
}

/* Structure comparison visuals for the advantages page. */
body #advantages .structure-visual-compare {
  width: min(100% - 76px, 1760px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 0 auto;
  padding: 16px 0 22px;
}

body #advantages .structure-panel {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(8, 8, 8, 0.13);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(8, 8, 8, 0.055);
}

body #advantages .structure-panel figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px 14px;
  border-bottom: 1px solid rgba(8, 8, 8, 0.1);
}

body #advantages .structure-panel figcaption span {
  color: #8a8a8a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body #advantages .structure-panel figcaption strong {
  color: #080808;
  font-size: clamp(18px, 1.4vw, 24px);
  line-height: 1.2;
}

body #advantages .steel-panel {
  border-color: rgba(138, 17, 25, 0.24);
  background:
    linear-gradient(135deg, rgba(138, 17, 25, 0.045), rgba(255, 255, 255, 0.96)),
    #fff;
}

body #advantages .steel-panel figcaption strong,
body #advantages .steel-panel figcaption span {
  color: #8a1119;
}

body #advantages .structure-photo {
  display: grid;
  place-items: center;
  height: clamp(360px, 34vw, 520px);
  margin: 0 26px 18px;
  overflow: hidden;
  border: 1px solid rgba(8, 8, 8, 0.1);
  border-radius: 6px;
  background:
    linear-gradient(135deg, #f8f8f5, #ecebe7),
    #f5f4f1;
}

body #advantages .structure-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

body #advantages .structure-note {
  margin: 0 26px 24px;
  padding: 14px 16px;
  color: #6f6f6f;
  background: #f8f7f4;
  border-left: 3px solid rgba(8, 8, 8, 0.18);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.55;
}

body #advantages .steel-panel .structure-note {
  color: #7d1118;
  background: rgba(138, 17, 25, 0.055);
  border-left-color: #8a1119;
}

@media (max-width: 980px) {
  body #advantages .structure-visual-compare {
    width: min(100% - 40px, 760px);
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  body #advantages .structure-visual-compare {
    width: min(100% - 32px, 440px);
    gap: 14px;
  }

  body #advantages .structure-panel figcaption {
    display: block;
    padding: 18px 20px 12px;
  }

  body #advantages .structure-panel figcaption strong {
    display: block;
    margin-top: 6px;
  }

  body #advantages .structure-photo {
    height: 330px;
    margin: 0 18px 14px;
  }

  body #advantages .structure-note {
    margin: 0 18px 20px;
  }
}

/* Annotated structure comparison: notes outside, product photos centered. */
body #advantages .structure-visual-compare.layout-annotated {
  width: min(100% - 76px, 1760px);
  grid-template-columns: minmax(180px, 0.66fr) minmax(260px, 1fr) minmax(260px, 1fr) minmax(180px, 0.66fr);
  gap: 18px;
  align-items: stretch;
}

body #advantages .layout-annotated .structure-panel {
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(8, 8, 8, 0.05);
}

body #advantages .layout-annotated .structure-panel figcaption {
  display: block;
  padding: 18px 20px 12px;
  min-height: 82px;
}

body #advantages .layout-annotated .structure-panel figcaption strong {
  display: block;
  margin-top: 6px;
}

body #advantages .layout-annotated .structure-photo {
  height: clamp(430px, 34vw, 560px);
  margin: 0 18px 18px;
}

body #advantages .structure-annotations {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 24px 22px;
  border: 1px solid rgba(8, 8, 8, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 46px rgba(8, 8, 8, 0.04);
}

body #advantages .structure-annotations span {
  display: block;
  margin-bottom: 12px;
  color: #8a8a8a;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body #advantages .structure-annotations strong {
  display: block;
  margin-bottom: 12px;
  color: #080808;
  font-size: clamp(20px, 1.5vw, 28px);
  line-height: 1.18;
}

body #advantages .structure-annotations p {
  margin: 0;
  color: #666;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.68;
}

body #advantages .structure-annotations ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

body #advantages .structure-annotations li {
  position: relative;
  padding-left: 15px;
  color: #777;
  font-size: 12.5px;
  font-weight: 650;
  line-height: 1.55;
}

body #advantages .structure-annotations li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

body #advantages .fadior-notes {
  border-color: rgba(138, 17, 25, 0.2);
  background:
    linear-gradient(135deg, rgba(138, 17, 25, 0.055), rgba(255, 255, 255, 0.94)),
    #fff;
}

body #advantages .fadior-notes span,
body #advantages .fadior-notes strong {
  color: #8a1119;
}

@media (max-width: 1180px) {
  body #advantages .structure-visual-compare.layout-annotated {
    width: min(100% - 44px, 960px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body #advantages .layout-annotated .competitor-notes {
    order: 1;
  }

  body #advantages .layout-annotated .honeycomb-panel {
    order: 2;
  }

  body #advantages .layout-annotated .steel-panel {
    order: 3;
  }

  body #advantages .layout-annotated .fadior-notes {
    order: 4;
  }

  body #advantages .layout-annotated .structure-photo {
    height: 420px;
  }
}

@media (max-width: 680px) {
  body #advantages .structure-visual-compare.layout-annotated {
    width: min(100% - 32px, 440px);
    grid-template-columns: 1fr;
  }

  body #advantages .layout-annotated .structure-photo {
    height: 330px;
  }

body #advantages .structure-annotations {
    padding: 22px 20px;
  }
}

/* Final core-advantage layout: place the comparison notes beside the photos. */
body #advantages .structure-visual-compare.layout-annotated {
  width: min(100% - 72px, 1840px) !important;
  display: grid !important;
  grid-template-columns: minmax(230px, 0.76fr) minmax(280px, 1fr) minmax(280px, 1fr) minmax(230px, 0.76fr) !important;
  gap: 18px !important;
  align-items: stretch !important;
  padding-top: 8px !important;
  padding-bottom: 44px !important;
}

body #advantages .layout-annotated .compare-column {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 20px 18px !important;
  border-radius: 8px !important;
  box-shadow: 0 18px 46px rgba(8, 8, 8, 0.045) !important;
}

body #advantages .layout-annotated .compare-column.competitor {
  border: 1px solid rgba(8, 8, 8, 0.1) !important;
  background: rgba(255, 255, 255, 0.9) !important;
}

body #advantages .layout-annotated .compare-column.fadior {
  border: 1px solid rgba(138, 17, 25, 0.22) !important;
  background:
    linear-gradient(135deg, rgba(138, 17, 25, 0.055), rgba(255, 255, 255, 0.96)),
    #fff !important;
}

body #advantages .layout-annotated .compare-label {
  margin: 0 0 12px !important;
  color: #8a8a8a !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  line-height: 1.3 !important;
  text-transform: uppercase !important;
}

body #advantages .layout-annotated .compare-column.fadior .compare-label,
body #advantages .layout-annotated .compare-column.fadior article > span {
  color: #8a1119 !important;
}

body #advantages .layout-annotated .compare-column article {
  display: grid !important;
  grid-template-columns: 34px 1fr !important;
  column-gap: 12px !important;
  min-height: 0 !important;
  padding: 13px 0 !important;
  border-bottom: 1px solid rgba(8, 8, 8, 0.08) !important;
}

body #advantages .layout-annotated .compare-column article:last-child {
  border-bottom: 0 !important;
}

body #advantages .layout-annotated .compare-column article > span {
  color: #b8b8b8 !important;
  font-size: 22px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

body #advantages .layout-annotated .compare-column strong {
  display: block !important;
  color: #111 !important;
  font-size: clamp(16px, 1.05vw, 20px) !important;
  line-height: 1.25 !important;
}

body #advantages .layout-annotated .compare-column p:not(.compare-label) {
  grid-column: 2 !important;
  margin: 7px 0 0 !important;
  color: #6f6f6f !important;
  font-size: clamp(12px, 0.78vw, 14px) !important;
  font-weight: 700 !important;
  line-height: 1.55 !important;
}

body #advantages .layout-annotated .structure-panel {
  min-width: 0 !important;
  margin: 0 !important;
  border-radius: 8px !important;
}

body #advantages .layout-annotated .structure-panel figcaption {
  min-height: 72px !important;
  padding: 16px 18px 10px !important;
}

body #advantages .layout-annotated .structure-panel figcaption span {
  font-size: 10px !important;
  letter-spacing: 0.11em !important;
}

body #advantages .layout-annotated .structure-panel figcaption strong {
  margin-top: 5px !important;
  font-size: clamp(17px, 1.15vw, 22px) !important;
}

body #advantages .layout-annotated .structure-photo {
  height: clamp(300px, 28vw, 450px) !important;
  margin: 0 16px 16px !important;
}

@media (max-width: 1120px) {
  body #advantages .structure-visual-compare.layout-annotated {
    width: min(100% - 44px, 1080px) !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body #advantages .layout-annotated .competitor {
    order: 1 !important;
  }

  body #advantages .layout-annotated .honeycomb-panel {
    order: 2 !important;
  }

  body #advantages .layout-annotated .steel-panel {
    order: 3 !important;
  }

  body #advantages .layout-annotated .fadior {
    order: 4 !important;
  }
}

@media (max-width: 720px) {
  body #advantages .structure-visual-compare.layout-annotated {
    width: min(100% - 30px, 460px) !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

body #advantages .layout-annotated .structure-photo {
    height: 310px !important;
  }
}

/* Service cards with real PDF/catalog imagery. */
body #service .process {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 22px !important;
  padding-top: 18px !important;
  padding-bottom: 72px !important;
}

body #service .process article {
  display: grid !important;
  grid-template-rows: auto auto auto 1fr !important;
  min-height: 0 !important;
  padding: 0 0 24px !important;
  overflow: hidden !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 18px 46px rgba(8, 8, 8, 0.045) !important;
}

body #service .process .process-photo {
  display: block !important;
  width: 100% !important;
  aspect-ratio: 1.42 / 1 !important;
  height: auto !important;
  object-fit: cover !important;
  object-position: center !important;
  border-bottom: 1px solid rgba(8, 8, 8, 0.1) !important;
}

body #service .process span {
  margin: 22px 26px 26px !important;
  color: #8a8a8a !important;
  font-size: 23px !important;
}

body #service .process h3 {
  margin: 0 26px 12px !important;
  font-size: clamp(19px, 1.25vw, 24px) !important;
  line-height: 1.22 !important;
}

body #service .process p {
  margin: 0 26px !important;
  font-size: clamp(12px, 0.82vw, 14px) !important;
  line-height: 1.65 !important;
}

@media (max-width: 980px) {
  body #service .process {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  body #service .process {
    grid-template-columns: 1fr !important;
    width: min(100% - 32px, 460px) !important;
  }
}

/* Product systems: four family cards explain whole-home coverage with fewer images. */
body #products .catalog-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 22px !important;
  padding-top: 18px !important;
  padding-bottom: 70px !important;
}

body #products .catalog-grid .system-family-card {
  display: grid !important;
  grid-template-rows: auto auto auto auto 1fr !important;
  min-height: 0 !important;
  padding: 0 0 22px !important;
  overflow: hidden !important;
  border: 1px solid rgba(8, 8, 8, 0.11) !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 18px 46px rgba(8, 8, 8, 0.045) !important;
}

body #products .catalog-grid .system-family-photo {
  display: block !important;
  width: 100% !important;
  aspect-ratio: 1.48 / 1 !important;
  height: auto !important;
  object-fit: cover !important;
  object-position: center !important;
  border-bottom: 1px solid rgba(8, 8, 8, 0.1) !important;
}

body #products .catalog-grid .system-family-card span {
  display: block !important;
  margin: 20px 24px 12px !important;
  color: #8a8a8a !important;
  font-size: 23px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

body #products .catalog-grid .system-family-card span::after {
  display: none !important;
}

body #products .catalog-grid .system-family-card h3 {
  margin: 0 24px 10px !important;
  text-align: left !important;
  color: #080808 !important;
  font-size: clamp(19px, 1.22vw, 24px) !important;
  line-height: 1.22 !important;
}

body #products .catalog-grid .system-family-card p {
  min-height: 0 !important;
  margin: 0 24px 16px !important;
  text-align: left !important;
  color: #6f6f6f !important;
  font-size: clamp(12px, 0.82vw, 14px) !important;
  font-weight: 700 !important;
  line-height: 1.62 !important;
}

body #products .system-tags {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  align-content: start !important;
  margin: 0 24px !important;
  padding: 0 !important;
  list-style: none !important;
}

body #products .system-tags li {
  padding: 7px 9px !important;
  border: 1px solid rgba(138, 17, 25, 0.18) !important;
  border-radius: 999px !important;
  color: #8a1119 !important;
  background: rgba(138, 17, 25, 0.045) !important;
  font-size: 12px !important;
  font-weight: 850 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

@media (max-width: 1180px) {
  body #products .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  body #products .catalog-grid {
    width: min(100% - 32px, 460px) !important;
    grid-template-columns: 1fr !important;
  }
}

/* Final home cover test: use the stainless steel kitchen image as the first viewport. */
body .page-home .hero {
  background: #050505;
}

body .page-home .hero-image {
  width: 100%;
  height: min(74vh, 760px);
  min-height: 520px;
  object-fit: cover;
  object-position: center 52%;
  filter: contrast(1.04) brightness(0.92) saturate(1.02);
}

body .page-home .hero-overlay {
  display: block;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.24) 42%, rgba(0, 0, 0, 0.08) 78%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.05) 48%, rgba(0, 0, 0, 0.2) 100%);
}

@media (max-width: 680px) {
  body .page-home .hero-image {
    height: 72vh;
    min-height: 560px;
    object-position: center 50%;
  }
}

/* Materials card editorial layout: title above, complete image below, soft gradient seam. */
body #materials .material-grid article {
  position: relative !important;
  min-height: clamp(380px, 26vw, 460px) !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: #fff !important;
  isolation: isolate !important;
}

body #materials .material-grid article::before {
  content: "" !important;
  position: absolute !important;
  inset: 36% 0 auto !important;
  height: 25% !important;
  z-index: 2 !important;
  pointer-events: none !important;
  background: linear-gradient(
    180deg,
    #fff 0%,
    rgba(255, 255, 255, 0.94) 32%,
    rgba(255, 255, 255, 0.62) 58%,
    rgba(255, 255, 255, 0.16) 82%,
    rgba(255, 255, 255, 0) 100%
  ) !important;
}

body #materials .material-grid article::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 0 auto !important;
  height: 48% !important;
  z-index: 1 !important;
  pointer-events: none !important;
  background: linear-gradient(180deg, #fff 0%, #fff 64%, rgba(255, 255, 255, 0.88) 100%) !important;
}

body #materials .material-grid article > .material-photo,
body #materials .door-finishes-card a > .material-photo {
  position: absolute !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 10 !important;
  margin: 0 !important;
  z-index: 0 !important;
  border: 0 !important;
  background: #f5f4f2 !important;
}

body #materials .material-grid article > .material-photo img,
body #materials .door-finishes-card a > .material-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center bottom !important;
}

body #materials .material-grid article h3,
body #materials .door-finishes-card a h3 {
  position: relative !important;
  z-index: 4 !important;
  display: inline-block !important;
  max-width: calc(100% - 44px) !important;
  margin: 28px 22px 0 !important;
  padding: 10px 14px 11px !important;
  color: #fff !important;
  background: #050505 !important;
  box-decoration-break: clone !important;
  -webkit-box-decoration-break: clone !important;
  font-size: clamp(20px, 1.35vw, 28px) !important;
  line-height: 1.18 !important;
}

body #materials .material-grid article p,
body #materials .door-finishes-card a p {
  position: absolute !important;
  top: 42% !important;
  right: 26px !important;
  left: 26px !important;
  z-index: 4 !important;
  max-width: none !important;
  margin: 0 !important;
  color: #5f5f5f !important;
  font-size: 13.5px !important;
  font-weight: 750 !important;
  line-height: 1.7 !important;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72) !important;
}

body #materials .door-finishes-card a {
  min-height: 100% !important;
  padding: 0 !important;
}

body #materials .door-finishes-card em {
  position: absolute !important;
  right: 74px !important;
  bottom: 30px !important;
  z-index: 4 !important;
  margin: 0 !important;
  padding: 8px 10px !important;
  background: rgba(255, 255, 255, 0.82) !important;
}

body #materials .door-finishes-card a::after {
  z-index: 4 !important;
}

@media (max-width: 900px) {
  body #materials .material-grid article {
    min-height: 390px !important;
  }
}

@media (max-width: 520px) {
  body #materials .material-grid article {
    min-height: 420px !important;
  }

  body #materials .material-grid article h3,
  body #materials .door-finishes-card a h3 {
    max-width: calc(100% - 32px) !important;
    margin: 20px 16px 0 !important;
    font-size: 21px !important;
  }

  body #materials .material-grid article p,
  body #materials .door-finishes-card a p {
    top: 40% !important;
    right: 18px !important;
    left: 18px !important;
    font-size: 12.5px !important;
  }
}

/* Home cover title: centered welcome lockup requested for the kitchen cover. */
body .page-home .hero-content {
  top: 50% !important;
  right: 50% !important;
  bottom: auto !important;
  left: auto !important;
  width: min(760px, calc(100% - 48px)) !important;
  max-width: none !important;
  display: grid !important;
  justify-items: center !important;
  padding: 0 !important;
  text-align: center !important;
  transform: translate(50%, -50%) !important;
}

body .page-home .hero .eyebrow {
  margin: 0 0 14px !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: clamp(13px, 1.05vw, 17px) !important;
  font-weight: 650 !important;
  line-height: 1.35 !important;
  letter-spacing: 0.12em !important;
  text-transform: none !important;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.62) !important;
}

body .page-home .cover-title {
  display: grid !important;
  justify-items: center !important;
  max-width: none !important;
  margin: 0 !important;
  gap: 18px !important;
}

body .page-home .cn-title {
  color: #fff !important;
  font-family: Georgia, "Times New Roman", "Songti SC", serif !important;
  font-size: clamp(58px, 9vw, 128px) !important;
  font-weight: 500 !important;
  line-height: 0.95 !important;
  letter-spacing: 0.12em !important;
  text-shadow: 0 18px 54px rgba(0, 0, 0, 0.72) !important;
}

body .page-home .en-title {
  max-width: none !important;
  padding: 0 !important;
  border: 0 !important;
  color: rgba(255, 255, 255, 0.94) !important;
  font-size: clamp(20px, 2.4vw, 36px) !important;
  font-weight: 700 !important;
  line-height: 1.22 !important;
  letter-spacing: 0.12em !important;
  text-transform: none !important;
  text-shadow: 0 12px 38px rgba(0, 0, 0, 0.66) !important;
}

body .page-home .hero-copy,
body .page-home .hero-actions,
body .page-home .hero-signature,
body .page-home .cover-badge {
  display: none !important;
}

/* Materials cards: full black title band and taller image area. */
body #materials .material-grid {
  align-items: stretch !important;
}

body #materials .material-grid article,
body #materials .door-finishes-card a {
  position: relative !important;
  display: grid !important;
  grid-template-rows: 92px 132px minmax(330px, 1fr) !important;
  min-height: clamp(570px, 38vw, 690px) !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: #fff !important;
  border: 1px solid rgba(8, 8, 8, 0.13) !important;
  border-radius: 6px !important;
  box-shadow: 0 22px 58px rgba(8, 8, 8, 0.08) !important;
}

body #materials .material-grid article.door-finishes-card {
  display: block !important;
}

body #materials .door-finishes-card a {
  width: 100% !important;
  height: 100% !important;
  color: inherit !important;
  text-decoration: none !important;
}

body #materials .material-grid article::before,
body #materials .material-grid article::after,
body #materials .door-finishes-card a::before {
  display: none !important;
}

body #materials .material-grid article h3,
body #materials .door-finishes-card a h3 {
  order: 1 !important;
  position: static !important;
  z-index: auto !important;
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 92px !important;
  margin: 0 !important;
  padding: 0 24px !important;
  color: #fff !important;
  background: #050505 !important;
  font-size: clamp(18px, 1.1vw, 23px) !important;
  font-weight: 850 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
  box-decoration-break: initial !important;
  -webkit-box-decoration-break: initial !important;
}

body #materials .material-grid article p,
body #materials .door-finishes-card a p {
  order: 2 !important;
  position: static !important;
  z-index: auto !important;
  display: flex !important;
  align-items: center !important;
  min-height: 132px !important;
  margin: 0 !important;
  padding: 20px 24px !important;
  color: rgba(255, 255, 255, 0.74) !important;
  background: #050505 !important;
  font-size: 13px !important;
  font-weight: 720 !important;
  line-height: 1.65 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
  text-shadow: none !important;
}

body #materials .material-grid article > .material-photo,
body #materials .door-finishes-card a > .material-photo {
  order: 3 !important;
  position: static !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 330px !important;
  aspect-ratio: auto !important;
  margin: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  background: #f4f4f4 !important;
}

body #materials .material-grid article > .material-photo img,
body #materials .door-finishes-card a > .material-photo img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}

body #materials .material-grid article:nth-child(1) > .material-photo img {
  object-position: center 55% !important;
}

body #materials .material-grid article:nth-child(2) > .material-photo img {
  object-position: center 54% !important;
}

body #materials .material-grid article:nth-child(3) .material-photo img {
  object-position: center 50% !important;
}

body #materials .material-grid article:nth-child(4) > .material-photo img {
  object-position: center 50% !important;
}

body #materials .door-finishes-card em {
  order: 4 !important;
  position: absolute !important;
  right: 28px !important;
  bottom: 28px !important;
  z-index: 3 !important;
  background: rgba(255, 255, 255, 0.92) !important;
}

@media (max-width: 1280px) {
  body #materials .material-grid article,
  body #materials .door-finishes-card a {
    grid-template-rows: 84px 118px minmax(300px, 1fr) !important;
    min-height: 520px !important;
  }
}

@media (max-width: 760px) {
  body #materials .material-grid article,
  body #materials .door-finishes-card a {
    grid-template-rows: 78px auto 300px !important;
    min-height: 0 !important;
  }

  body #materials .material-grid article h3,
  body #materials .door-finishes-card a h3 {
    min-height: 78px !important;
    padding: 0 18px !important;
    font-size: 18px !important;
  }

  body #materials .material-grid article p,
  body #materials .door-finishes-card a p {
    min-height: 0 !important;
    padding: 18px !important;
    font-size: 12.5px !important;
  }
}

body .page-home .hero-overlay {
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.2) 38%, rgba(0, 0, 0, 0.48) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.05) 48%, rgba(0, 0, 0, 0.26) 100%) !important;
}

/* Materials cards: image fills everything below the black title bar. */
body #materials .material-grid article,
body #materials .door-finishes-card a {
  position: relative !important;
  display: block !important;
  min-height: clamp(560px, 38vw, 680px) !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: #050505 !important;
  border: 1px solid rgba(8, 8, 8, 0.13) !important;
  border-radius: 6px !important;
  box-shadow: 0 22px 58px rgba(8, 8, 8, 0.08) !important;
}

body #materials .material-grid article.door-finishes-card {
  display: block !important;
}

body #materials .door-finishes-card a {
  width: 100% !important;
  height: 100% !important;
  color: inherit !important;
  text-decoration: none !important;
}

body #materials .material-grid article::before,
body #materials .door-finishes-card a::before {
  content: "" !important;
  position: absolute !important;
  top: 92px !important;
  right: 0 !important;
  left: 0 !important;
  z-index: 2 !important;
  display: block !important;
  height: 190px !important;
  pointer-events: none !important;
  background:
    linear-gradient(180deg, rgba(246, 246, 243, 0.9) 0%, rgba(246, 246, 243, 0.58) 52%, rgba(246, 246, 243, 0) 100%) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

body #materials .material-grid article::after {
  display: none !important;
}

body #materials .material-grid article h3,
body #materials .door-finishes-card a h3 {
  position: relative !important;
  z-index: 4 !important;
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 92px !important;
  margin: 0 !important;
  padding: 0 24px !important;
  color: #fff !important;
  background: #050505 !important;
  font-size: clamp(18px, 1.1vw, 23px) !important;
  font-weight: 850 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
  box-decoration-break: initial !important;
  -webkit-box-decoration-break: initial !important;
}

body #materials .material-grid article > .material-photo,
body #materials .door-finishes-card a > .material-photo {
  position: absolute !important;
  top: 92px !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  z-index: 1 !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
  margin: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  background: #050505 !important;
}

body #materials .material-grid article > .material-photo img,
body #materials .door-finishes-card a > .material-photo img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}

body #materials .material-grid article p,
body #materials .door-finishes-card a p {
  position: absolute !important;
  top: 132px !important;
  right: 24px !important;
  left: 24px !important;
  z-index: 4 !important;
  display: block !important;
  max-width: none !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  color: rgba(8, 8, 8, 0.66) !important;
  background: transparent !important;
  font-size: 13px !important;
  font-weight: 760 !important;
  line-height: 1.68 !important;
  text-shadow: 0 1px 14px rgba(255, 255, 255, 0.72) !important;
}

body #materials .door-finishes-card em {
  position: absolute !important;
  right: 28px !important;
  bottom: 28px !important;
  z-index: 4 !important;
  background: rgba(255, 255, 255, 0.92) !important;
}

body #materials .door-finishes-card a::after {
  z-index: 4 !important;
}

@media (max-width: 1280px) {
  body #materials .material-grid article,
  body #materials .door-finishes-card a {
    min-height: 520px !important;
  }
}

@media (max-width: 760px) {
  body #materials .material-grid article,
  body #materials .door-finishes-card a {
    min-height: 420px !important;
  }

  body #materials .material-grid article::before,
  body #materials .door-finishes-card a::before {
    top: 78px !important;
    height: 160px !important;
  }

  body #materials .material-grid article h3,
  body #materials .door-finishes-card a h3 {
    min-height: 78px !important;
    padding: 0 18px !important;
    font-size: 18px !important;
  }

  body #materials .material-grid article > .material-photo,
  body #materials .door-finishes-card a > .material-photo {
    top: 78px !important;
  }

  body #materials .material-grid article p,
  body #materials .door-finishes-card a p {
    top: 112px !important;
    right: 18px !important;
    left: 18px !important;
    font-size: 12.5px !important;
  }
}

@media (max-width: 680px) {
  body .page-home .hero-content {
    width: min(100% - 34px, 460px) !important;
  }

  body .page-home .cn-title {
    font-size: clamp(48px, 17vw, 78px) !important;
    letter-spacing: 0.08em !important;
  }

  body .page-home .en-title {
    font-size: clamp(18px, 6vw, 26px) !important;
    letter-spacing: 0.08em !important;
  }
}

/* Match the welcome line size with the subtitle line and keep language modes clean. */
body .page-home .hero .eyebrow {
  font-size: clamp(20px, 2.4vw, 36px) !important;
  font-weight: 700 !important;
  line-height: 1.22 !important;
  letter-spacing: 0.12em !important;
}

@media (max-width: 680px) {
  body .page-home .hero .eyebrow {
    font-size: clamp(18px, 6vw, 26px) !important;
    letter-spacing: 0.08em !important;
  }
}

/* Hard lock: welcome line and subtitle use the exact same type size. */
body .page-home {
  --home-cover-small-line: clamp(24px, 2.7vw, 40px);
}

body .page-home .hero .eyebrow,
body .page-home .en-title {
  font-size: var(--home-cover-small-line) !important;
  font-weight: 700 !important;
  line-height: 1.22 !important;
  letter-spacing: 0.1em !important;
}

@media (max-width: 680px) {
  body .page-home {
    --home-cover-small-line: clamp(18px, 6vw, 26px);
  }
}

/* Header logo frame: white outlined FADIOR block. */
body .site-header .brand {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 214px !important;
  height: 70px !important;
  padding: 0 28px !important;
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, 0.9) !important;
  background: transparent !important;
}

body .site-header .brand-logo {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 152px !important;
  min-height: 38px !important;
  padding: 0 20px !important;
  border: 2px solid rgba(255, 255, 255, 0.92) !important;
  color: #fff !important;
  background: transparent !important;
}

body .site-header .brand-logo em {
  display: block !important;
  padding: 0 !important;
  color: #fff !important;
  border: 0 !important;
  font-family: Inter, Arial, sans-serif !important;
  font-size: 20px !important;
  font-style: normal !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
}

@media (max-width: 760px) {
  body .site-header .brand {
    min-width: 168px !important;
    height: 56px !important;
    padding: 0 18px !important;
  }

  body .site-header .brand-logo {
    min-width: 118px !important;
    min-height: 30px !important;
    padding: 0 14px !important;
  }

  body .site-header .brand-logo em {
    font-size: 16px !important;
  }
}

/* Product systems: quieter catalog rhythm with centered number-title rows. */
body #products .catalog-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: flex-start !important;
  gap: clamp(34px, 3vw, 52px) clamp(24px, 2.2vw, 36px) !important;
  width: min(100% - 96px, 1760px) !important;
  margin-inline: auto !important;
  padding-top: clamp(20px, 2.4vw, 36px) !important;
  padding-bottom: clamp(84px, 8vw, 136px) !important;
}

body #products .catalog-grid article {
  flex: 0 1 clamp(300px, 21vw, 408px) !important;
  max-width: 420px !important;
  min-width: 0 !important;
  display: block !important;
  text-align: center !important;
}

body #products .catalog-grid .product-photo {
  width: 100% !important;
  aspect-ratio: 16 / 10 !important;
  height: auto !important;
  margin: 0 0 18px !important;
  border-radius: 6px !important;
  overflow: hidden !important;
  box-shadow: 0 18px 44px rgba(8, 8, 8, 0.08) !important;
}

body #products .catalog-grid span,
body #products .catalog-grid h3 {
  display: inline !important;
  vertical-align: baseline !important;
}

body #products .catalog-grid span {
  margin: 0 8px 0 0 !important;
  color: #8a8a8a !important;
  font-size: clamp(20px, 1.65vw, 30px) !important;
  font-weight: 900 !important;
  line-height: 1.18 !important;
  letter-spacing: 0 !important;
}

body #products .catalog-grid span::after {
  content: "" !important;
}

body #products .catalog-grid h3 {
  margin: 0 !important;
  color: #070707 !important;
  font-size: clamp(17px, 1.05vw, 22px) !important;
  font-weight: 900 !important;
  line-height: 1.28 !important;
  letter-spacing: 0 !important;
}

body #products .catalog-grid p {
  max-width: 320px !important;
  min-height: 0 !important;
  margin: 10px auto 0 !important;
  color: #747474 !important;
  font-size: 13px !important;
  font-weight: 650 !important;
  line-height: 1.65 !important;
  text-align: center !important;
}

@media (max-width: 1280px) {
  body #products .catalog-grid {
    width: min(100% - 56px, 1080px) !important;
  }

  body #products .catalog-grid article {
    flex-basis: clamp(286px, 30vw, 336px) !important;
  }
}

@media (max-width: 760px) {
  body #products .catalog-grid {
    width: min(100% - 32px, 480px) !important;
    gap: 28px !important;
  }

  body #products .catalog-grid article {
    flex-basis: 100% !important;
    max-width: 100% !important;
  }
}

/* Final lock for materials cards: black upper band + long image. */
body #materials .material-grid article {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  min-height: clamp(570px, 38vw, 690px) !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: #050505 !important;
  border: 1px solid rgba(8, 8, 8, 0.13) !important;
  border-radius: 6px !important;
  box-shadow: 0 22px 58px rgba(8, 8, 8, 0.08) !important;
}

body #materials .material-grid article::before,
body #materials .material-grid article::after,
body #materials .door-finishes-card a::before,
body #materials .door-finishes-card a::after {
  display: none !important;
}

body #materials .material-grid article.door-finishes-card {
  display: block !important;
}

body #materials .door-finishes-card a {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  height: 100% !important;
  min-height: clamp(570px, 38vw, 690px) !important;
  padding: 0 !important;
  color: inherit !important;
  text-decoration: none !important;
  background: #050505 !important;
}

body #materials .material-grid article h3,
body #materials .door-finishes-card a h3 {
  order: 1 !important;
  position: static !important;
  z-index: auto !important;
  display: flex !important;
  align-items: center !important;
  flex: 0 0 90px !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 24px !important;
  color: #fff !important;
  background: #050505 !important;
  font-size: clamp(18px, 1.1vw, 23px) !important;
  font-weight: 850 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
  box-decoration-break: initial !important;
  -webkit-box-decoration-break: initial !important;
}

body #materials .material-grid article p,
body #materials .door-finishes-card a p {
  order: 2 !important;
  position: static !important;
  z-index: auto !important;
  display: flex !important;
  align-items: flex-start !important;
  flex: 0 0 104px !important;
  max-width: none !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 24px 24px !important;
  color: rgba(255, 255, 255, 0.72) !important;
  background: #050505 !important;
  border-top: 0 !important;
  font-size: 13px !important;
  font-weight: 650 !important;
  line-height: 1.62 !important;
  text-shadow: none !important;
}

body #materials .material-grid article > .material-photo,
body #materials .door-finishes-card a > .material-photo {
  order: 3 !important;
  position: static !important;
  z-index: auto !important;
  flex: 1 1 auto !important;
  width: 100% !important;
  min-height: 360px !important;
  height: auto !important;
  aspect-ratio: auto !important;
  margin: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  background: #f4f4f4 !important;
}

body #materials .material-grid article > .material-photo img,
body #materials .door-finishes-card a > .material-photo img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}

body #materials .door-finishes-card em {
  position: absolute !important;
  right: 28px !important;
  bottom: 28px !important;
  z-index: 3 !important;
  background: rgba(255, 255, 255, 0.94) !important;
}

@media (max-width: 1280px) {
  body #materials .material-grid article,
  body #materials .door-finishes-card a {
    min-height: 520px !important;
  }

  body #materials .material-grid article h3,
  body #materials .door-finishes-card a h3 {
    flex-basis: 82px !important;
  }

  body #materials .material-grid article p,
  body #materials .door-finishes-card a p {
    flex-basis: 96px !important;
  }
}

@media (max-width: 760px) {
  body #materials .material-grid article,
  body #materials .door-finishes-card a {
    min-height: 0 !important;
  }

  body #materials .material-grid article h3,
  body #materials .door-finishes-card a h3 {
    flex-basis: 78px !important;
    padding: 0 18px !important;
    font-size: 18px !important;
  }

  body #materials .material-grid article p,
  body #materials .door-finishes-card a p {
    flex-basis: auto !important;
    padding: 0 18px 18px !important;
    font-size: 12.5px !important;
  }

  body #materials .material-grid article > .material-photo,
  body #materials .door-finishes-card a > .material-photo {
    flex: 0 0 320px !important;
    min-height: 320px !important;
  }
}

/* Home hero typography trial: refined serif style inspired by premium furniture editorials. */
body .page-home .hero .eyebrow,
body .page-home .cn-title,
body .page-home .en-title {
  font-family: "Playfair Display", Georgia, "Times New Roman", "Songti SC", "STSong", serif !important;
  color: rgba(255, 255, 255, 0.96) !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.58) !important;
}

body .page-home .hero .eyebrow {
  margin-bottom: 8px !important;
  font-size: 42px !important;
  line-height: 1.08 !important;
}

body .page-home .cn-title {
  font-size: 118px !important;
  font-weight: 600 !important;
  line-height: 0.94 !important;
}

body .page-home .en-title {
  max-width: 900px !important;
  font-size: 42px !important;
  font-weight: 600 !important;
  line-height: 1.15 !important;
}

body .page-home .cover-title {
  gap: 12px !important;
}

@media (max-width: 900px) {
  body .page-home .hero .eyebrow,
  body .page-home .en-title {
    font-size: 32px !important;
  }

  body .page-home .cn-title {
    font-size: 86px !important;
  }
}

@media (max-width: 680px) {
  body .page-home .hero .eyebrow,
  body .page-home .en-title {
    font-size: 24px !important;
  }

  body .page-home .cn-title {
    font-size: 62px !important;
  }
}

/* Absolute final home hero brand word: elegant uppercase FADIOR with soft shadow. */
body .page-home .cover-title {
  gap: clamp(12px, 1.2vw, 18px) !important;
}

body .page-home .cn-title {
  display: block !important;
  color: transparent !important;
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f2ec 42%, #c9c2b5 55%, #ffffff 78%, #d9d9d9 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  font-family: "Bodoni 72", Didot, "Bodoni 72 Smallcaps", Georgia, "Times New Roman", serif !important;
  font-size: clamp(72px, 9.2vw, 142px) !important;
  font-weight: 500 !important;
  line-height: 0.92 !important;
  letter-spacing: 0.075em !important;
  text-transform: uppercase !important;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.18),
    0 12px 26px rgba(0, 0, 0, 0.58),
    0 28px 72px rgba(0, 0, 0, 0.64),
    0 0 24px rgba(255, 255, 255, 0.18) !important;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.52)) !important;
}

body .page-home .en-title {
  text-shadow:
    0 8px 22px rgba(0, 0, 0, 0.62),
    0 0 16px rgba(255, 255, 255, 0.14) !important;
}

@media (max-width: 760px) {
  body .page-home .cn-title {
    font-size: clamp(56px, 17vw, 86px) !important;
    letter-spacing: 0.045em !important;
  }
}

/* Absolute EOF lock: brand title is compact and the headquarters building sits to the right. */
body #brand .brand-editorial {
  grid-template-columns: minmax(0, 760px) 1fr !important;
  padding: clamp(84px, 8vw, 124px) clamp(42px, 6vw, 120px) !important;
}

body #brand .brand-visual img {
  object-position: 38% 50% !important;
  transform: scale(1.01) !important;
  filter: saturate(1.03) contrast(1.03) brightness(0.94) !important;
}

body #brand .brand-copy {
  max-width: 980px !important;
}

body #brand .brand-copy h1 {
  max-width: none !important;
  margin-bottom: 24px !important;
  font-size: clamp(28px, 2.45vw, 42px) !important;
  line-height: 1.16 !important;
  white-space: nowrap !important;
}

body #brand .brand-copy p:not(.eyebrow) {
  max-width: 640px !important;
}

@media (max-width: 1180px) {
  body #brand .brand-copy h1 {
    font-size: clamp(24px, 2.55vw, 32px) !important;
  }
}

@media (max-width: 860px) {
  body #brand .brand-copy h1 {
    white-space: normal !important;
  }

  body #brand .brand-visual img {
    object-position: 52% 50% !important;
  }
}

/* Advantages comparison: make the Fadior white-background frame photo fill its card. */
body #advantages .layout-annotated .steel-panel .structure-photo {
  display: block !important;
  background: #fff !important;
}

body #advantages .layout-annotated .steel-panel .structure-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: 50% 50% !important;
  transform: scale(1.16) !important;
}

/* Product and material rhythm audit: balanced card proportions, no forced empty viewport gap. */
body #products,
body #materials {
  min-height: 0 !important;
}

body #products > .page-hero.compact,
body #materials > .page-hero.compact {
  width: min(100% - 76px, 1760px) !important;
  min-height: 0 !important;
  padding-top: clamp(24px, 2.4vw, 38px) !important;
  padding-bottom: clamp(18px, 1.7vw, 28px) !important;
}

body #products .catalog-grid {
  width: min(100% - 76px, 1760px) !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(18px, 1.7vw, 28px) !important;
  padding-top: clamp(24px, 2vw, 34px) !important;
  padding-bottom: clamp(42px, 4vw, 68px) !important;
}

body #products .catalog-grid article.system-family-card {
  display: grid !important;
  grid-template-rows: 42% auto auto 1fr !important;
  min-height: clamp(500px, 31vw, 610px) !important;
  padding: 0 0 24px !important;
}

body #products .catalog-grid .system-family-photo {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  border-bottom: 1px solid rgba(8, 8, 8, 0.09) !important;
}

body #products .catalog-grid article.system-family-card > span {
  margin: 22px 28px 12px !important;
  font-size: clamp(22px, 1.55vw, 30px) !important;
}

body #products .catalog-grid article.system-family-card > h3 {
  margin: 0 28px 12px !important;
  font-size: clamp(20px, 1.28vw, 25px) !important;
  line-height: 1.18 !important;
}

body #products .catalog-grid article.system-family-card > p {
  margin: 0 28px 18px !important;
  font-size: clamp(12px, 0.78vw, 14px) !important;
  line-height: 1.55 !important;
}

body #products .catalog-grid article.system-family-card .system-tags {
  align-self: start !important;
  margin: 0 28px !important;
  gap: 9px 8px !important;
}

body #products .catalog-grid article.system-family-card .system-tags li {
  padding: 7px 10px !important;
  font-size: 12px !important;
}

body #materials > .page-hero.compact {
  margin-top: 0 !important;
}

body #materials .material-grid {
  padding-top: clamp(24px, 2vw, 34px) !important;
}

@media (max-width: 1180px) {
  body #products .catalog-grid {
    width: min(100% - 44px, 980px) !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  body #products > .page-hero.compact,
  body #materials > .page-hero.compact,
  body #products .catalog-grid {
    width: min(100% - 32px, 460px) !important;
  }

  body #products .catalog-grid {
    grid-template-columns: 1fr !important;
  }

  body #products .catalog-grid article.system-family-card {
    grid-template-rows: 230px auto auto 1fr !important;
    min-height: 0 !important;
  }
}

/* Brand page final cover: remove fact strip and turn headquarters image into a full-bleed proof cover. */
body #brand {
  background: #050505 !important;
}

body #brand .brand-editorial {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(0, 680px) 1fr !important;
  align-items: center !important;
  width: 100% !important;
  max-width: none !important;
  min-height: calc(100vh - 52px) !important;
  margin: 0 !important;
  padding: clamp(90px, 10vw, 150px) clamp(34px, 6vw, 110px) !important;
  overflow: hidden !important;
  border: 0 !important;
  background: #050505 !important;
}

body #brand .brand-visual {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #050505 !important;
}

body #brand .brand-visual img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: 58% 50% !important;
  transform: scale(1.08) !important;
  filter: saturate(1.04) contrast(1.04) brightness(0.92) !important;
}

body #brand .brand-visual::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.72) 28%, rgba(0, 0, 0, 0.36) 54%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.04) 42%, rgba(0, 0, 0, 0.5) 100%) !important;
}

body #brand .brand-visual figcaption {
  display: none !important;
}

body #brand .brand-copy {
  position: relative !important;
  z-index: 1 !important;
  max-width: 660px !important;
  padding: 0 !important;
  color: #fff !important;
  text-align: left !important;
  background: transparent !important;
}

body #brand .brand-copy .eyebrow {
  color: rgba(255, 255, 255, 0.78) !important;
  letter-spacing: 0.26em !important;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.62) !important;
}

body #brand .brand-copy h1 {
  max-width: 650px !important;
  color: #fff !important;
  font-size: clamp(42px, 4.8vw, 78px) !important;
  line-height: 1.06 !important;
  letter-spacing: 0 !important;
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.72) !important;
}

body #brand .brand-copy p:not(.eyebrow) {
  max-width: 560px !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: clamp(15px, 1.12vw, 19px) !important;
  line-height: 1.82 !important;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.68) !important;
}

body #brand .brand-editorial > .brand-facts {
  display: none !important;
}

@media (max-width: 860px) {
  body #brand .brand-editorial {
    grid-template-columns: 1fr !important;
    min-height: calc(100vh - 50px) !important;
    padding: 92px 24px 74px !important;
  }

  body #brand .brand-visual img {
    object-position: 62% 50% !important;
  }

  body #brand .brand-visual::after {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.66) 54%, rgba(0, 0, 0, 0.18) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0.2) 42%, rgba(0, 0, 0, 0.72) 100%) !important;
  }
}

/* Homepage bottom proof strip: brand facts over the cover with translucent backing. */
body .page-home .hero {
  position: relative !important;
  min-height: calc(100vh - 92px) !important;
  overflow: hidden !important;
}

body .page-home .hero-image {
  height: calc(100vh - 92px) !important;
  min-height: 720px !important;
}

/* Brand page adjustment: smaller one-line title and headquarters shifted to the right. */
body #brand .brand-editorial {
  grid-template-columns: minmax(0, 760px) 1fr !important;
  padding: clamp(84px, 8vw, 124px) clamp(42px, 6vw, 120px) !important;
}

body #brand .brand-visual img {
  object-position: 38% 50% !important;
  transform: scale(1.01) !important;
  filter: saturate(1.03) contrast(1.03) brightness(0.94) !important;
}

body #brand .brand-copy {
  max-width: 980px !important;
}

body #brand .brand-copy h1 {
  max-width: none !important;
  margin-bottom: 24px !important;
  font-size: clamp(28px, 2.45vw, 42px) !important;
  line-height: 1.16 !important;
  white-space: nowrap !important;
}

body #brand .brand-copy p:not(.eyebrow) {
  max-width: 640px !important;
}

@media (max-width: 1180px) {
  body #brand .brand-copy h1 {
    font-size: clamp(24px, 2.55vw, 32px) !important;
  }
}

@media (max-width: 860px) {
  body #brand .brand-copy h1 {
    white-space: normal !important;
  }

  body #brand .brand-visual img {
    object-position: 52% 50% !important;
  }
}

body .page-home .hero::after {
  content: "" !important;
  position: absolute !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  z-index: 2 !important;
  height: 30% !important;
  pointer-events: none !important;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0), rgba(5, 5, 5, 0.72) 72%, rgba(5, 5, 5, 0.9)) !important;
}

body .page-home .hero-facts {
  position: absolute !important;
  right: clamp(28px, 4.8vw, 96px) !important;
  bottom: clamp(24px, 3.2vw, 56px) !important;
  left: clamp(28px, 4.8vw, 96px) !important;
  z-index: 6 !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
  overflow: hidden !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  border-radius: 0 !important;
  background: linear-gradient(90deg, rgba(179, 154, 118, 0.56), rgba(218, 196, 168, 0.4)) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28) !important;
  backdrop-filter: blur(10px) saturate(1.08) !important;
  -webkit-backdrop-filter: blur(10px) saturate(1.08) !important;
}

body .page-home .hero-facts article {
  min-width: 0 !important;
  padding: clamp(18px, 1.9vw, 30px) clamp(18px, 2.1vw, 36px) !important;
  border-right: 1px solid rgba(255, 255, 255, 0.22) !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

body .page-home .hero-facts article:last-child {
  border-right: 0 !important;
}

body .page-home .hero-facts span {
  display: block !important;
  margin: 0 0 10px !important;
  color: #8a1119 !important;
  font-size: clamp(13px, 1vw, 17px) !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
}

body .page-home .hero-facts strong {
  display: block !important;
  margin: 0 0 8px !important;
  color: #fff !important;
  font-size: clamp(18px, 1.55vw, 30px) !important;
  font-weight: 900 !important;
  line-height: 1.18 !important;
  letter-spacing: 0 !important;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28) !important;
}

body .page-home .hero-facts p {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: clamp(12px, 0.9vw, 15px) !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.24) !important;
}

body .page-home > .trust-strip {
  display: none !important;
}

@media (max-width: 980px) {
  body .page-home .hero-image {
    min-height: 800px !important;
  }

  body .page-home .hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body .page-home .hero-facts article:nth-child(2) {
    border-right: 0 !important;
  }

  body .page-home .hero-facts article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.22) !important;
  }
}

@media (max-width: 620px) {
  body .page-home .hero-image {
    min-height: 860px !important;
  }

  body .page-home .hero-facts {
    right: 18px !important;
    bottom: 20px !important;
    left: 18px !important;
    grid-template-columns: 1fr !important;
  }

  body .page-home .hero-facts article {
    padding: 16px 18px !important;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
  }

  body .page-home .hero-facts article:last-child {
    border-bottom: 0 !important;
  }
}

/* Final compact homepage proof bar: number + title in one row, no subtitle text. */
body .page-home .hero {
  min-height: calc(100vh - 92px) !important;
}

body .page-home .hero-image {
  height: calc(100vh - 92px) !important;
  min-height: 640px !important;
}

body .page-home .hero-facts {
  right: clamp(18px, 3.2vw, 72px) !important;
  bottom: clamp(10px, 1.4vw, 22px) !important;
  left: clamp(18px, 3.2vw, 72px) !important;
  min-height: 0 !important;
  background: linear-gradient(90deg, rgba(182, 163, 132, 0.5), rgba(216, 195, 166, 0.36)) !important;
}

body .page-home .hero-facts article {
  display: flex !important;
  align-items: center !important;
  gap: clamp(12px, 1.2vw, 20px) !important;
  min-height: 0 !important;
  padding: clamp(14px, 1.35vw, 22px) clamp(16px, 1.8vw, 30px) !important;
}

body .page-home .hero-facts span {
  flex: 0 0 auto !important;
  margin: 0 !important;
  font-size: clamp(14px, 1.05vw, 18px) !important;
  letter-spacing: 0.18em !important;
}

body .page-home .hero-facts strong {
  flex: 1 1 auto !important;
  margin: 0 !important;
  font-size: clamp(17px, 1.35vw, 25px) !important;
  line-height: 1.18 !important;
  white-space: nowrap !important;
}

body .page-home .hero-facts p {
  display: none !important;
}

@media (max-width: 980px) {
  body .page-home .hero-image {
    min-height: 720px !important;
  }

  body .page-home .hero-facts article {
    padding: 14px 18px !important;
  }
}

@media (max-width: 620px) {
  body .page-home .hero-image {
    min-height: 780px !important;
  }

  body .page-home .hero-facts article {
    gap: 12px !important;
  }

  body .page-home .hero-facts strong {
    white-space: normal !important;
  }
}

/* Absolute final lock: CBDA certificate proof card full-bleed cover. */
body #partners .proof-photo {
  height: clamp(310px, 24vw, 420px) !important;
  background: #111 !important;
}

body #partners .proof-grid article:nth-child(2) .proof-photo img,
body #partners .proof-grid article:nth-child(3) .proof-photo img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  background: #111 !important;
}

@media (max-width: 760px) {
  body #partners .proof-photo {
    height: 260px !important;
  }
}

/* Final proof image lock: use full-bleed website covers for partner proof cards. */
body #partners .proof-photo {
  height: clamp(310px, 24vw, 420px) !important;
  background: #111 !important;
}

body #partners .proof-grid article:nth-child(2) .proof-photo img,
body #partners .proof-grid article:nth-child(3) .proof-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  background: #111 !important;
}

body #partners .proof-grid article:nth-child(2) .proof-photo img {
  object-position: 50% 50% !important;
}

@media (max-width: 760px) {
  body #partners .proof-photo {
    height: 260px !important;
  }
}

/* Partners proof cards: make proof images read like website covers, not PDF thumbnails. */
body #partners .proof-photo {
  height: clamp(300px, 24vw, 410px) !important;
  background: #0b0b0b !important;
}

body #partners .proof-grid article:nth-child(2) .proof-photo img,
body #partners .proof-grid article:nth-child(3) .proof-photo img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  background: #0b0b0b !important;
}

body #partners .proof-grid article:nth-child(3) .proof-photo img {
  object-position: 50% 50% !important;
}

body #partners .proof-grid article:nth-child(1) .proof-photo img {
  object-fit: cover !important;
  object-position: 50% 50% !important;
}

@media (max-width: 760px) {
  body #partners .proof-photo {
    height: 260px !important;
  }
}

/* Final header lock: remove outer logo frame and slim the black navigation bar. */
body .site-header {
  min-height: 52px !important;
  padding: 6px 24px !important;
  gap: 16px !important;
}

body .site-header .brand {
  min-width: auto !important;
  height: 40px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

body .site-header .brand-logo {
  min-width: 138px !important;
  min-height: 34px !important;
  padding: 0 18px !important;
  border: 0 !important;
}

body .site-header .brand-logo em {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif !important;
  font-size: 24px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
}

body .site-header .main-nav a {
  padding: 8px 8px !important;
  font-size: 12px !important;
  line-height: 1 !important;
}

body .site-header .language-trigger,
body .site-header .whatsapp-cta {
  min-height: 34px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

@media (max-width: 760px) {
  body .site-header {
    min-height: 50px !important;
    padding: 6px 16px !important;
  }

  body .site-header .brand {
    height: 36px !important;
  }

  body .site-header .brand-logo {
    min-width: 118px !important;
    min-height: 30px !important;
    padding: 0 14px !important;
  }

  body .site-header .brand-logo em {
    font-size: 21px !important;
  }
}

/* True final product-system overview: four image cards, one row on desktop. */
body #products .catalog-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  justify-content: stretch !important;
  align-items: stretch !important;
  gap: 22px !important;
  width: min(100% - 76px, 1760px) !important;
  margin-inline: auto !important;
  padding-top: 18px !important;
  padding-bottom: 70px !important;
}

body #products .catalog-grid article.system-family-card {
  display: grid !important;
  grid-template-rows: auto auto auto auto 1fr !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  flex: none !important;
  min-height: 0 !important;
  padding: 0 0 22px !important;
  overflow: hidden !important;
  border: 1px solid rgba(8, 8, 8, 0.11) !important;
  border-radius: 8px !important;
  background: #fff !important;
  text-align: left !important;
  box-shadow: 0 18px 46px rgba(8, 8, 8, 0.045) !important;
}

body #products .catalog-grid .system-family-photo {
  display: block !important;
  width: 100% !important;
  aspect-ratio: 1.48 / 1 !important;
  height: auto !important;
  object-fit: cover !important;
  object-position: center !important;
  border-bottom: 1px solid rgba(8, 8, 8, 0.1) !important;
}

body #products .catalog-grid article.system-family-card > span,
body #products .catalog-grid article.system-family-card > h3 {
  display: block !important;
  text-align: left !important;
}

body #products .catalog-grid article.system-family-card > span {
  margin: 20px 24px 12px !important;
  color: #8a8a8a !important;
  font-size: 23px !important;
  line-height: 1 !important;
}

body #products .catalog-grid article.system-family-card > span::after {
  content: none !important;
  display: none !important;
}

body #products .catalog-grid article.system-family-card > h3 {
  margin: 0 24px 10px !important;
  color: #080808 !important;
  font-size: clamp(19px, 1.22vw, 24px) !important;
  line-height: 1.22 !important;
}

body #products .catalog-grid article.system-family-card > p {
  max-width: none !important;
  min-height: 0 !important;
  margin: 0 24px 16px !important;
  color: #6f6f6f !important;
  font-size: clamp(12px, 0.82vw, 14px) !important;
  font-weight: 700 !important;
  line-height: 1.62 !important;
  text-align: left !important;
}

body #products .catalog-grid article.system-family-card .system-tags {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  align-content: start !important;
  margin: 0 24px !important;
  padding: 0 !important;
  list-style: none !important;
}

body #products .catalog-grid article.system-family-card .system-tags li {
  padding: 7px 9px !important;
  border: 1px solid rgba(138, 17, 25, 0.18) !important;
  border-radius: 999px !important;
  color: #8a1119 !important;
  background: rgba(138, 17, 25, 0.045) !important;
  font-size: 12px !important;
  font-weight: 850 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

@media (max-width: 1180px) {
  body #products .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: min(100% - 44px, 980px) !important;
  }
}

@media (max-width: 680px) {
  body #products .catalog-grid {
    grid-template-columns: 1fr !important;
    width: min(100% - 32px, 460px) !important;
  }
}

/* Materials cards: keep images clean, with only a small top glass fade for the subtitle. */
body #materials .material-grid article::before,
body #materials .door-finishes-card a::before {
  top: 92px !important;
  height: 82px !important;
  background:
    linear-gradient(180deg, rgba(246, 246, 243, 0.82) 0%, rgba(246, 246, 243, 0.5) 54%, rgba(246, 246, 243, 0) 100%) !important;
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
}

body #materials .material-grid article p,
body #materials .door-finishes-card a p {
  top: 112px !important;
  right: 24px !important;
  left: 24px !important;
  max-width: calc(100% - 48px) !important;
  color: rgba(8, 8, 8, 0.72) !important;
  font-size: 12.5px !important;
  line-height: 1.52 !important;
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.58) !important;
}

body #materials .material-grid article > .material-photo img,
body #materials .door-finishes-card a > .material-photo img {
  filter: none !important;
}

@media (max-width: 760px) {
  body #materials .material-grid article::before,
  body #materials .door-finishes-card a::before {
    top: 78px !important;
    height: 76px !important;
  }

  body #materials .material-grid article p,
  body #materials .door-finishes-card a p {
    top: 96px !important;
    right: 18px !important;
    left: 18px !important;
    max-width: calc(100% - 36px) !important;
    font-size: 12px !important;
  }
}

/* Final materials lock: subtitle floats on the top edge of the image, not in a black band. */
body #materials .material-grid article,
body #materials .door-finishes-card a {
  position: relative !important;
  display: block !important;
  min-height: clamp(520px, 34vw, 640px) !important;
  background: #050505 !important;
}

body #materials .material-grid article h3,
body #materials .door-finishes-card a h3 {
  position: relative !important;
  z-index: 5 !important;
  display: flex !important;
  align-items: center !important;
  height: 90px !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 24px !important;
  background: #050505 !important;
}

body #materials .material-grid article > .material-photo,
body #materials .door-finishes-card a > .material-photo {
  position: absolute !important;
  inset: 90px 0 0 0 !important;
  z-index: 1 !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
}

body #materials .material-grid article::before,
body #materials .door-finishes-card a::before {
  content: "" !important;
  position: absolute !important;
  top: 90px !important;
  right: 0 !important;
  left: 0 !important;
  z-index: 3 !important;
  display: block !important;
  height: 74px !important;
  pointer-events: none !important;
  background:
    linear-gradient(180deg, rgba(245, 244, 240, 0.78) 0%, rgba(245, 244, 240, 0.46) 54%, rgba(245, 244, 240, 0) 100%) !important;
  backdrop-filter: blur(3px) !important;
  -webkit-backdrop-filter: blur(3px) !important;
}

body #materials .material-grid article p,
body #materials .door-finishes-card a p {
  position: absolute !important;
  top: 110px !important;
  right: 24px !important;
  left: 24px !important;
  z-index: 5 !important;
  display: block !important;
  max-width: calc(100% - 48px) !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  color: rgba(8, 8, 8, 0.74) !important;
  background: transparent !important;
  font-size: 12.5px !important;
  font-weight: 760 !important;
  line-height: 1.5 !important;
  text-shadow: 0 1px 9px rgba(255, 255, 255, 0.5) !important;
}

@media (max-width: 760px) {
  body #materials .material-grid article,
  body #materials .door-finishes-card a {
    min-height: 430px !important;
  }

  body #materials .material-grid article h3,
  body #materials .door-finishes-card a h3 {
    height: 78px !important;
    padding: 0 18px !important;
  }

  body #materials .material-grid article > .material-photo,
  body #materials .door-finishes-card a > .material-photo {
    inset: 78px 0 0 0 !important;
  }

  body #materials .material-grid article::before,
  body #materials .door-finishes-card a::before {
    top: 78px !important;
    height: 68px !important;
  }

  body #materials .material-grid article p,
  body #materials .door-finishes-card a p {
    top: 94px !important;
    right: 18px !important;
    left: 18px !important;
    max-width: calc(100% - 36px) !important;
    font-size: 12px !important;
  }
}

/* True final materials layout: full black upper block and taller image. */
body #materials .material-grid article {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  min-height: clamp(570px, 38vw, 690px) !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: #050505 !important;
}

body #materials .material-grid article::before,
body #materials .material-grid article::after,
body #materials .door-finishes-card a::before,
body #materials .door-finishes-card a::after {
  content: none !important;
  display: none !important;
}

body #materials .material-grid article.door-finishes-card {
  display: block !important;
}

body #materials .door-finishes-card a {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  height: 100% !important;
  min-height: clamp(570px, 38vw, 690px) !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: #050505 !important;
  color: inherit !important;
  text-decoration: none !important;
}

body #materials .material-grid article h3,
body #materials .door-finishes-card a h3 {
  order: 1 !important;
  position: static !important;
  z-index: auto !important;
  display: flex !important;
  align-items: center !important;
  flex: 0 0 90px !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 24px !important;
  color: #fff !important;
  background: #050505 !important;
  font-size: clamp(18px, 1.1vw, 23px) !important;
  font-weight: 850 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
}

body #materials .material-grid article p,
body #materials .door-finishes-card a p {
  order: 2 !important;
  position: static !important;
  z-index: auto !important;
  display: flex !important;
  align-items: flex-start !important;
  flex: 0 0 104px !important;
  max-width: none !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 24px 24px !important;
  color: rgba(255, 255, 255, 0.72) !important;
  background: #050505 !important;
  font-size: 13px !important;
  font-weight: 650 !important;
  line-height: 1.62 !important;
  text-shadow: none !important;
}

body #materials .material-grid article > .material-photo,
body #materials .door-finishes-card a > .material-photo {
  order: 3 !important;
  position: static !important;
  z-index: auto !important;
  flex: 1 1 auto !important;
  width: 100% !important;
  min-height: 360px !important;
  height: auto !important;
  aspect-ratio: auto !important;
  margin: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  background: #f4f4f4 !important;
}

body #materials .material-grid article > .material-photo img,
body #materials .door-finishes-card a > .material-photo img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  filter: none !important;
}

body #materials .door-finishes-card em {
  position: absolute !important;
  right: 28px !important;
  bottom: 28px !important;
  z-index: 3 !important;
  background: rgba(255, 255, 255, 0.94) !important;
}

@media (max-width: 760px) {
  body #materials .material-grid article,
  body #materials .door-finishes-card a {
    min-height: 0 !important;
  }

  body #materials .material-grid article h3,
  body #materials .door-finishes-card a h3 {
    flex-basis: 78px !important;
    padding: 0 18px !important;
    font-size: 18px !important;
  }

  body #materials .material-grid article p,
  body #materials .door-finishes-card a p {
    flex-basis: auto !important;
    padding: 0 18px 18px !important;
    font-size: 12.5px !important;
  }

  body #materials .material-grid article > .material-photo,
  body #materials .door-finishes-card a > .material-photo {
    flex: 0 0 320px !important;
    min-height: 320px !important;
  }
}

/* Absolute EOF lock: homepage FADIOR wordmark style. */
body .page-home .cover-title {
  gap: clamp(12px, 1.2vw, 18px) !important;
}

body .page-home .cn-title {
  display: block !important;
  color: transparent !important;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f4ee 40%, #c8c0b2 55%, #ffffff 78%, #dcdcdc 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  font-family: "Bodoni 72", Didot, "Bodoni 72 Smallcaps", Georgia, "Times New Roman", serif !important;
  font-size: clamp(72px, 9.2vw, 142px) !important;
  font-weight: 500 !important;
  line-height: 0.92 !important;
  letter-spacing: 0.075em !important;
  text-transform: uppercase !important;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.2),
    0 12px 26px rgba(0, 0, 0, 0.58),
    0 28px 72px rgba(0, 0, 0, 0.64),
    0 0 24px rgba(255, 255, 255, 0.18) !important;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.52)) !important;
}

body .page-home .en-title {
  text-shadow:
    0 8px 22px rgba(0, 0, 0, 0.62),
    0 0 16px rgba(255, 255, 255, 0.14) !important;
}

@media (max-width: 760px) {
  body .page-home .cn-title {
    font-size: clamp(56px, 17vw, 86px) !important;
    letter-spacing: 0.045em !important;
  }
}

/* Final homepage viewport lock: desktop cover fills the first screen without showing the next section. */
@media (min-width: 761px) {
  body .page-home .hero {
    min-height: calc(100svh - 52px) !important;
  }

  body .page-home .hero-image {
    height: calc(100svh - 52px) !important;
    min-height: 640px !important;
  }
}

@media (max-width: 760px) {
  body .page-home .hero {
    min-height: calc(100svh - 50px) !important;
  }

  body .page-home .hero-image {
    height: calc(100svh - 50px) !important;
  }
}

/* Absolute EOF lock: product system page fills one viewport before materials begins. */
@media (min-width: 761px) {
  body #products {
    display: flex !important;
    flex-direction: column !important;
    min-height: calc(100svh - 52px) !important;
    padding-bottom: 0 !important;
  }

  body #products > .page-hero.compact {
    flex: 0 0 auto !important;
    padding-top: clamp(20px, 2.1vw, 34px) !important;
    padding-bottom: clamp(16px, 1.4vw, 24px) !important;
  }

  body #products > .page-hero.compact h1 {
    font-size: clamp(24px, 2.1vw, 34px) !important;
    line-height: 1.18 !important;
  }

  body #products .catalog-grid {
    flex: 1 1 auto !important;
    align-content: stretch !important;
    padding-top: clamp(20px, 1.7vw, 30px) !important;
    padding-bottom: clamp(26px, 2.4vw, 42px) !important;
  }

  body #products .catalog-grid article.system-family-card {
    height: 100% !important;
    min-height: 0 !important;
    grid-template-rows: minmax(250px, 44%) auto auto 1fr !important;
  }
}

/* Partner logo wall: fuller composition with larger brand marks and less empty white space. */
body #partners .partner-logo-wall {
  width: min(100% - 76px, 1760px) !important;
  display: grid !important;
  grid-template-columns: minmax(250px, 0.24fr) minmax(0, 1fr) !important;
  gap: clamp(28px, 3vw, 54px) !important;
  align-items: center !important;
  margin: 40px auto 96px !important;
  padding: 42px 0 0 !important;
}

body #partners .partner-logo-intro {
  align-self: center !important;
}

/* Product cards: keep copy attached to image, remove the empty band under photos. */
body #products .catalog-grid article.system-family-card {
  grid-template-rows: auto auto auto minmax(0, auto) 1fr !important;
  align-content: start !important;
}

body #products .catalog-grid .system-family-photo {
  aspect-ratio: 1.48 / 1 !important;
}

body #products .catalog-grid article.system-family-card > span {
  margin: clamp(18px, 1.25vw, 24px) 24px 8px !important;
  font-size: clamp(25px, 1.9vw, 34px) !important;
}

body #products .catalog-grid article.system-family-card > h3 {
  margin: 0 24px 12px !important;
  font-size: clamp(22px, 1.55vw, 30px) !important;
}

body #products .catalog-grid article.system-family-card > p {
  margin: 0 24px 18px !important;
}

body #products .catalog-grid article.system-family-card .system-tags {
  align-self: end !important;
  margin-top: auto !important;
}

@media (min-width: 981px) {
  body #products .catalog-grid article.system-family-card {
    grid-template-rows: auto auto auto minmax(0, auto) 1fr !important;
  }
}

body #partners .partner-logo-intro h2 {
  max-width: 420px !important;
  font-size: clamp(28px, 2.15vw, 42px) !important;
  line-height: 1.08 !important;
}

body #partners .partner-logo-intro p:not(.eyebrow) {
  max-width: 420px !important;
  margin-top: 16px !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
}

body #partners .partner-logo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
}

body #partners .partner-logo-card {
  grid-template-rows: minmax(110px, 1fr) auto !important;
  min-height: clamp(164px, 10.5vw, 210px) !important;
  padding: 24px 28px 20px !important;
  border-radius: 8px !important;
}

body #partners .partner-logo-card img {
  max-width: min(270px, 88%) !important;
  max-height: 88px !important;
}

body #partners .partner-logo-card:nth-child(1) img {
  max-width: min(230px, 82%) !important;
  max-height: 78px !important;
}

body #partners .partner-logo-card:nth-child(3) img {
  max-width: min(300px, 92%) !important;
  max-height: 96px !important;
}

body #partners .partner-logo-card span,
body #partners .partner-logo-card strong {
  font-size: 13.5px !important;
}

body #partners .partner-logo-text strong {
  font-size: clamp(22px, 1.55vw, 30px) !important;
}

@media (max-width: 980px) {
  body #partners .partner-logo-wall {
    width: min(100% - 44px, 980px) !important;
    grid-template-columns: 1fr !important;
  }

  body #partners .partner-logo-intro h2,
  body #partners .partner-logo-intro p:not(.eyebrow) {
    max-width: 760px !important;
  }
}

@media (max-width: 680px) {
  body #partners .partner-logo-wall {
    width: min(100% - 32px, 460px) !important;
  }

  body #partners .partner-logo-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Partner logo cards: the logo fills the upper canvas, with the brand name below. */
body #partners .partner-logo-card {
  display: grid !important;
  grid-template-rows: 1fr 34px !important;
  min-height: clamp(178px, 11.4vw, 230px) !important;
  padding: 20px 26px 16px !important;
  place-items: stretch !important;
}

body #partners .partner-logo-card img,
body #partners .partner-logo-text strong {
  align-self: center !important;
  justify-self: center !important;
}

body #partners .partner-logo-card img {
  width: 100% !important;
  max-width: 92% !important;
  height: 100% !important;
  max-height: 112px !important;
  object-fit: contain !important;
}

body #partners .partner-logo-card:nth-child(1) img {
  max-width: 78% !important;
  max-height: 118px !important;
}

body #partners .partner-logo-card:nth-child(2) img,
body #partners .partner-logo-card:nth-child(4) img {
  max-width: 94% !important;
  max-height: 86px !important;
}

body #partners .partner-logo-card:nth-child(3) img {
  max-width: 88% !important;
  max-height: 124px !important;
}

body #partners .partner-logo-card:nth-child(5) img {
  max-width: 72% !important;
  max-height: 118px !important;
}

body #partners .partner-logo-card span {
  align-self: end !important;
  justify-self: center !important;
  display: block !important;
  min-height: 20px !important;
  margin: 0 !important;
  color: rgba(8, 8, 8, 0.58) !important;
  font-size: 13px !important;
  font-weight: 850 !important;
  line-height: 1.2 !important;
  text-align: center !important;
}

body #partners .partner-logo-text {
  grid-template-rows: 1fr 34px !important;
}

body #partners .partner-logo-text strong {
  color: #080808 !important;
  font-size: clamp(28px, 2vw, 42px) !important;
  line-height: 1 !important;
}

/* Partner logo cards: border belongs to the logo canvas only; names sit below the box. */
body #partners .partner-logo-card {
  display: grid !important;
  grid-template-rows: clamp(176px, 11.4vw, 230px) auto !important;
  gap: 14px !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

body #partners .partner-logo-card img,
body #partners .partner-logo-text strong {
  box-sizing: border-box !important;
  display: grid !important;
  place-items: center !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 18px 28px !important;
  border: 1px solid rgba(8, 8, 8, 0.12) !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 18px 46px rgba(8, 8, 8, 0.045) !important;
  object-fit: contain !important;
  object-position: center !important;
}

body #partners .partner-logo-card:nth-child(1) img,
body #partners .partner-logo-card:nth-child(2) img,
body #partners .partner-logo-card:nth-child(3) img,
body #partners .partner-logo-card:nth-child(4) img,
body #partners .partner-logo-card:nth-child(5) img {
  max-width: none !important;
  max-height: none !important;
}

body #partners .partner-logo-card span {
  align-self: start !important;
  justify-self: center !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  color: rgba(8, 8, 8, 0.58) !important;
  background: transparent !important;
  font-size: 14px !important;
  font-weight: 850 !important;
  line-height: 1.25 !important;
  text-align: center !important;
}

body #partners .partner-logo-text {
  grid-template-rows: clamp(176px, 11.4vw, 230px) auto !important;
}

body #partners .partner-logo-text strong {
  align-self: stretch !important;
  justify-self: stretch !important;
  color: #080808 !important;
  font-size: clamp(36px, 2.7vw, 58px) !important;
}

/* Partner logo fill lock: colored logo art must cover the entire upper canvas. */
body #partners .partner-logo-card:nth-child(1) img,
body #partners .partner-logo-card:nth-child(5) img {
  padding: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
}

body #partners .partner-logo-card:nth-child(1) img {
  background: #ff671f !important;
}

body #partners .partner-logo-card:nth-child(5) img {
  background: #86684b !important;
}

/* Partner logo section spacing lock: keep it clean, compact, and product-led. */
body #partners .proof-grid {
  padding-bottom: 34px !important;
}

body #partners .partner-logo-wall {
  grid-template-columns: minmax(250px, 0.22fr) minmax(0, 1fr) !important;
  gap: 30px !important;
  margin: 0 auto 34px !important;
  padding-top: 18px !important;
}

body #partners .partner-logo-intro h2 {
  display: none !important;
}

body #partners .partner-logo-intro .eyebrow {
  margin-bottom: 22px !important;
}

body #partners .partner-logo-intro p:not(.eyebrow) {
  max-width: 330px !important;
  margin-top: 0 !important;
}

body #partners .partner-logo-grid {
  row-gap: 24px !important;
}

body #partners .partner-logo-card {
  grid-template-rows: clamp(164px, 10.4vw, 210px) auto !important;
  gap: 12px !important;
}

body #partners .partner-logo-card span {
  font-size: 13px !important;
}

body #partners .partner-logo-intro {
  align-self: start !important;
  padding-top: 8px !important;
}

/* Partners page viewport lock: one landscape screen, no previous/next page peeking. */
body #partners {
  box-sizing: border-box !important;
  display: grid !important;
  align-items: center !important;
  min-height: calc(100svh - 76px) !important;
  padding: 0 !important;
  overflow: hidden !important;
  scroll-margin-top: 76px !important;
}

body #partners > .page-hero.compact,
body #partners > .proof-grid {
  display: none !important;
}

body #partners .partner-logo-wall {
  width: min(100% - 76px, 1840px) !important;
  min-height: calc(100svh - 132px) !important;
  margin: 0 auto !important;
  padding: clamp(24px, 3vh, 38px) 0 clamp(26px, 3.2vh, 42px) !important;
  align-items: center !important;
  align-content: center !important;
  border-top: 1px solid rgba(8, 8, 8, 0.12) !important;
}

body #partners .partner-logo-grid {
  align-content: center !important;
  row-gap: clamp(24px, 3.5vh, 42px) !important;
}

body #partners .partner-logo-card {
  grid-template-rows: clamp(188px, 23vh, 254px) auto !important;
  gap: clamp(10px, 1.4vh, 16px) !important;
}

body #partners .partner-logo-card:nth-child(2) img {
  padding: 10px 18px !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: none !important;
}

body #partners .partner-logo-card:nth-child(4) img {
  padding: 18px 28px !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: none !important;
}

body #partners .partner-logo-card:nth-child(6) img {
  padding: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
  transform: none !important;
}

/* Materials image polish: use cleaner proof images and make the door-finish color card easier to read. */
body #materials .material-grid article:nth-child(1) > .material-photo img {
  object-fit: contain !important;
  object-position: center !important;
  padding: 0 !important;
  background: #fff !important;
}

body #materials .material-grid article:nth-child(2) > .material-photo img {
  object-fit: contain !important;
  object-position: center !important;
  padding: 18px !important;
  background: #fff !important;
}

body #materials .material-grid article:nth-child(3) .material-photo img {
  object-fit: contain !important;
  object-position: center !important;
  padding: 4px !important;
  background: #fff !important;
  transform: scale(1.14) !important;
}

body #materials .material-grid article:nth-child(4) > .material-photo img {
  object-fit: contain !important;
  object-position: center !important;
  padding: 4px !important;
  background: #fff !important;
  transform: scale(1.08) !important;
}

/* Final partners one-screen override. */
html body main section.page#partners > div.page-hero.compact {
  display: none !important;
  position: absolute !important;
  visibility: hidden !important;
  pointer-events: none !important;
  height: 0 !important;
  min-height: 0 !important;
  max-height: 0 !important;
  width: 0 !important;
  max-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

html body main section.page#partners {
  min-height: calc(100svh - 53px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

html body main section.page#partners .partner-logo-wall {
  min-height: calc(100svh - 92px) !important;
}

/* Partners page final: show only the logo wall in one full landscape screen. */
html body main section.page#partners {
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: calc(100svh - 53px) !important;
  padding: 0 !important;
  overflow: hidden !important;
  scroll-margin-top: 53px !important;
}

html body main section.page#partners > div.page-hero.compact {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

html body main section.page#partners > div.proof-grid {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

html body main section.page#partners .partner-logo-wall {
  width: min(100% - 76px, 1840px) !important;
  min-height: calc(100svh - 92px) !important;
  margin: 0 auto !important;
  padding: clamp(24px, 3vh, 38px) 0 clamp(26px, 3.2vh, 42px) !important;
  align-items: center !important;
  align-content: center !important;
}

/* Partner cards: use unified typographic marks when source logo images are inconsistent. */
html body main section.page#partners .partner-logo-card.partner-wordmark {
  grid-template-rows: clamp(188px, 23vh, 254px) auto !important;
  gap: clamp(10px, 1.4vh, 16px) !important;
}

html body main section.page#partners .partner-wordmark strong {
  box-sizing: border-box !important;
  display: grid !important;
  place-items: center !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 18px 28px !important;
  border: 1px solid rgba(8, 8, 8, 0.12) !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 18px 46px rgba(8, 8, 8, 0.045) !important;
  color: #111 !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: clamp(38px, 4vw, 76px) !important;
  font-weight: 900 !important;
  letter-spacing: 0.02em !important;
  line-height: 1 !important;
  text-transform: none !important;
  overflow: hidden !important;
  white-space: nowrap !important;
}

html body main section.page#partners .partner-blum strong {
  background: #ff671f !important;
  color: #fff !important;
  font-style: italic !important;
  font-size: clamp(56px, 5.2vw, 104px) !important;
  letter-spacing: -0.04em !important;
}

html body main section.page#partners .partner-higold strong {
  color: #0d48a6 !important;
}

html body main section.page#partners .partner-kesse strong {
  font-size: clamp(42px, 4.1vw, 78px) !important;
  letter-spacing: 0.04em !important;
  line-height: 0.9 !important;
  text-align: center !important;
}

html body main section.page#partners .partner-kesse img {
  box-sizing: border-box !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  padding: clamp(24px, 3vw, 46px) !important;
  border: 1px solid rgba(8, 8, 8, 0.12) !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 18px 46px rgba(8, 8, 8, 0.045) !important;
  object-fit: contain !important;
  object-position: center !important;
}

html body main section.page#partners .partner-gelandi strong {
  color: #78be20 !important;
  font-size: clamp(42px, 4.1vw, 78px) !important;
}

html body main section.page#partners .partner-basistem strong {
  background: #86684b !important;
  color: #fff !important;
  font-size: clamp(42px, 3.8vw, 72px) !important;
}

html body main section.page#partners .partner-peka strong {
  color: #84c6df !important;
  font-size: clamp(48px, 4.7vw, 90px) !important;
}

/* Partners page: tighter landscape logo-wall proportion. */
html body main section.page#partners {
  align-items: flex-start !important;
  min-height: auto !important;
  padding: clamp(18px, 2.2vh, 28px) 0 clamp(32px, 4vh, 52px) !important;
  overflow: visible !important;
}

html body main section.page#partners .partner-logo-wall {
  width: min(100% - 76px, 1840px) !important;
  min-height: 0 !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(230px, 330px) minmax(0, 1fr) !important;
  gap: clamp(22px, 2vw, 34px) !important;
  align-items: start !important;
}

html body main section.page#partners .partner-logo-intro {
  align-self: start !important;
  padding-top: clamp(8px, 1vh, 14px) !important;
  max-width: 360px !important;
}

html body main section.page#partners .partner-logo-intro h2 {
  display: none !important;
}

html body main section.page#partners .partner-logo-intro .eyebrow {
  margin: 0 0 clamp(28px, 4.6vh, 46px) !important;
}

html body main section.page#partners .partner-logo-intro p:not(.eyebrow) {
  max-width: 330px !important;
  margin: 0 !important;
  font-size: clamp(15px, 1vw, 18px) !important;
  line-height: 1.65 !important;
}

html body main section.page#partners .partner-logo-grid {
  grid-column: 2 / -1 !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(22px, 2vh, 30px) clamp(24px, 1.7vw, 34px) !important;
  align-items: start !important;
}

html body main section.page#partners .partner-logo-card.partner-wordmark {
  grid-template-rows: clamp(130px, 14.5vh, 166px) auto !important;
  gap: clamp(8px, 1vh, 12px) !important;
}

html body main section.page#partners .partner-wordmark strong,
html body main section.page#partners .partner-kesse img {
  aspect-ratio: 16 / 6 !important;
  min-height: clamp(130px, 14.5vh, 166px) !important;
  max-height: clamp(130px, 14.5vh, 166px) !important;
}

html body main section.page#partners .partner-wordmark strong {
  font-size: clamp(36px, 3.25vw, 62px) !important;
}

html body main section.page#partners .partner-blum strong {
  font-size: clamp(52px, 4.2vw, 78px) !important;
}

html body main section.page#partners .partner-higold strong,
html body main section.page#partners .partner-gelandi strong,
html body main section.page#partners .partner-basistem strong {
  font-size: clamp(42px, 3.6vw, 68px) !important;
}

html body main section.page#partners .partner-peka strong {
  font-size: clamp(48px, 4vw, 76px) !important;
}

html body main section.page#partners .partner-logo-card span {
  font-size: clamp(15px, 1vw, 18px) !important;
  line-height: 1.2 !important;
}

@media (max-width: 980px) {
  html body main section.page#partners .partner-logo-wall {
    width: min(100% - 36px, 720px) !important;
    display: block !important;
  }

  html body main section.page#partners .partner-logo-intro {
    max-width: none !important;
    margin-bottom: 22px !important;
  }

  html body main section.page#partners .partner-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
  }
}

/* Materials cards: remove the oversized black description band so proof images start right under the title. */
body #materials .material-grid article,
body #materials .door-finishes-card a {
  min-height: clamp(500px, 34vw, 620px) !important;
}

body #materials .material-grid article h3,
body #materials .door-finishes-card a h3 {
  flex: 0 0 92px !important;
}

body #materials .material-grid article p,
body #materials .door-finishes-card a p {
  display: none !important;
}

body #materials .material-grid article > .material-photo,
body #materials .door-finishes-card a > .material-photo {
  flex: 1 1 auto !important;
  min-height: 410px !important;
  background: #fff !important;
}

body #materials .door-finishes-card em {
  bottom: 24px !important;
}

@media (max-width: 760px) {
  body #materials .material-grid article,
  body #materials .door-finishes-card a {
    min-height: 420px !important;
  }

  body #materials .material-grid article h3,
  body #materials .door-finishes-card a h3 {
    flex-basis: 78px !important;
  }

  body #materials .material-grid article > .material-photo,
  body #materials .door-finishes-card a > .material-photo {
    min-height: 342px !important;
  }
}

/* Project cases: country covers with flag title and image-only gallery. */
body.case-gallery-open {
  overflow: hidden !important;
}

body #cases .case-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(18px, 1.8vw, 28px) !important;
}

body #cases .project-case-card {
  padding: 0 !important;
  overflow: hidden !important;
  border: 1px solid rgba(20, 20, 20, 0.12) !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.08) !important;
}

body #cases .project-case-card button {
  width: 100% !important;
  height: 100% !important;
  display: grid !important;
  grid-template-rows: minmax(230px, 18vw) auto auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: #fff !important;
  color: inherit !important;
  text-align: left !important;
  cursor: pointer !important;
}

body #cases .project-case-card .case-photo {
  width: 100% !important;
  height: 100% !important;
  min-height: 230px !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}

body #cases .project-case-card h3 {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 24px 28px 8px !important;
  color: #151515 !important;
  font-size: clamp(22px, 1.45vw, 30px) !important;
  line-height: 1.18 !important;
  letter-spacing: 0 !important;
}

body #cases .project-case-card h3 span {
  font-size: 1.1em !important;
  line-height: 1 !important;
}

body #cases .project-case-card p {
  margin: 0 !important;
  padding: 0 28px 24px !important;
  color: #777 !important;
  font-size: clamp(15px, 0.9vw, 18px) !important;
  font-weight: 700 !important;
}

body #cases .project-case-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.13) !important;
}

.case-gallery-modal[hidden] {
  display: none !important;
}

.case-gallery-modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 2000 !important;
}

.case-gallery-backdrop {
  position: absolute !important;
  inset: 0 !important;
  border: 0 !important;
  background: rgba(0, 0, 0, 0.58) !important;
  cursor: pointer !important;
}

.case-gallery-panel {
  position: absolute !important;
  inset: clamp(18px, 3vw, 44px) !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35) !important;
}

.case-gallery-header {
  flex: 0 0 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  padding: 18px clamp(18px, 2.4vw, 34px) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
  background: #fff !important;
}

.case-gallery-header h2 {
  margin: 0 !important;
  color: #111 !important;
  font-size: clamp(24px, 2vw, 38px) !important;
  line-height: 1.15 !important;
  letter-spacing: 0 !important;
}

.case-gallery-header button {
  width: 44px !important;
  height: 44px !important;
  border: 1px solid rgba(0, 0, 0, 0.14) !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #111 !important;
  font-size: 30px !important;
  line-height: 1 !important;
  cursor: pointer !important;
}

.case-gallery-images {
  flex: 1 1 auto !important;
  overflow-y: auto !important;
  padding: clamp(18px, 2.4vw, 34px) !important;
  background: #f7f7f5 !important;
}

.case-gallery-images figure {
  margin: 0 0 clamp(18px, 2vw, 30px) !important;
  background: #fff !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.08) !important;
}

.case-gallery-images img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
}

@media (max-width: 980px) {
  body #cases .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  body #cases .case-grid {
    grid-template-columns: 1fr !important;
  }

  body #cases .project-case-card button {
    grid-template-rows: minmax(210px, 56vw) auto auto !important;
  }

  .case-gallery-panel {
    inset: 10px !important;
  }
}

/* Steel-frame comparison image: white base, centered, and filled inside the photo area. */
body #advantages .layout-annotated .steel-panel .structure-photo {
  background: #fff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

body #advantages .layout-annotated .steel-panel .structure-photo img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  background: #fff !important;
  padding: 0 !important;
  transform: scale(1.28) !important;
  transform-origin: center center !important;
}

/* Case gallery preview: keep large project images at a comfortable viewing scale. */
.case-gallery-panel {
  inset: clamp(34px, 5vw, 76px) clamp(54px, 8vw, 132px) !important;
}

.case-gallery-images {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: clamp(20px, 2.2vw, 34px) !important;
  padding: clamp(26px, 3vw, 48px) !important;
}

.case-gallery-images figure {
  width: min(100%, 1180px) !important;
  margin: 0 !important;
  border-radius: 6px !important;
}

.case-gallery-images img {
  width: 100% !important;
  max-height: calc(100svh - 260px) !important;
  object-fit: contain !important;
  background: #fff !important;
}

@media (max-width: 980px) {
  .case-gallery-panel {
    inset: 18px !important;
  }

  .case-gallery-images figure {
    width: 100% !important;
  }
}

/* Case gallery final: show complete images, not cropped strips. */
.case-gallery-images figure {
  display: block !important;
  width: min(100%, 1120px) !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: clamp(10px, 1vw, 16px) !important;
  overflow: visible !important;
  background: #fff !important;
}

.case-gallery-images img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: calc(100svh - 300px) !important;
  object-fit: contain !important;
  object-position: center !important;
}

.case-gallery-images > .case-gallery-image {
  box-sizing: border-box !important;
  display: block !important;
  width: min(100%, 1120px) !important;
  height: auto !important;
  max-height: calc(100svh - 300px) !important;
  margin: 0 !important;
  padding: clamp(10px, 1vw, 16px) !important;
  border-radius: 6px !important;
  background: #fff !important;
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.08) !important;
  object-fit: contain !important;
  object-position: center !important;
}

/* Case gallery target ratio: larger modal, calmer image preview like a catalog viewer. */
.case-gallery-panel {
  inset: clamp(78px, 9vh, 112px) clamp(96px, 8vw, 168px) clamp(78px, 9vh, 112px) !important;
  border-radius: 8px !important;
}

.case-gallery-header {
  min-height: 86px !important;
  padding: 20px clamp(34px, 3.2vw, 54px) !important;
}

.case-gallery-images {
  gap: clamp(28px, 3vh, 42px) !important;
  padding: clamp(34px, 4vh, 58px) clamp(42px, 4vw, 72px) !important;
}

.case-gallery-images .case-gallery-frame {
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: min(100%, 1580px) !important;
  min-height: clamp(480px, 56vh, 600px) !important;
  margin: 0 !important;
  padding: clamp(24px, 3vh, 42px) !important;
  overflow: visible !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.07) !important;
}

.case-gallery-images .case-gallery-frame .case-gallery-image {
  width: auto !important;
  max-width: min(100%, 760px) !important;
  height: auto !important;
  max-height: clamp(430px, 52vh, 560px) !important;
  margin: 0 auto !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  object-fit: contain !important;
  object-position: center !important;
}

@media (max-width: 980px) {
  .case-gallery-panel {
    inset: 18px !important;
  }

  .case-gallery-images .case-gallery-frame {
    min-height: 420px !important;
    padding: 20px !important;
  }

  .case-gallery-images .case-gallery-frame .case-gallery-image {
    max-width: 100% !important;
    max-height: 520px !important;
  }
}

/* Cases page: match the narrower outer frame requested in the marked screenshot. */
body #cases > .page-hero.compact,
body #cases .case-layout {
  width: min(100% - 168px, 1880px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (max-width: 980px) {
  body #cases > .page-hero.compact,
  body #cases .case-layout {
    width: min(100% - 48px, 920px) !important;
  }
}

@media (max-width: 640px) {
  body #cases > .page-hero.compact,
  body #cases .case-layout {
    width: min(100% - 32px, 520px) !important;
  }
}

/* Cases page: final narrower desktop frame based on the marked reference. */
@media (min-width: 981px) {
  body #cases > .page-hero.compact,
  body #cases .case-layout {
    width: min(calc(100% - clamp(260px, 17.6vw, 360px)), 1688px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* Cases page: flatten the title/detail band under each project image. */
body #cases .project-case-card button {
  grid-template-rows: minmax(230px, 18vw) min-content min-content !important;
}

body #cases .project-case-card h3 {
  padding: 16px 28px 4px !important;
  font-size: clamp(21px, 1.36vw, 28px) !important;
  line-height: 1.12 !important;
}

body #cases .project-case-card p {
  padding: 0 28px 16px !important;
  font-size: clamp(14px, 0.82vw, 17px) !important;
  line-height: 1.2 !important;
}

/* Advantages page: final balanced comparison band based on the marked reference. */
body #advantages .structure-visual-compare.layout-annotated {
  width: min(calc(100% - clamp(32px, 2.4vw, 52px)), 1980px) !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns:
    minmax(320px, 0.9fr)
    minmax(360px, 1.1fr)
    minmax(360px, 1.1fr)
    minmax(320px, 0.9fr) !important;
  gap: clamp(20px, 1.55vw, 32px) !important;
  align-items: stretch !important;
  padding: 10px 0 clamp(48px, 4.8vw, 82px) !important;
}

body #advantages .layout-annotated .compare-column {
  min-height: clamp(600px, 35vw, 680px) !important;
  padding: clamp(20px, 1.45vw, 28px) clamp(22px, 1.55vw, 30px) !important;
  border-radius: 0 !important;
  justify-content: flex-start !important;
  box-shadow: none !important;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif !important;
}

body #advantages .layout-annotated .compare-column.competitor {
  background: #fff !important;
  border: 1px solid rgba(15, 15, 15, 0.08) !important;
}

body #advantages .layout-annotated .compare-column.fadior {
  background:
    linear-gradient(135deg, rgba(138, 17, 25, 0.045), rgba(255, 255, 255, 0.98) 58%),
    #fff !important;
  border: 1px solid rgba(138, 17, 25, 0.16) !important;
}

body #advantages .layout-annotated .compare-label {
  margin: 0 0 clamp(12px, 1vw, 18px) !important;
  color: #7d7d7d !important;
  font-size: clamp(12px, 0.7vw, 14px) !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  line-height: 1.25 !important;
  text-transform: none !important;
}

body #advantages .layout-annotated .compare-column article {
  display: grid !important;
  grid-template-columns: clamp(42px, 2.85vw, 56px) 1fr !important;
  column-gap: clamp(14px, 1vw, 20px) !important;
  padding: clamp(14px, 1.05vw, 21px) 0 !important;
  border-bottom: 1px solid rgba(15, 15, 15, 0.1) !important;
}

body #advantages .layout-annotated .compare-column article:first-of-type {
  padding-top: 0 !important;
}

body #advantages .layout-annotated .compare-column article > span {
  color: #b9b9b9 !important;
  font-size: clamp(28px, 1.95vw, 38px) !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  font-variant-numeric: tabular-nums !important;
}

body #advantages .layout-annotated .compare-column.fadior article > span,
body #advantages .layout-annotated .compare-column.fadior .compare-label {
  color: #99141c !important;
}

body #advantages .layout-annotated .compare-column strong {
  color: #151515 !important;
  font-size: clamp(19px, 1.18vw, 24px) !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  line-height: 1.22 !important;
}

body #advantages .layout-annotated .compare-column p:not(.compare-label) {
  grid-column: 2 !important;
  max-width: 24em !important;
  margin: clamp(9px, 0.72vw, 14px) 0 0 !important;
  color: #707070 !important;
  font-size: clamp(13px, 0.78vw, 16px) !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  line-height: 1.58 !important;
}

body #advantages .layout-annotated .structure-panel {
  min-height: clamp(600px, 35vw, 680px) !important;
  display: grid !important;
  grid-template-rows: auto 1fr !important;
  gap: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: #fff !important;
  border: 1px solid rgba(15, 15, 15, 0.1) !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

body #advantages .layout-annotated .steel-panel {
  border-color: rgba(138, 17, 25, 0.18) !important;
  background:
    linear-gradient(135deg, rgba(138, 17, 25, 0.04), rgba(255, 255, 255, 0.98) 52%),
    #fff !important;
}

body #advantages .layout-annotated .structure-panel figcaption {
  min-height: 92px !important;
  padding: clamp(18px, 1.25vw, 24px) clamp(20px, 1.45vw, 28px) 14px !important;
  border-bottom: 1px solid rgba(15, 15, 15, 0.08) !important;
}

body #advantages .layout-annotated .structure-panel figcaption span {
  color: #8a8a8a !important;
  font-size: clamp(12px, 0.68vw, 14px) !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  line-height: 1.25 !important;
}

body #advantages .layout-annotated .structure-panel figcaption strong {
  margin-top: 8px !important;
  color: #121212 !important;
  font-size: clamp(22px, 1.4vw, 29px) !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  line-height: 1.12 !important;
}

body #advantages .layout-annotated .steel-panel figcaption span,
body #advantages .layout-annotated .steel-panel figcaption strong {
  color: #99141c !important;
}

body #advantages .layout-annotated .structure-photo,
body #advantages .layout-annotated .steel-panel .structure-photo {
  width: calc(100% - clamp(42px, 2.7vw, 54px)) !important;
  aspect-ratio: 4 / 5 !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  margin: clamp(16px, 1.15vw, 22px) auto clamp(18px, 1.25vw, 24px) !important;
  display: block !important;
  overflow: hidden !important;
  border-radius: 8px !important;
  border: 1px solid rgba(15, 15, 15, 0.12) !important;
  background: #f8f8f6 !important;
}

body #advantages .layout-annotated .structure-photo img,
body #advantages .layout-annotated .steel-panel .structure-photo img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  padding: 0 !important;
  transform: none !important;
}

body #advantages .layout-annotated .honeycomb-panel .structure-photo img {
  object-position: 50% 49% !important;
}

body #advantages .layout-annotated .steel-panel .structure-photo img {
  object-position: 50% 50% !important;
}

@media (max-width: 1380px) {
  body #advantages .structure-visual-compare.layout-annotated {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body #advantages .layout-annotated .compare-column,
  body #advantages .layout-annotated .structure-panel {
    min-height: 0 !important;
  }
}

@media (max-width: 760px) {
  body #advantages .structure-visual-compare.layout-annotated {
    width: min(100% - 28px, 520px) !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  body #advantages .layout-annotated .compare-column {
    padding: 22px 20px !important;
  }

  body #advantages .layout-annotated .compare-column article {
    grid-template-columns: 46px 1fr !important;
  }

  body #advantages .layout-annotated .structure-photo,
  body #advantages .layout-annotated .steel-panel .structure-photo {
    width: calc(100% - 32px) !important;
  }
}

/* Cases page: use the flatter project-card ratio from the marked reference. */
@media (min-width: 981px) {
  body #cases > .page-hero.compact,
  body #cases .case-layout {
    width: min(calc(100% - clamp(330px, 20vw, 408px)), 1640px) !important;
  }

  body #cases .case-grid {
    gap: clamp(30px, 2vw, 40px) clamp(30px, 2vw, 40px) !important;
  }

  body #cases .project-case-card button {
    grid-template-rows: clamp(220px, 12.8vw, 260px) min-content min-content !important;
  }

  body #cases .project-case-card .case-photo {
    min-height: 0 !important;
    height: clamp(220px, 12.8vw, 260px) !important;
  }

  body #cases .project-case-card h3 {
    padding: 17px 30px 4px !important;
    font-size: clamp(22px, 1.32vw, 27px) !important;
  }

  body #cases .project-case-card p {
    padding: 0 30px 18px !important;
  }
}

/* Cases page: compact one-screen layout with title and all six cases visible. */
body #cases > .page-hero.compact {
  padding-top: clamp(22px, 2.5vw, 34px) !important;
  padding-bottom: clamp(14px, 1.4vw, 22px) !important;
}

body #cases > .page-hero.compact h1 {
  max-width: 920px !important;
  font-size: clamp(26px, 2.45vw, 40px) !important;
  line-height: 1.12 !important;
}

body #cases > .page-hero.compact p:not(.eyebrow) {
  max-width: 680px !important;
  margin-top: 10px !important;
  font-size: 12.5px !important;
  line-height: 1.45 !important;
}

body #cases > .page-hero.compact h1,
body #cases > .page-hero.compact p:not(.eyebrow) {
  display: none !important;
}

/* Cases page: refined intro copy, compact but no longer empty. */
body #cases > .page-hero.compact h1,
body #cases > .page-hero.compact p:not(.eyebrow) {
  display: block !important;
}

body #cases > .page-hero.compact {
  display: grid !important;
  grid-template-columns: minmax(160px, 0.42fr) minmax(320px, 1fr) !important;
  column-gap: clamp(34px, 4vw, 72px) !important;
  row-gap: 8px !important;
  align-items: end !important;
  padding-top: clamp(22px, 2.2vw, 34px) !important;
  padding-bottom: clamp(18px, 1.9vw, 28px) !important;
  border-bottom: 1px solid rgba(15, 15, 15, 0.14) !important;
}

body #cases > .page-hero.compact .eyebrow {
  grid-row: 1 / span 2 !important;
  align-self: center !important;
  margin: 0 !important;
}

body #cases > .page-hero.compact h1 {
  margin: 0 !important;
  max-width: none !important;
  font-size: clamp(22px, 1.85vw, 32px) !important;
  line-height: 1.16 !important;
}

body #cases > .page-hero.compact p:not(.eyebrow) {
  margin: 4px 0 0 !important;
  max-width: 760px !important;
  color: #777 !important;
  font-size: clamp(12.5px, 0.82vw, 15px) !important;
  font-weight: 700 !important;
  line-height: 1.48 !important;
}

body #cases .project-case-card p {
  display: none !important;
}

@media (min-width: 981px) {
  body #cases .case-grid {
    gap: clamp(20px, 1.35vw, 26px) clamp(30px, 2vw, 40px) !important;
  }

  body #cases .project-case-card button {
    grid-template-rows: clamp(185px, 11.2vw, 220px) min-content !important;
  }

  body #cases .project-case-card .case-photo {
    height: clamp(185px, 11.2vw, 220px) !important;
  }

  body #cases .project-case-card h3 {
    padding: 13px 24px 14px !important;
    gap: 8px !important;
    color: #fff !important;
    background: #050505 !important;
    font-size: clamp(17px, 1vw, 20px) !important;
    line-height: 1.12 !important;
  }

  body #cases .project-case-card h3 span {
    font-size: 0.98em !important;
  }
}

/* Advantages page: force one-screen, two-product comparison on laptop/desktop widths. */
body #advantages {
  overflow-x: hidden !important;
}

body #advantages .page-hero.compact {
  width: min(calc(100% - 48px), 1880px) !important;
  padding-top: clamp(18px, 2.2svh, 30px) !important;
  padding-bottom: clamp(12px, 1.8svh, 20px) !important;
}

body #advantages .page-hero.compact .eyebrow {
  margin-bottom: 8px !important;
  font-size: clamp(12px, 0.72vw, 14px) !important;
  line-height: 1.2 !important;
}

body #advantages .page-hero.compact h1 {
  max-width: 980px !important;
  margin: 0 !important;
  font-size: clamp(24px, 2.15vw, 36px) !important;
  line-height: 1.14 !important;
}

body #advantages .page-hero.compact p:not(.eyebrow) {
  max-width: 1040px !important;
  margin-top: 10px !important;
  font-size: clamp(12px, 0.78vw, 15px) !important;
  line-height: 1.45 !important;
}

body #advantages .structure-visual-compare.layout-annotated {
  width: min(calc(100% - 48px), 1880px) !important;
  grid-template-columns:
    minmax(180px, 0.86fr)
    minmax(210px, 1fr)
    minmax(210px, 1fr)
    minmax(180px, 0.86fr) !important;
  gap: clamp(10px, 1.15vw, 20px) !important;
  align-items: stretch !important;
  padding: clamp(12px, 1.6svh, 18px) 0 clamp(16px, 2svh, 28px) !important;
}

body #advantages .layout-annotated .compare-column,
body #advantages .layout-annotated .structure-panel {
  min-height: 0 !important;
  height: clamp(460px, calc(100svh - 245px), 690px) !important;
}

body #advantages .layout-annotated .compare-column {
  padding: clamp(12px, 1.05vw, 20px) clamp(12px, 1.2vw, 24px) !important;
  overflow: hidden !important;
}

body #advantages .layout-annotated .compare-label {
  margin-bottom: clamp(8px, 0.8vw, 14px) !important;
  font-size: clamp(11px, 0.68vw, 13px) !important;
}

body #advantages .layout-annotated .compare-column article {
  grid-template-columns: clamp(34px, 3.2vw, 52px) 1fr !important;
  column-gap: clamp(10px, 0.95vw, 18px) !important;
  padding: clamp(7px, 0.82svh, 13px) 0 !important;
}

body #advantages .layout-annotated .compare-column article > span {
  font-size: clamp(25px, 2.45vw, 38px) !important;
}

body #advantages .layout-annotated .compare-column strong {
  font-size: clamp(15px, 1.25vw, 22px) !important;
  line-height: 1.2 !important;
}

body #advantages .layout-annotated .compare-column p:not(.compare-label) {
  max-width: none !important;
  margin-top: clamp(5px, 0.58svh, 8px) !important;
  font-size: clamp(10.5px, 0.78vw, 14px) !important;
  line-height: 1.38 !important;
}

body #advantages .layout-annotated .structure-panel {
  grid-template-rows: auto minmax(0, 1fr) !important;
  align-content: stretch !important;
}

body #advantages .layout-annotated .structure-panel figcaption {
  min-height: 0 !important;
  padding: clamp(12px, 1.05vw, 20px) clamp(12px, 1.2vw, 24px) clamp(8px, 0.85vw, 14px) !important;
}

body #advantages .layout-annotated .structure-panel figcaption span {
  font-size: clamp(11px, 0.68vw, 13px) !important;
}

body #advantages .layout-annotated .structure-panel figcaption strong {
  margin-top: 6px !important;
  font-size: clamp(18px, 1.75vw, 29px) !important;
}

body #advantages .layout-annotated .structure-photo,
body #advantages .layout-annotated .steel-panel .structure-photo {
  width: calc(100% - clamp(20px, 2.25vw, 44px)) !important;
  max-width: 100% !important;
  height: calc(100% - clamp(16px, 1.65vw, 30px)) !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  margin: clamp(8px, 0.85vw, 14px) auto clamp(8px, 0.85vw, 14px) !important;
}

body #advantages .layout-annotated .structure-photo img,
body #advantages .layout-annotated .steel-panel .structure-photo img {
  object-fit: cover !important;
}

body #advantages .layout-annotated .honeycomb-panel .structure-photo img {
  object-position: 50% 48% !important;
}

body #advantages .layout-annotated .steel-panel .structure-photo img {
  object-position: 50% 50% !important;
}

@media (min-width: 900px) and (max-width: 1380px) {
  body #advantages .structure-visual-compare.layout-annotated {
    grid-template-columns:
      minmax(180px, 0.86fr)
      minmax(210px, 1fr)
      minmax(210px, 1fr)
      minmax(180px, 0.86fr) !important;
  }
}

@media (max-width: 899px) {
  body #advantages .structure-visual-compare.layout-annotated {
    width: min(100% - 28px, 760px) !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body #advantages .layout-annotated .compare-column,
  body #advantages .layout-annotated .structure-panel {
    height: auto !important;
  }
}

/* Advantages VS edition: turn the material comparison into a clear two-side battle. */
body #advantages .structure-visual-compare.layout-annotated.vs-layout {
  width: min(calc(100% - 56px), 1840px) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) clamp(86px, 6.2vw, 122px) minmax(0, 1fr) !important;
  gap: clamp(16px, 1.6vw, 28px) !important;
  align-items: stretch !important;
  padding-top: clamp(16px, 2svh, 28px) !important;
}

body #advantages .layout-annotated.vs-layout .compare-column.vs-side {
  height: auto !important;
  min-height: clamp(620px, calc(100svh - 252px), 760px) !important;
  display: grid !important;
  grid-template-rows: auto minmax(220px, 0.88fr) auto !important;
  gap: clamp(12px, 1vw, 18px) !important;
  padding: clamp(18px, 1.5vw, 28px) !important;
  overflow: visible !important;
  border: 1px solid rgba(20, 20, 20, 0.12) !important;
  border-radius: 8px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 248, 0.96)) !important;
  box-shadow: 0 18px 48px rgba(10, 10, 10, 0.08) !important;
}

body #advantages .layout-annotated.vs-layout .compare-column.competitor {
  border-color: rgba(18, 18, 18, 0.12) !important;
}

body #advantages .layout-annotated.vs-layout .compare-column.fadior {
  border-color: rgba(158, 18, 26, 0.34) !important;
  background:
    linear-gradient(180deg, rgba(255, 252, 251, 0.98), rgba(255, 247, 246, 0.94)) !important;
}

body #advantages .layout-annotated.vs-layout .compare-label {
  margin: 0 !important;
  font-size: clamp(13px, 0.78vw, 16px) !important;
  letter-spacing: 0 !important;
}

body #advantages .layout-annotated.vs-layout .structure-panel {
  height: auto !important;
  min-height: 0 !important;
  display: grid !important;
  grid-template-rows: auto minmax(0, 1fr) !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  border: 1px solid rgba(20, 20, 20, 0.1) !important;
  background: #fff !important;
}

body #advantages .layout-annotated.vs-layout .structure-panel figcaption {
  padding: clamp(12px, 1vw, 18px) clamp(14px, 1.2vw, 22px) !important;
  border-bottom: 1px solid rgba(20, 20, 20, 0.08) !important;
}

body #advantages .layout-annotated.vs-layout .structure-panel figcaption strong {
  font-size: clamp(22px, 1.8vw, 34px) !important;
}

body #advantages .layout-annotated.vs-layout .structure-photo,
body #advantages .layout-annotated.vs-layout .steel-panel .structure-photo {
  width: 100% !important;
  height: 100% !important;
  min-height: clamp(240px, 29svh, 360px) !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
}

body #advantages .layout-annotated.vs-layout .structure-photo img,
body #advantages .layout-annotated.vs-layout .steel-panel .structure-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

body #advantages .layout-annotated.vs-layout .vs-points {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(10px, 0.9vw, 16px) !important;
}

body #advantages .layout-annotated.vs-layout .compare-column article {
  display: grid !important;
  grid-template-columns: auto 1fr !important;
  column-gap: 10px !important;
  padding: clamp(12px, 1vw, 18px) !important;
  border: 1px solid rgba(20, 20, 20, 0.1) !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.84) !important;
}

body #advantages .layout-annotated.vs-layout .compare-column article > span {
  color: rgba(20, 20, 20, 0.28) !important;
  font-size: clamp(24px, 2vw, 38px) !important;
  line-height: 0.95 !important;
}

body #advantages .layout-annotated.vs-layout .compare-column.fadior article > span {
  color: #a1121a !important;
}

body #advantages .layout-annotated.vs-layout .compare-column strong {
  font-size: clamp(16px, 1.08vw, 22px) !important;
  line-height: 1.18 !important;
}

body #advantages .layout-annotated.vs-layout .compare-column p:not(.compare-label) {
  grid-column: 2 !important;
  margin-top: 7px !important;
  font-size: clamp(11px, 0.72vw, 14px) !important;
  line-height: 1.45 !important;
}

body #advantages .layout-annotated.vs-layout .vs-center {
  position: relative !important;
  display: grid !important;
  grid-template-rows: 1fr repeat(4, auto) 1fr !important;
  gap: clamp(12px, 1.2vw, 20px) !important;
  align-content: center !important;
  justify-items: center !important;
  min-height: clamp(620px, calc(100svh - 252px), 760px) !important;
}

body #advantages .layout-annotated.vs-layout .vs-center::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 50% !important;
  width: 1px !important;
  background: linear-gradient(180deg, transparent, rgba(161, 18, 26, 0.42), transparent) !important;
}

body #advantages .layout-annotated.vs-layout .vs-center strong {
  z-index: 1 !important;
  grid-row: 1 / span 1 !important;
  align-self: end !important;
  display: grid !important;
  place-items: center !important;
  width: clamp(62px, 5.2vw, 92px) !important;
  height: clamp(62px, 5.2vw, 92px) !important;
  border-radius: 999px !important;
  color: #fff !important;
  background: #050505 !important;
  border: 4px solid #a1121a !important;
  box-shadow: 0 18px 38px rgba(161, 18, 26, 0.22) !important;
  font-size: clamp(22px, 2vw, 34px) !important;
  line-height: 1 !important;
}

body #advantages .layout-annotated.vs-layout .vs-center span {
  z-index: 1 !important;
  display: grid !important;
  place-items: center !important;
  min-width: clamp(72px, 5.6vw, 104px) !important;
  padding: 9px 10px !important;
  border: 1px solid rgba(161, 18, 26, 0.28) !important;
  border-radius: 999px !important;
  color: #a1121a !important;
  background: #fff !important;
  font-weight: 800 !important;
  font-size: clamp(11px, 0.72vw, 14px) !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

@media (max-width: 1180px) {
  body #advantages .structure-visual-compare.layout-annotated.vs-layout {
    grid-template-columns: 1fr !important;
  }

  body #advantages .layout-annotated.vs-layout .vs-center {
    min-height: 0 !important;
    grid-template-columns: auto repeat(4, auto) !important;
    grid-template-rows: auto !important;
    justify-content: center !important;
  }

  body #advantages .layout-annotated.vs-layout .vs-center::before {
    left: 0 !important;
    right: 0 !important;
    top: 50% !important;
    bottom: auto !important;
    width: auto !important;
    height: 1px !important;
  }

  body #advantages .layout-annotated.vs-layout .vs-center strong {
    width: 62px !important;
    height: 62px !important;
  }
}

@media (max-width: 720px) {
  body #advantages .structure-visual-compare.layout-annotated.vs-layout {
    width: min(100% - 28px, 760px) !important;
  }

  body #advantages .layout-annotated.vs-layout .compare-column.vs-side {
    min-height: 0 !important;
    padding: 16px !important;
  }

  body #advantages .layout-annotated.vs-layout .vs-points {
    grid-template-columns: 1fr !important;
  }

  body #advantages .layout-annotated.vs-layout .vs-center {
    grid-template-columns: repeat(2, auto) !important;
  }
}

/* VS compact lock: keep the full comparison visible instead of letting images dominate. */
body #advantages .structure-visual-compare.layout-annotated.vs-layout {
  grid-template-columns: minmax(0, 1fr) clamp(72px, 5vw, 96px) minmax(0, 1fr) !important;
  gap: clamp(12px, 1.2vw, 22px) !important;
  padding-top: clamp(10px, 1.2svh, 18px) !important;
}

body #advantages .layout-annotated.vs-layout .compare-column.vs-side {
  min-height: 0 !important;
  height: clamp(585px, calc(100svh - 220px), 690px) !important;
  grid-template-rows: auto clamp(250px, 31svh, 330px) minmax(0, 1fr) !important;
  gap: clamp(10px, 0.85vw, 14px) !important;
  padding: clamp(14px, 1.15vw, 22px) !important;
  overflow: hidden !important;
}

body #advantages .layout-annotated.vs-layout .structure-panel {
  height: 100% !important;
}

body #advantages .layout-annotated.vs-layout .structure-panel figcaption {
  padding: clamp(10px, 0.82vw, 14px) clamp(12px, 1vw, 18px) !important;
}

body #advantages .layout-annotated.vs-layout .structure-panel figcaption strong {
  font-size: clamp(19px, 1.45vw, 28px) !important;
}

body #advantages .layout-annotated.vs-layout .structure-photo,
body #advantages .layout-annotated.vs-layout .steel-panel .structure-photo {
  min-height: 0 !important;
}

body #advantages .layout-annotated.vs-layout .vs-points {
  align-content: stretch !important;
  gap: clamp(8px, 0.7vw, 12px) !important;
}

body #advantages .layout-annotated.vs-layout .compare-column article {
  min-height: 0 !important;
  padding: clamp(9px, 0.75vw, 13px) !important;
  column-gap: 8px !important;
}

body #advantages .layout-annotated.vs-layout .compare-column article > span {
  font-size: clamp(20px, 1.55vw, 30px) !important;
}

body #advantages .layout-annotated.vs-layout .compare-column strong {
  font-size: clamp(14px, 0.94vw, 18px) !important;
}

body #advantages .layout-annotated.vs-layout .compare-column p:not(.compare-label) {
  margin-top: 5px !important;
  font-size: clamp(10px, 0.62vw, 12px) !important;
  line-height: 1.34 !important;
}

body #advantages .layout-annotated.vs-layout .vs-center {
  min-height: 0 !important;
  height: clamp(585px, calc(100svh - 220px), 690px) !important;
  gap: clamp(9px, 0.8vw, 14px) !important;
}

body #advantages .layout-annotated.vs-layout .vs-center strong {
  width: clamp(54px, 4.2vw, 74px) !important;
  height: clamp(54px, 4.2vw, 74px) !important;
  border-width: 3px !important;
  font-size: clamp(19px, 1.55vw, 28px) !important;
}

body #advantages .layout-annotated.vs-layout .vs-center span {
  min-width: clamp(64px, 4.8vw, 86px) !important;
  padding: 7px 8px !important;
  font-size: clamp(10px, 0.62vw, 12px) !important;
}

@media (max-width: 1180px) {
  body #advantages .layout-annotated.vs-layout .compare-column.vs-side,
  body #advantages .layout-annotated.vs-layout .vs-center {
    height: auto !important;
  }
}

/* VS image-ratio lock: keep the original portrait material photos intact. */
body #advantages .layout-annotated.vs-layout .compare-column.vs-side {
  grid-template-rows: auto auto minmax(0, 1fr) !important;
}

body #advantages .layout-annotated.vs-layout .structure-panel {
  justify-self: center !important;
  width: min(100%, clamp(240px, 18vw, 310px)) !important;
  height: auto !important;
  grid-template-rows: auto auto !important;
}

body #advantages .layout-annotated.vs-layout .structure-photo,
body #advantages .layout-annotated.vs-layout .steel-panel .structure-photo {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 0.72 / 1 !important;
  background: #f7f7f5 !important;
}

body #advantages .layout-annotated.vs-layout .structure-photo img,
body #advantages .layout-annotated.vs-layout .steel-panel .structure-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #f7f7f5 !important;
}

body #advantages .layout-annotated.vs-layout .honeycomb-panel .structure-photo img,
body #advantages .layout-annotated.vs-layout .steel-panel .structure-photo img {
  object-position: center center !important;
}

@media (min-width: 1500px) {
  body #advantages .layout-annotated.vs-layout .structure-panel {
    width: min(100%, 300px) !important;
  }
}

@media (max-width: 720px) {
  body #advantages .layout-annotated.vs-layout .structure-panel {
    width: min(100%, 250px) !important;
  }
}

/* VS clean rebuild: original image ratio, no oversized empty frames or clipped copy. */
body #advantages .structure-visual-compare.layout-annotated.vs-layout {
  width: min(calc(100% - 56px), 1820px) !important;
  grid-template-columns: minmax(0, 1fr) clamp(72px, 5vw, 94px) minmax(0, 1fr) !important;
  gap: clamp(14px, 1.4vw, 26px) !important;
  align-items: stretch !important;
}

body #advantages .layout-annotated.vs-layout .compare-column.vs-side {
  height: auto !important;
  min-height: 0 !important;
  display: grid !important;
  grid-template-rows: auto minmax(0, 1fr) !important;
  gap: clamp(16px, 1.2vw, 22px) !important;
  padding: clamp(20px, 1.5vw, 28px) !important;
  overflow: visible !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.055) !important;
}

body #advantages .layout-annotated.vs-layout .compare-column.competitor {
  border: 1px solid rgba(17, 17, 17, 0.12) !important;
}

body #advantages .layout-annotated.vs-layout .compare-column.fadior {
  border: 1px solid rgba(161, 18, 26, 0.28) !important;
  background: linear-gradient(180deg, #fff, #fff9f8) !important;
}

body #advantages .layout-annotated.vs-layout .compare-label {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

body #advantages .layout-annotated.vs-layout .structure-panel {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: minmax(170px, 230px) minmax(0, 1fr) !important;
  align-items: stretch !important;
  gap: clamp(18px, 1.4vw, 26px) !important;
  padding: clamp(16px, 1.2vw, 22px) !important;
  border: 1px solid rgba(14, 14, 14, 0.1) !important;
  border-radius: 8px !important;
  background: #fafafa !important;
  box-shadow: none !important;
}

body #advantages .layout-annotated.vs-layout .steel-panel {
  background: #fff4f3 !important;
  border-color: rgba(161, 18, 26, 0.18) !important;
}

body #advantages .layout-annotated.vs-layout .structure-panel figcaption {
  grid-column: 2 !important;
  grid-row: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

body #advantages .layout-annotated.vs-layout .structure-panel figcaption span {
  color: #888 !important;
  font-size: clamp(12px, 0.72vw, 14px) !important;
  font-weight: 850 !important;
}

body #advantages .layout-annotated.vs-layout .steel-panel figcaption span {
  color: #a1121a !important;
}

body #advantages .layout-annotated.vs-layout .structure-panel figcaption strong {
  margin-top: 8px !important;
  color: #111 !important;
  font-size: clamp(26px, 2vw, 38px) !important;
  line-height: 1.12 !important;
}

body #advantages .layout-annotated.vs-layout .steel-panel figcaption strong {
  color: #a1121a !important;
}

body #advantages .layout-annotated.vs-layout .structure-photo,
body #advantages .layout-annotated.vs-layout .steel-panel .structure-photo {
  grid-column: 1 !important;
  grid-row: 1 !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 0.72 / 1 !important;
  margin: 0 !important;
  border: 1px solid rgba(10, 10, 10, 0.08) !important;
  border-radius: 6px !important;
  overflow: hidden !important;
  background: #fff !important;
}

body #advantages .layout-annotated.vs-layout .structure-photo img,
body #advantages .layout-annotated.vs-layout .steel-panel .structure-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #fff !important;
}

body #advantages .layout-annotated.vs-layout .vs-points {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(10px, 0.85vw, 14px) !important;
}

body #advantages .layout-annotated.vs-layout .compare-column article {
  display: grid !important;
  grid-template-columns: clamp(34px, 2.5vw, 46px) 1fr !important;
  align-items: start !important;
  gap: 8px 12px !important;
  min-height: 0 !important;
  padding: clamp(13px, 1vw, 18px) !important;
  border: 1px solid rgba(15, 15, 15, 0.1) !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.92) !important;
}

body #advantages .layout-annotated.vs-layout .compare-column article > span {
  color: rgba(17, 17, 17, 0.27) !important;
  font-size: clamp(24px, 1.8vw, 34px) !important;
  line-height: 1 !important;
}

body #advantages .layout-annotated.vs-layout .compare-column.fadior article > span {
  color: #a1121a !important;
}

body #advantages .layout-annotated.vs-layout .compare-column strong {
  color: #111 !important;
  font-size: clamp(15px, 1vw, 19px) !important;
  line-height: 1.18 !important;
}

body #advantages .layout-annotated.vs-layout .compare-column p:not(.compare-label) {
  grid-column: 2 !important;
  margin: 0 !important;
  color: #707070 !important;
  font-size: clamp(11px, 0.68vw, 13px) !important;
  font-weight: 700 !important;
  line-height: 1.42 !important;
}

body #advantages .layout-annotated.vs-layout .vs-center {
  height: auto !important;
  min-height: 0 !important;
  display: grid !important;
  grid-template-rows: 1fr repeat(5, auto) 1fr !important;
  align-content: center !important;
  gap: 12px !important;
}

body #advantages .layout-annotated.vs-layout .vs-center strong {
  width: clamp(58px, 4.2vw, 76px) !important;
  height: clamp(58px, 4.2vw, 76px) !important;
}

body #advantages .layout-annotated.vs-layout .vs-center span {
  min-width: 0 !important;
  padding: 7px 10px !important;
  font-size: 12px !important;
}

@media (max-width: 1180px) {
  body #advantages .structure-visual-compare.layout-annotated.vs-layout {
    grid-template-columns: 1fr !important;
  }

  body #advantages .layout-annotated.vs-layout .vs-center {
    grid-template-columns: auto repeat(4, auto) !important;
    grid-template-rows: auto !important;
  }
}

@media (max-width: 720px) {
  body #advantages .layout-annotated.vs-layout .structure-panel {
    grid-template-columns: minmax(120px, 155px) 1fr !important;
  }

  body #advantages .layout-annotated.vs-layout .vs-points {
    grid-template-columns: 1fr !important;
  }
}

/* Advantages final: restore the image-left/image-right comparison layout. */
body #advantages .structure-visual-compare.layout-annotated:not(.vs-layout) {
  width: min(calc(100% - 48px), 1880px) !important;
  display: grid !important;
  grid-template-columns:
    minmax(190px, 0.86fr)
    minmax(230px, 1fr)
    minmax(230px, 1fr)
    minmax(190px, 0.86fr) !important;
  gap: clamp(12px, 1.15vw, 20px) !important;
  align-items: stretch !important;
  padding: clamp(12px, 1.6svh, 18px) 0 clamp(16px, 2svh, 28px) !important;
}

body #advantages .layout-annotated:not(.vs-layout) .compare-column,
body #advantages .layout-annotated:not(.vs-layout) .structure-panel {
  height: clamp(500px, calc(100svh - 235px), 690px) !important;
  min-height: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

body #advantages .layout-annotated:not(.vs-layout) .compare-column {
  display: block !important;
  padding: clamp(14px, 1.05vw, 20px) clamp(14px, 1.2vw, 24px) !important;
  overflow: hidden !important;
  background: #fff !important;
}

body #advantages .layout-annotated:not(.vs-layout) .compare-column.fadior {
  background: linear-gradient(180deg, #fff, #fff8f7) !important;
}

body #advantages .layout-annotated:not(.vs-layout) .compare-label {
  position: static !important;
  width: auto !important;
  height: auto !important;
  clip: auto !important;
  overflow: visible !important;
  margin-bottom: clamp(8px, 0.8vw, 14px) !important;
  color: #858585 !important;
  font-size: clamp(11px, 0.68vw, 13px) !important;
  font-weight: 850 !important;
  white-space: normal !important;
}

body #advantages .layout-annotated:not(.vs-layout) .compare-column.fadior .compare-label {
  color: #a1121a !important;
}

body #advantages .layout-annotated:not(.vs-layout) .compare-column article {
  display: grid !important;
  grid-template-columns: clamp(34px, 3.2vw, 52px) 1fr !important;
  column-gap: clamp(10px, 0.95vw, 18px) !important;
  padding: clamp(8px, 0.82svh, 13px) 0 !important;
  border: 0 !important;
  border-top: 1px solid rgba(15, 15, 15, 0.1) !important;
  border-radius: 0 !important;
  background: transparent !important;
}

body #advantages .layout-annotated:not(.vs-layout) .compare-column article:first-of-type {
  border-top: 0 !important;
}

body #advantages .layout-annotated:not(.vs-layout) .compare-column article > span {
  color: rgba(15, 15, 15, 0.26) !important;
  font-size: clamp(25px, 2.45vw, 38px) !important;
  line-height: 1 !important;
}

body #advantages .layout-annotated:not(.vs-layout) .compare-column.fadior article > span {
  color: #a1121a !important;
}

body #advantages .layout-annotated:not(.vs-layout) .compare-column strong {
  color: #111 !important;
  font-size: clamp(15px, 1.25vw, 22px) !important;
  line-height: 1.2 !important;
}

body #advantages .layout-annotated:not(.vs-layout) .compare-column p:not(.compare-label) {
  grid-column: 2 !important;
  max-width: none !important;
  margin-top: clamp(5px, 0.58svh, 8px) !important;
  color: #737373 !important;
  font-size: clamp(10.5px, 0.78vw, 14px) !important;
  line-height: 1.38 !important;
}

body #advantages .layout-annotated:not(.vs-layout) .structure-panel {
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-template-rows: auto minmax(0, 1fr) !important;
  align-content: stretch !important;
  overflow: hidden !important;
  padding: 0 !important;
  border: 1px solid rgba(15, 15, 15, 0.1) !important;
  background: #fff !important;
}

body #advantages .layout-annotated:not(.vs-layout) .steel-panel {
  border-color: rgba(161, 18, 26, 0.25) !important;
  background: #fff8f7 !important;
}

body #advantages .layout-annotated:not(.vs-layout) .structure-panel figcaption {
  grid-column: auto !important;
  grid-row: auto !important;
  display: block !important;
  min-height: 0 !important;
  padding: clamp(12px, 1.05vw, 20px) clamp(12px, 1.2vw, 24px) clamp(8px, 0.85vw, 14px) !important;
  border-bottom: 1px solid rgba(15, 15, 15, 0.08) !important;
}

body #advantages .layout-annotated:not(.vs-layout) .structure-panel figcaption span {
  color: #858585 !important;
  font-size: clamp(11px, 0.68vw, 13px) !important;
}

body #advantages .layout-annotated:not(.vs-layout) .steel-panel figcaption span,
body #advantages .layout-annotated:not(.vs-layout) .steel-panel figcaption strong {
  color: #a1121a !important;
}

body #advantages .layout-annotated:not(.vs-layout) .structure-panel figcaption strong {
  display: block !important;
  margin-top: 6px !important;
  color: #111 !important;
  font-size: clamp(18px, 1.75vw, 29px) !important;
  line-height: 1.14 !important;
}

body #advantages .layout-annotated:not(.vs-layout) .structure-photo,
body #advantages .layout-annotated:not(.vs-layout) .steel-panel .structure-photo {
  grid-column: auto !important;
  grid-row: auto !important;
  width: calc(100% - clamp(20px, 2.25vw, 44px)) !important;
  height: calc(100% - clamp(16px, 1.65vw, 30px)) !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
  margin: clamp(8px, 0.85vw, 14px) auto clamp(8px, 0.85vw, 14px) !important;
  border: 1px solid rgba(15, 15, 15, 0.1) !important;
  border-radius: 8px !important;
  background: #fff !important;
}

body #advantages .layout-annotated:not(.vs-layout) .structure-photo img,
body #advantages .layout-annotated:not(.vs-layout) .steel-panel .structure-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  background: transparent !important;
}

body #advantages .layout-annotated:not(.vs-layout) .honeycomb-panel .structure-photo img {
  object-position: 50% 48% !important;
}

body #advantages .layout-annotated:not(.vs-layout) .steel-panel .structure-photo img {
  object-position: 50% 50% !important;
}

@media (max-width: 899px) {
  body #advantages .structure-visual-compare.layout-annotated:not(.vs-layout) {
    width: min(100% - 28px, 760px) !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body #advantages .layout-annotated:not(.vs-layout) .compare-column,
  body #advantages .layout-annotated:not(.vs-layout) .structure-panel {
    height: auto !important;
  }
}

/* Advantages image comparison: remove duplicated titles above the two center photos. */
body #advantages .layout-annotated:not(.vs-layout) .structure-panel figcaption {
  display: none !important;
}

body #advantages .layout-annotated:not(.vs-layout) .structure-panel {
  grid-template-rows: minmax(0, 1fr) !important;
}

body #advantages .layout-annotated:not(.vs-layout) .structure-photo,
body #advantages .layout-annotated:not(.vs-layout) .steel-panel .structure-photo {
  height: calc(100% - clamp(16px, 1.65vw, 30px)) !important;
  margin-top: clamp(8px, 0.85vw, 14px) !important;
}

/* Case gallery opened view: fuller dialog with a larger, calmer preview area. */
.case-gallery-panel {
  inset: clamp(28px, 3.4vh, 44px) clamp(34px, 3.8vw, 76px) clamp(28px, 3.4vh, 44px) !important;
  border-radius: 8px !important;
}

.case-gallery-header {
  min-height: 82px !important;
  padding: 18px clamp(30px, 3vw, 50px) !important;
}

.case-gallery-images {
  gap: clamp(24px, 2.8vh, 38px) !important;
  padding: clamp(24px, 3vh, 44px) clamp(34px, 3.6vw, 66px) !important;
}

.case-gallery-images .case-gallery-frame {
  width: min(100%, 1680px) !important;
  min-height: clamp(560px, 64vh, 700px) !important;
  padding: clamp(20px, 2.6vh, 36px) !important;
}

.case-gallery-images .case-gallery-frame .case-gallery-image {
  max-width: min(100%, 900px) !important;
  max-height: clamp(500px, 60vh, 650px) !important;
}

@media (max-width: 980px) {
  .case-gallery-panel {
    inset: 12px !important;
  }

  .case-gallery-header {
    min-height: 72px !important;
    padding: 14px 18px !important;
  }

  .case-gallery-images {
    padding: 18px !important;
  }

  .case-gallery-images .case-gallery-frame {
    min-height: min(560px, 66svh) !important;
    padding: 16px !important;
  }

  .case-gallery-images .case-gallery-frame .case-gallery-image {
    max-width: 100% !important;
    max-height: min(520px, 62svh) !important;
  }
}

/* Product system cards: title is the first text line, no numeric prefix. */
body #products .catalog-grid article.system-family-card {
  grid-template-rows: auto auto minmax(0, auto) 1fr !important;
}

body #products .catalog-grid article.system-family-card > span {
  display: none !important;
}

body #products .catalog-grid article.system-family-card > h3 {
  margin: clamp(20px, 1.45vw, 26px) 24px 12px !important;
}

/* Product system cards: keep the tag group in the lower content band. */
body #products .catalog-grid article.system-family-card {
  grid-template-rows: auto auto auto auto !important;
  align-content: start !important;
}

body #products .catalog-grid article.system-family-card > p {
  margin-bottom: clamp(18px, 1.25vw, 26px) !important;
}

body #products .catalog-grid article.system-family-card .system-tags {
  align-self: start !important;
  margin-top: clamp(18px, 1.6vw, 32px) !important;
}

/* Materials page: match the lighter case-center proportion. */
@media (min-width: 981px) {
  body #materials > .page-hero.compact,
  body #materials .material-grid {
    width: min(calc(100% - clamp(330px, 20vw, 408px)), 1640px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body #materials > .page-hero.compact {
    display: grid !important;
    grid-template-columns: minmax(150px, 0.42fr) minmax(360px, 1fr) !important;
    column-gap: clamp(34px, 4vw, 72px) !important;
    row-gap: 7px !important;
    align-items: end !important;
    padding-top: clamp(22px, 2.2vw, 34px) !important;
    padding-bottom: clamp(18px, 1.9vw, 28px) !important;
    border-bottom: 1px solid rgba(15, 15, 15, 0.14) !important;
  }

  body #materials > .page-hero.compact .eyebrow {
    grid-row: 1 / span 2 !important;
    align-self: center !important;
    margin: 0 !important;
  }

  body #materials > .page-hero.compact h1 {
    max-width: none !important;
    margin: 0 !important;
    font-size: clamp(22px, 1.85vw, 32px) !important;
    line-height: 1.16 !important;
  }

  body #materials > .page-hero.compact p:not(.eyebrow) {
    max-width: 820px !important;
    margin: 4px 0 0 !important;
    color: #777 !important;
    font-size: clamp(12.5px, 0.82vw, 15px) !important;
    font-weight: 700 !important;
    line-height: 1.48 !important;
  }

  body #materials .material-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: clamp(20px, 1.35vw, 26px) clamp(26px, 1.8vw, 36px) !important;
    padding-top: clamp(28px, 2.4vw, 42px) !important;
    padding-bottom: clamp(48px, 4vw, 76px) !important;
  }

  body #materials .material-grid article,
  body #materials .door-finishes-card a {
    display: grid !important;
    grid-template-rows: clamp(78px, 5vw, 92px) clamp(255px, 15.2vw, 310px) !important;
    min-height: 0 !important;
    height: auto !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    background: #fff !important;
  }

  body #materials .material-grid article h3,
  body #materials .door-finishes-card a h3 {
    display: flex !important;
    align-items: center !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 0 clamp(18px, 1.4vw, 26px) !important;
    color: #fff !important;
    background: #050505 !important;
    font-size: clamp(17px, 1vw, 20px) !important;
    line-height: 1.15 !important;
  }

  body #materials .material-grid article p,
  body #materials .door-finishes-card a p {
    display: none !important;
  }

  body #materials .material-grid article > .material-photo,
  body #materials .door-finishes-card a > .material-photo {
    min-height: 0 !important;
    height: clamp(255px, 15.2vw, 310px) !important;
    margin: 0 !important;
    background: #fff !important;
  }

  body #materials .material-grid article > .material-photo img,
  body #materials .door-finishes-card a > .material-photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  body #materials .material-grid article:nth-child(1) > .material-photo img {
    object-position: center 43% !important;
  }

  body #materials .material-grid article:nth-child(2) > .material-photo img {
    object-position: center center !important;
  }

  body #materials .material-grid article:nth-child(3) .material-photo img,
  body #materials .material-grid article:nth-child(4) > .material-photo img {
    object-position: center top !important;
  }

  body #materials .door-finishes-card em {
    right: clamp(16px, 1.2vw, 22px) !important;
    bottom: clamp(16px, 1.2vw, 22px) !important;
  }
}

/* Materials page trial: image-led cards with a bottom title label, similar to case cards. */
@media (min-width: 981px) {
  body #materials .material-grid {
    gap: clamp(22px, 1.6vw, 32px) !important;
  }

  body #materials .material-grid article,
  body #materials .door-finishes-card a {
    position: relative !important;
    display: block !important;
    height: clamp(300px, 18vw, 360px) !important;
    min-height: 0 !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    background: #fff !important;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.08) !important;
  }

  body #materials .material-grid article > .material-photo,
  body #materials .door-finishes-card a > .material-photo {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    background: #fff !important;
  }

  body #materials .material-grid article > .material-photo img,
  body #materials .door-finishes-card a > .material-photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  body #materials .material-grid article h3,
  body #materials .door-finishes-card a h3 {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 2 !important;
    min-height: 0 !important;
    height: auto !important;
    margin: 0 !important;
    padding: 16px 22px 17px !important;
    color: #fff !important;
    background: rgba(0, 0, 0, 0.9) !important;
    font-size: clamp(16px, 0.95vw, 19px) !important;
    line-height: 1.15 !important;
  }

  body #materials .material-grid article:nth-child(1) > .material-photo img {
    object-fit: contain !important;
    object-position: center center !important;
    padding: clamp(20px, 1.6vw, 30px) !important;
    background: #f7f7f5 !important;
  }

  body #materials .material-grid article:nth-child(2) > .material-photo img {
    object-position: center center !important;
  }

  body #materials .material-grid article:nth-child(3) .material-photo img {
    object-position: center 18% !important;
  }

  body #materials .material-grid article:nth-child(4) > .material-photo img {
    object-position: center 30% !important;
  }

  body #materials .door-finishes-card em {
    z-index: 3 !important;
    right: 18px !important;
    bottom: 72px !important;
  }
}

/* Materials page proportion pass: flatter cards and fuller image area. */
@media (min-width: 981px) {
  body #materials .material-grid {
    width: min(calc(100% - clamp(360px, 22vw, 460px)), 1520px) !important;
    gap: clamp(22px, 1.75vw, 34px) !important;
    padding-top: clamp(24px, 2vw, 34px) !important;
  }

  body #materials .material-grid article,
  body #materials .door-finishes-card a {
    display: grid !important;
    grid-template-rows: clamp(62px, 3.8vw, 76px) clamp(220px, 13vw, 260px) !important;
    height: auto !important;
    min-height: 0 !important;
    border-radius: 8px !important;
  }

  body #materials .material-grid article h3,
  body #materials .door-finishes-card a h3 {
    position: static !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 0 clamp(18px, 1.25vw, 24px) !important;
    background: #050505 !important;
    font-size: clamp(15.5px, 0.92vw, 18px) !important;
    line-height: 1.15 !important;
  }

  body #materials .material-grid article > .material-photo,
  body #materials .door-finishes-card a > .material-photo {
    height: clamp(220px, 13vw, 260px) !important;
    min-height: 0 !important;
  }

  body #materials .material-grid article:nth-child(1) > .material-photo img {
    object-fit: cover !important;
    object-position: center 48% !important;
    padding: 0 !important;
    background: #fff !important;
  }

  body #materials .material-grid article:nth-child(2) > .material-photo img {
    object-fit: cover !important;
    object-position: center center !important;
  }

  body #materials .material-grid article:nth-child(3) .material-photo img {
    object-fit: cover !important;
    object-position: center 22% !important;
  }

  body #materials .material-grid article:nth-child(4) > .material-photo img {
    object-fit: cover !important;
    object-position: center 38% !important;
  }

  body #materials .door-finishes-card em {
    bottom: 18px !important;
    right: 18px !important;
  }
}

/* Materials page: align card proportion with the Product Systems page. */
@media (min-width: 981px) {
  body #materials .material-grid {
    width: min(100% - 76px, 1760px) !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 22px !important;
    padding-top: 18px !important;
    padding-bottom: 70px !important;
  }

  body #materials .material-grid article,
  body #materials .door-finishes-card a {
    position: relative !important;
    display: grid !important;
    grid-template-rows: auto auto minmax(0, 1fr) !important;
    height: clamp(560px, 37vw, 690px) !important;
    min-height: 0 !important;
    padding: 0 0 22px !important;
    overflow: hidden !important;
    border: 1px solid rgba(8, 8, 8, 0.11) !important;
    border-radius: 8px !important;
    background: #fff !important;
    box-shadow: 0 18px 46px rgba(8, 8, 8, 0.045) !important;
  }

  body #materials .material-grid article > .material-photo,
  body #materials .door-finishes-card a > .material-photo {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1.48 / 1 !important;
    min-height: 0 !important;
    margin: 0 !important;
    background: #fff !important;
    border-bottom: 1px solid rgba(8, 8, 8, 0.1) !important;
  }

  body #materials .material-grid article > .material-photo img,
  body #materials .door-finishes-card a > .material-photo img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center !important;
    padding: 0 !important;
    background: #fff !important;
  }

  body #materials .material-grid article h3,
  body #materials .door-finishes-card a h3 {
    position: static !important;
    display: block !important;
    margin: 28px 24px 12px !important;
    padding: 0 !important;
    color: #080808 !important;
    background: transparent !important;
    font-size: clamp(19px, 1.22vw, 24px) !important;
    font-weight: 850 !important;
    line-height: 1.22 !important;
  }

  body #materials .material-grid article p,
  body #materials .door-finishes-card a p {
    display: block !important;
    max-width: none !important;
    margin: 0 24px 16px !important;
    color: #6f6f6f !important;
    font-size: clamp(12px, 0.82vw, 14px) !important;
    font-weight: 700 !important;
    line-height: 1.62 !important;
    text-align: left !important;
  }

  body #materials .material-grid article:nth-child(1) > .material-photo img {
    object-position: center 48% !important;
  }

  body #materials .material-grid article:nth-child(2) > .material-photo img {
    object-position: center center !important;
  }

  body #materials .material-grid article:nth-child(3) .material-photo img {
    object-position: center 22% !important;
  }

  body #materials .material-grid article:nth-child(4) > .material-photo img {
    object-position: center 38% !important;
  }

  body #materials .door-finishes-card em {
    position: static !important;
    display: inline-flex !important;
    width: fit-content !important;
    margin: auto 24px 0 !important;
    padding: 9px 14px !important;
    color: #8a1119 !important;
    background: rgba(138, 17, 25, 0.06) !important;
    border: 1px solid rgba(138, 17, 25, 0.16) !important;
    border-radius: 999px !important;
    font-size: 12px !important;
    line-height: 1 !important;
  }
}

/* Materials page cleanup: image first, clean text below, no broken black description block. */
@media (min-width: 981px) {
  body #materials .material-grid article,
  body #materials .door-finishes-card a {
    display: grid !important;
    grid-template-rows: clamp(230px, 15vw, 290px) auto auto 1fr !important;
    height: clamp(500px, 32vw, 620px) !important;
    padding: 0 0 24px !important;
    overflow: hidden !important;
    background: #fff !important;
  }

  body #materials .material-grid article > .material-photo,
  body #materials .door-finishes-card a > .material-photo {
    grid-row: 1 !important;
    width: 100% !important;
    height: clamp(230px, 15vw, 290px) !important;
    aspect-ratio: auto !important;
    border-bottom: 1px solid rgba(8, 8, 8, 0.1) !important;
  }

  body #materials .material-grid article h3,
  body #materials .door-finishes-card a h3 {
    grid-row: 2 !important;
    margin: 26px 24px 10px !important;
    padding: 0 !important;
    color: #080808 !important;
    background: transparent !important;
    font-size: clamp(20px, 1.22vw, 25px) !important;
    font-weight: 850 !important;
    line-height: 1.22 !important;
  }

  body #materials .material-grid article p,
  body #materials .door-finishes-card a p {
    grid-row: 3 !important;
    display: block !important;
    margin: 0 24px 0 !important;
    padding: 0 !important;
    color: #747474 !important;
    background: transparent !important;
    font-size: clamp(12.5px, 0.82vw, 14px) !important;
    font-weight: 700 !important;
    line-height: 1.6 !important;
  }

  body #materials .material-grid article:nth-child(1) > .material-photo img,
  body #materials .material-grid article:nth-child(2) > .material-photo img,
  body #materials .material-grid article:nth-child(3) .material-photo img,
  body #materials .material-grid article:nth-child(4) > .material-photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    padding: 0 !important;
  }

  body #materials .material-grid article:nth-child(1) > .material-photo img {
    object-position: center 48% !important;
  }

  body #materials .material-grid article:nth-child(2) > .material-photo img {
    object-position: center center !important;
  }

  body #materials .material-grid article:nth-child(3) .material-photo img {
    object-position: center 24% !important;
  }

  body #materials .material-grid article:nth-child(4) > .material-photo img {
    object-position: center 38% !important;
  }

  body #materials .door-finishes-card em {
    grid-row: 4 !important;
    align-self: end !important;
    margin: auto 24px 0 !important;
  }
}

/* Materials page: black text panels below images. */
@media (min-width: 981px) {
  body #materials .material-grid article,
  body #materials .door-finishes-card a {
    grid-template-rows: clamp(220px, 14vw, 270px) auto auto 1fr !important;
    height: clamp(500px, 31vw, 600px) !important;
    padding: 0 !important;
    background: #050505 !important;
  }

  body #materials .material-grid article > .material-photo,
  body #materials .door-finishes-card a > .material-photo {
    height: clamp(220px, 14vw, 270px) !important;
    border-bottom: 0 !important;
  }

  body #materials .material-grid article h3,
  body #materials .door-finishes-card a h3 {
    margin: 0 !important;
    padding: clamp(20px, 1.5vw, 28px) 24px 10px !important;
    color: #fff !important;
    background: #050505 !important;
    font-size: clamp(20px, 1.18vw, 24px) !important;
    line-height: 1.2 !important;
  }

  body #materials .material-grid article p,
  body #materials .door-finishes-card a p {
    margin: 0 !important;
    padding: 0 24px clamp(22px, 1.6vw, 30px) !important;
    color: rgba(255, 255, 255, 0.68) !important;
    background: #050505 !important;
    font-size: clamp(12.5px, 0.82vw, 14px) !important;
    line-height: 1.6 !important;
  }

  body #materials .door-finishes-card em {
    grid-row: 4 !important;
    align-self: end !important;
    width: fit-content !important;
    margin: auto 24px 24px !important;
    color: #fff !important;
    background: transparent !important;
    border-color: rgba(255, 255, 255, 0.28) !important;
  }
}

/* Materials page: shorten the black information area under each image. */
@media (min-width: 981px) {
  body #materials .material-grid article,
  body #materials .door-finishes-card a {
    grid-template-rows: clamp(220px, 14vw, 270px) auto auto !important;
    height: auto !important;
    min-height: 0 !important;
    padding-bottom: 0 !important;
  }

  body #materials .material-grid article h3,
  body #materials .door-finishes-card a h3 {
    padding-top: clamp(18px, 1.25vw, 24px) !important;
    padding-bottom: 8px !important;
  }

  body #materials .material-grid article p,
  body #materials .door-finishes-card a p {
    padding-bottom: clamp(22px, 1.55vw, 30px) !important;
  }

  body #materials .door-finishes-card em {
    position: absolute !important;
    right: 22px !important;
    bottom: 22px !important;
    margin: 0 !important;
  }

  body #materials .door-finishes-card a {
    padding-bottom: 58px !important;
  }
}

/* Materials page: show the 170+ door finish card as a complete document preview. */
@media (min-width: 981px) {
  body #materials .material-grid article:nth-child(3) > .material-photo,
  body #materials .door-finishes-card a > .material-photo {
    background: #fff !important;
  }

  body #materials .material-grid article:nth-child(3) .material-photo img,
  body #materials .door-finishes-card a > .material-photo img {
    object-fit: contain !important;
    object-position: center center !important;
    padding: clamp(8px, 0.7vw, 14px) !important;
    background: #fff !important;
  }
}

/* Materials page: lighten the proof cards so the page feels clean and airy. */
@media (min-width: 981px) {
  body #materials .material-grid {
    gap: clamp(24px, 1.8vw, 36px) !important;
  }

  body #materials .material-grid article,
  body #materials .door-finishes-card a {
    background: #fff !important;
    border: 1px solid rgba(15, 15, 15, 0.09) !important;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.045) !important;
  }

  body #materials .material-grid article > .material-photo,
  body #materials .door-finishes-card a > .material-photo {
    border-bottom: 1px solid rgba(15, 15, 15, 0.08) !important;
  }

  body #materials .material-grid article h3,
  body #materials .door-finishes-card a h3 {
    color: #111 !important;
    background: #fff !important;
    padding-top: clamp(21px, 1.45vw, 28px) !important;
  }

  body #materials .material-grid article p,
  body #materials .door-finishes-card a p {
    color: #747474 !important;
    background: #fff !important;
    font-weight: 650 !important;
  }

  body #materials .door-finishes-card em {
    color: #8a1119 !important;
    background: rgba(138, 17, 25, 0.045) !important;
    border-color: rgba(138, 17, 25, 0.16) !important;
  }
}

/* Materials page: make the 170+ door finish preview fill its image area. */
@media (min-width: 981px) {
  body #materials .material-grid article:nth-child(3) > .material-photo,
  body #materials .door-finishes-card a > .material-photo {
    background: #fff !important;
    overflow: hidden !important;
  }

  body #materials .material-grid article:nth-child(3) .material-photo img,
  body #materials .door-finishes-card a > .material-photo img {
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
    object-fit: cover !important;
    object-position: center center !important;
    background: transparent !important;
  }
}

/* Door finishes card: keep the color-card preview as a smaller PDF thumbnail. */
@media (min-width: 981px) {
  body #materials .door-finishes-card a {
    grid-template-rows: clamp(170px, 9.5vw, 210px) auto auto 1fr !important;
  }

  body #materials .door-finishes-card a > .material-photo {
    height: clamp(170px, 9.5vw, 210px) !important;
    padding: clamp(14px, 1vw, 20px) !important;
    background: #fafafa !important;
  }

  body #materials .door-finishes-card a > .material-photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    padding: 0 !important;
    background: transparent !important;
  }

  body #materials .door-finishes-card a h3 {
    padding-top: clamp(20px, 1.35vw, 26px) !important;
  }
}

/* Hard override for the third material card: this PDF preview should stay small. */
@media (min-width: 981px) {
  body #materials .material-grid article.door-finishes-card > a {
    grid-template-rows: clamp(155px, 8.8vw, 190px) auto auto auto !important;
    align-content: start !important;
    min-height: 0 !important;
    height: auto !important;
    padding-bottom: clamp(22px, 1.6vw, 30px) !important;
  }

  body #materials .material-grid article.door-finishes-card > a > .material-photo {
    height: clamp(155px, 8.8vw, 190px) !important;
    padding: clamp(16px, 1.15vw, 22px) !important;
    background: #fafafa !important;
  }

  body #materials .material-grid article.door-finishes-card > a > .material-photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    padding: 0 !important;
    background: transparent !important;
  }

  body #materials .material-grid article.door-finishes-card > a h3 {
    margin-top: 0 !important;
    padding-top: clamp(22px, 1.55vw, 30px) !important;
    padding-bottom: 8px !important;
  }

  body #materials .material-grid article.door-finishes-card > a p {
    padding-bottom: clamp(18px, 1.3vw, 24px) !important;
  }

  body #materials .material-grid article.door-finishes-card > a em {
    position: static !important;
    justify-self: end !important;
    align-self: start !important;
    margin: 0 24px 0 auto !important;
  }
}

/* Materials page: keep the door-finish card aligned with the other material cards. */
@media (min-width: 981px) {
  body #materials .material-grid article.door-finishes-card > a {
    grid-template-rows: clamp(240px, 13.2vw, 270px) auto auto auto !important;
    align-content: stretch !important;
    min-height: clamp(500px, 31vw, 610px) !important;
    height: 100% !important;
    padding-bottom: clamp(22px, 1.6vw, 30px) !important;
  }

  body #materials .material-grid article.door-finishes-card > a > .material-photo {
    height: clamp(240px, 13.2vw, 270px) !important;
    min-height: 0 !important;
    padding: 0 !important;
    background: #fff !important;
  }

  body #materials .material-grid article.door-finishes-card > a > .material-photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: 50% 38% !important;
    padding: 0 !important;
    background: transparent !important;
  }

  body #materials .material-grid article.door-finishes-card > a h3 {
    margin-top: 0 !important;
    padding-top: clamp(21px, 1.45vw, 28px) !important;
    padding-bottom: 8px !important;
  }

  body #materials .material-grid article.door-finishes-card > a em {
    position: static !important;
    justify-self: end !important;
    align-self: start !important;
    margin: 0 24px 0 auto !important;
  }
}

/* Materials page: match the screenshot proportion for the four proof cards. */
@media (min-width: 981px) {
  body #materials .material-grid article,
  body #materials .material-grid article.door-finishes-card > a {
    grid-template-rows: clamp(300px, 16.6vw, 340px) auto auto 1fr !important;
    min-height: clamp(650px, 37.5vw, 780px) !important;
    height: clamp(650px, 37.5vw, 780px) !important;
    align-content: stretch !important;
  }

  body #materials .material-grid article > .material-photo,
  body #materials .material-grid article.door-finishes-card > a > .material-photo {
    height: clamp(300px, 16.6vw, 340px) !important;
    min-height: 0 !important;
    padding: 0 !important;
    background: #fff !important;
  }

  body #materials .material-grid article > .material-photo img,
  body #materials .material-grid article.door-finishes-card > a > .material-photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transform: none !important;
    padding: 0 !important;
    background: transparent !important;
  }

  body #materials .material-grid article:nth-child(3) .material-photo img,
  body #materials .material-grid article.door-finishes-card > a > .material-photo img {
    object-fit: contain !important;
    object-position: center center !important;
  }

  body #materials .material-grid article:hover > .material-photo img,
  body #materials .material-grid article.door-finishes-card:hover > a > .material-photo img {
    transform: none !important;
  }
}

/* Materials page: remove the forced blank space below card content. */
@media (min-width: 981px) {
  body #materials .material-grid article,
  body #materials .material-grid article.door-finishes-card > a {
    grid-template-rows: clamp(255px, 14.2vw, 290px) auto auto auto !important;
    min-height: 0 !important;
    height: auto !important;
    padding-bottom: clamp(10px, 0.8vw, 16px) !important;
    align-content: start !important;
  }

  body #materials .material-grid article h3,
  body #materials .material-grid article.door-finishes-card > a h3 {
    padding-top: clamp(18px, 1.1vw, 22px) !important;
    padding-bottom: 6px !important;
  }

  body #materials .material-grid article p,
  body #materials .material-grid article.door-finishes-card > a p {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  body #materials .material-grid article.door-finishes-card > a em {
    align-self: start !important;
    margin-top: clamp(16px, 1vw, 22px) !important;
  }

  body #materials .material-grid article > .material-photo,
  body #materials .material-grid article.door-finishes-card > a > .material-photo {
    height: clamp(255px, 14.2vw, 290px) !important;
  }

  body #materials {
    padding-bottom: clamp(16px, 1.5vw, 28px) !important;
  }

  body #advantages {
    padding-top: clamp(16px, 1.5vw, 28px) !important;
  }
}

/* Fix material PDF card: avoid the outer article showing as a second card edge. */
body #materials .material-grid article.door-finishes-card {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

body #materials .material-grid article.door-finishes-card > a {
  display: grid !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  overflow: hidden !important;
  border: 1px solid rgba(8, 8, 8, 0.12) !important;
  border-radius: 6px !important;
  background: #fff !important;
  box-shadow: 0 18px 48px rgba(8, 8, 8, 0.06) !important;
}

/* Partners page final spacing: no forced full-screen blank area before contact. */
html body main section.page#partners {
  min-height: 0 !important;
  height: auto !important;
  padding-top: clamp(12px, 1.4vh, 20px) !important;
  padding-bottom: clamp(18px, 2vh, 30px) !important;
  margin-bottom: 0 !important;
  overflow: visible !important;
  align-items: flex-start !important;
}

html body main section.page#partners .partner-logo-wall {
  width: min(100% - 210px, 1510px) !important;
  min-height: 0 !important;
  height: auto !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

html body main section.page#partners .partner-logo-grid {
  margin-bottom: 0 !important;
  gap: clamp(18px, 1.55vw, 28px) !important;
}

html body main section.page#partners .partner-logo-card.partner-wordmark {
  grid-template-rows: clamp(128px, 14vh, 160px) auto !important;
}

html body main section.page#partners .partner-wordmark strong,
html body main section.page#partners .partner-kesse img {
  min-height: clamp(128px, 14vh, 160px) !important;
  max-height: clamp(128px, 14vh, 160px) !important;
}

/* Partners page: center the logo grid inside the marked area. */
html body main section.page#partners .partner-logo-wall {
  width: min(100% - 360px, 1500px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

html body main section.page#partners .partner-logo-grid {
  justify-content: center !important;
  justify-items: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

html body main section.page#partners .partner-logo-card {
  width: 100% !important;
  max-width: 460px !important;
  justify-self: center !important;
}

/* Partners page: horizontally center the whole logo group inside the red marked frame. */
html body main section.page#partners .partner-logo-grid {
  transform: translateX(-210px) !important;
}

html body main section.page#contact {
  padding-top: clamp(24px, 2.6vh, 40px) !important;
}

/* Partners page: place the logo wall into the lower marked area. */
html body main section.page#partners .partner-logo-grid {
  margin-top: clamp(220px, 25vh, 260px) !important;
}

html body main section.page#partners {
  padding-bottom: clamp(62px, 7.5vh, 92px) !important;
}

/* Partners page: align each logo row with the marked red boxes. */
html body main section.page#partners .partner-logo-grid {
  margin-top: clamp(145px, 16vh, 184px) !important;
  row-gap: clamp(92px, 10vh, 126px) !important;
}

html body main section.page#partners {
  padding-bottom: clamp(88px, 10vh, 124px) !important;
}

/* Partners page: put the logo marks inside the user's marked boxes. */
html body main section.page#partners .partner-logo-card:nth-child(-n + 3) {
  transform: translateY(clamp(54px, 6.4vh, 70px)) !important;
}

html body main section.page#partners .partner-logo-card:nth-child(n + 4) {
  transform: translateY(clamp(8px, 1.5vh, 18px)) !important;
}

/* Partners page correction: keep all six logos inside the red marked area. */
html body main section.page#partners .partner-logo-card:nth-child(-n + 3) {
  transform: translateY(145px) !important;
}

html body main section.page#partners .partner-logo-card:nth-child(n + 4) {
  transform: translateY(95px) !important;
}

html body main section.page#partners .partner-logo-grid {
  row-gap: clamp(120px, 13vh, 150px) !important;
}

html body main section.page#partners {
  padding-bottom: clamp(140px, 16vh, 180px) !important;
}

/* Partners page final correction: place the logo grid inside the marked red box. */
html body main section.page#partners .partner-logo-wall {
  width: min(100% - 320px, 1340px) !important;
  margin-left: clamp(290px, 16vw, 330px) !important;
  margin-right: auto !important;
  display: block !important;
}

html body main section.page#partners .partner-logo-intro {
  position: absolute !important;
  left: clamp(62px, 4vw, 86px) !important;
  top: clamp(58px, 6vh, 86px) !important;
  max-width: 470px !important;
}

html body main section.page#partners .partner-logo-grid {
  width: 100% !important;
  margin-top: clamp(72px, 8vh, 96px) !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  column-gap: clamp(24px, 2vw, 34px) !important;
  row-gap: clamp(76px, 8vh, 96px) !important;
}

html body main section.page#partners .partner-logo-card:nth-child(-n + 3),
html body main section.page#partners .partner-logo-card:nth-child(n + 4) {
  transform: none !important;
}

html body main section.page#partners .partner-logo-card.partner-wordmark {
  grid-template-rows: clamp(128px, 14vh, 160px) auto !important;
}

html body main section.page#partners .partner-wordmark strong,
html body main section.page#partners .partner-kesse img {
  min-height: clamp(128px, 14vh, 160px) !important;
  max-height: clamp(128px, 14vh, 160px) !important;
}

/* Partners page final lock: center logos strictly inside the red frame. */
html body main section.page#partners .partner-logo-wall {
  width: min(100% - 320px, 1340px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

html body main section.page#partners .partner-logo-grid {
  transform: translateX(120px) !important;
}

/* Partners page final adjustment: restore the label and nudge logos left to center. */
html body main section.page#partners .partner-logo-intro {
  position: absolute !important;
  left: clamp(58px, 4vw, 84px) !important;
  top: clamp(58px, 6vh, 82px) !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 2 !important;
}

html body main section.page#partners .partner-logo-intro .eyebrow {
  display: block !important;
  margin: 0 !important;
  color: #9a121b !important;
  font-weight: 850 !important;
}

html body main section.page#partners .partner-logo-intro h2,
html body main section.page#partners .partner-logo-intro p:not(.eyebrow) {
  display: none !important;
}

html body main section.page#partners .partner-logo-grid {
  transform: translateX(48px) !important;
}

/* Partners page final layout: label top-left, logos centered slightly left. */
html body main section.page#partners {
  position: relative !important;
}

html body main section.page#partners .partner-logo-intro {
  position: absolute !important;
  left: clamp(72px, 4.4vw, 92px) !important;
  top: clamp(58px, 6vh, 78px) !important;
  width: auto !important;
  max-width: none !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 5 !important;
}

html body main section.page#partners .partner-logo-intro .eyebrow {
  display: block !important;
  margin: 0 !important;
  color: #9a121b !important;
  font-size: clamp(16px, 1.05vw, 20px) !important;
  font-weight: 850 !important;
  line-height: 1.2 !important;
}

html body main section.page#partners .partner-logo-intro h2,
html body main section.page#partners .partner-logo-intro p:not(.eyebrow) {
  display: none !important;
}

html body main section.page#partners .partner-logo-wall {
  width: min(100% - 360px, 1500px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

html body main section.page#partners .partner-logo-grid {
  transform: translateX(-34px) !important;
}

/* Partners page: align logo section with the service-process page layout. */
html body main section.page#partners {
  box-sizing: border-box !important;
  display: block !important;
  min-height: auto !important;
  padding: 0 !important;
  overflow: visible !important;
  scroll-margin-top: 53px !important;
}

html body main section.page#partners > div.page-hero.compact,
html body main section.page#partners > div.proof-grid {
  display: none !important;
}

html body main section.page#partners .partner-logo-wall {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  width: min(1840px, calc(100% - 112px)) !important;
  min-height: 0 !important;
  margin: 0 auto !important;
  padding: clamp(82px, 8vw, 132px) 0 clamp(96px, 9vw, 150px) !important;
  border-top: 0 !important;
  background: transparent !important;
  transform: none !important;
}

html body main section.page#partners .partner-logo-intro {
  position: static !important;
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 0 clamp(26px, 3vw, 42px) !important;
  padding: 0 0 clamp(24px, 2.6vw, 36px) !important;
  border-bottom: 1px solid rgba(8, 8, 8, 0.12) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

html body main section.page#partners .partner-logo-intro .eyebrow {
  display: block !important;
  margin: 0 0 18px !important;
  color: #9a121b !important;
  font-size: clamp(16px, 1.05vw, 20px) !important;
  font-weight: 850 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.08em !important;
}

html body main section.page#partners .partner-logo-intro h2 {
  display: block !important;
  max-width: 940px !important;
  margin: 0 0 18px !important;
  color: #111 !important;
  font-family: Inter, Arial, sans-serif !important;
  font-size: clamp(25px, 2.25vw, 36px) !important;
  font-weight: 850 !important;
  line-height: 1.25 !important;
  letter-spacing: 0 !important;
}

html body main section.page#partners .partner-logo-intro p:not(.eyebrow) {
  display: block !important;
  max-width: 880px !important;
  margin: 0 !important;
  color: #777 !important;
  font-size: clamp(14px, 1vw, 18px) !important;
  font-weight: 700 !important;
  line-height: 1.75 !important;
}

html body main section.page#partners .partner-logo-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(24px, 2.4vw, 34px) !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  align-items: stretch !important;
  align-content: start !important;
}

html body main section.page#partners .partner-logo-card.partner-wordmark {
  display: grid !important;
  grid-template-rows: clamp(210px, 15vw, 300px) auto !important;
  gap: 16px !important;
  min-width: 0 !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

html body main section.page#partners .partner-wordmark strong,
html body main section.page#partners .partner-kesse img {
  box-sizing: border-box !important;
  display: grid !important;
  place-items: center !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: clamp(18px, 1.8vw, 32px) !important;
  border: 1px solid rgba(8, 8, 8, 0.12) !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 18px 48px rgba(8, 8, 8, 0.06) !important;
  object-fit: contain !important;
  object-position: center !important;
}

html body main section.page#partners .partner-wordmark strong {
  color: #111 !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: clamp(38px, 4.1vw, 78px) !important;
  font-weight: 900 !important;
  letter-spacing: 0.02em !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

html body main section.page#partners .partner-blum strong {
  color: #fff !important;
  background: #ff671f !important;
  font-style: italic !important;
}

html body main section.page#partners .partner-higold strong {
  color: #1f56ad !important;
}

html body main section.page#partners .partner-gelandi strong {
  color: #69be28 !important;
}

html body main section.page#partners .partner-basistem strong {
  color: #fff !important;
  background: #8b6d4f !important;
}

html body main section.page#partners .partner-peka strong {
  color: #87cce0 !important;
}

html body main section.page#partners .partner-logo-card span {
  display: block !important;
  margin: 0 !important;
  color: #777 !important;
  font-size: clamp(17px, 1.28vw, 24px) !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  text-align: center !important;
}

@media (max-width: 1100px) {
  html body main section.page#partners .partner-logo-wall {
    width: min(100% - 48px, 920px) !important;
  }

  html body main section.page#partners .partner-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  html body main section.page#partners .partner-logo-wall {
    width: min(100% - 32px, 440px) !important;
    padding-top: 46px !important;
  }

  html body main section.page#partners .partner-logo-grid {
    grid-template-columns: 1fr !important;
  }

  html body main section.page#partners .partner-logo-card.partner-wordmark {
    grid-template-rows: 170px auto !important;
  }
}

/* Mobile clean pass: airy single-column pages with calmer typography. */
@media (max-width: 760px) {
  html,
  body {
    max-width: 100% !important;
    overflow-x: hidden !important;
    background: #fff !important;
    color: #0b0b0b !important;
    font-size: 15px !important;
  }

  body {
    -webkit-font-smoothing: antialiased;
  }

  body main {
    width: 100% !important;
    margin: 0 !important;
    background: #fff !important;
  }

  body .site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 50 !important;
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    gap: 12px !important;
    min-height: 58px !important;
    padding: 10px 16px !important;
    background: #050505 !important;
    border-bottom: 0 !important;
  }

  body .brand {
    min-width: 0 !important;
  }

  body .site-header .brand-logo {
    width: auto !important;
    height: auto !important;
    border: 0 !important;
    background: transparent !important;
  }

  body .site-header .brand-logo em {
    color: #fff !important;
    font-size: 25px !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    line-height: 1 !important;
  }

  body .nav-toggle {
    display: grid !important;
    place-items: center !important;
    width: 40px !important;
    height: 40px !important;
    margin: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    border-radius: 6px !important;
    background: transparent !important;
  }

  body .nav-toggle span {
    width: 18px !important;
    height: 2px !important;
    margin: 3px auto !important;
    background: #fff !important;
  }

  body .main-nav,
  body .header-actions {
    display: none !important;
  }

  body .site-header.nav-open .main-nav {
    display: grid !important;
    grid-column: 1 / -1 !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    padding: 10px 0 0 !important;
  }

  body .site-header.nav-open .main-nav a {
    min-height: 38px !important;
    padding: 10px 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-radius: 6px !important;
    color: rgba(255, 255, 255, 0.86) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    font-size: 13px !important;
    font-weight: 650 !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    text-transform: none !important;
  }

  body .site-header.nav-open .main-nav a.is-active {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.16) !important;
  }

  body .site-header.nav-open .header-actions {
    display: grid !important;
    grid-column: 1 / -1 !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding-top: 8px !important;
  }

  body .language-switcher,
  body .site-header .language-trigger,
  body .site-header .whatsapp-cta {
    width: 100% !important;
  }

  body .site-header .language-trigger,
  body .site-header .whatsapp-cta {
    min-height: 42px !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    font-weight: 750 !important;
    letter-spacing: 0 !important;
  }

  body .site-header .language-trigger {
    color: #111 !important;
    background: #fff !important;
  }

  body .site-header .whatsapp-cta {
    color: #fff !important;
    background: #11965b !important;
  }

  body .page {
    scroll-margin-top: 58px !important;
    border-top: 1px solid rgba(8, 8, 8, 0.08) !important;
  }

  body .section,
  body .page-hero,
  body .page-hero.compact,
  body .case-layout,
  body .proof-grid,
  body .catalog-grid,
  body .material-grid,
  body .detail-rows,
  body .process,
  body .faq-list,
  body .contact-shell,
  body .timeline,
  body .trust-strip,
  body .monograph-strip,
  body .advantage-stage,
  body .reading-grid {
    width: calc(100% - 32px) !important;
    max-width: 440px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body .section,
  body .page-hero.compact,
  body .contact-shell {
    padding-top: 42px !important;
    padding-bottom: 30px !important;
  }

  body .page-hero.compact {
    border-bottom: 1px solid rgba(8, 8, 8, 0.08) !important;
    margin-bottom: 22px !important;
  }

  body .eyebrow,
  body .page-hero.compact .eyebrow,
  html body main section.page#partners .partner-logo-intro .eyebrow {
    margin-bottom: 12px !important;
    color: #9a121b !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    letter-spacing: 0.05em !important;
    text-transform: none !important;
  }

  body h1,
  body .page-hero.compact h1,
  body .contact-shell h1 {
    max-width: 100% !important;
    margin-bottom: 14px !important;
    color: #111 !important;
    font-family: Inter, Arial, sans-serif !important;
    font-size: 24px !important;
    font-weight: 780 !important;
    line-height: 1.35 !important;
    letter-spacing: 0 !important;
  }

  body h2 {
    font-size: 22px !important;
    line-height: 1.35 !important;
    font-weight: 780 !important;
    letter-spacing: 0 !important;
  }

  body h3,
  body .catalog-grid h3,
  body .material-grid h3,
  body .process h3,
  body .case-grid h3,
  body .proof-grid h3 {
    margin-bottom: 10px !important;
    color: #111 !important;
    font-size: 20px !important;
    font-weight: 780 !important;
    line-height: 1.35 !important;
    letter-spacing: 0 !important;
  }

  body p,
  body .page-hero.compact p,
  body .catalog-grid p,
  body .material-grid p,
  body .process p,
  body .case-grid p,
  body .proof-grid p,
  body .contact-cards span,
  body details p {
    color: #727272 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.72 !important;
    letter-spacing: 0 !important;
  }

  body .hero {
    min-height: auto !important;
    padding-bottom: 36px !important;
    background: #fff !important;
  }

  body .hero-image {
    position: relative !important;
    width: 100% !important;
    height: 58vh !important;
    min-height: 360px !important;
    max-height: 520px !important;
    object-fit: cover !important;
    object-position: center !important;
    filter: none !important;
  }

  body .hero-overlay {
    display: none !important;
  }

  body .hero-content {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: calc(100% - 32px) !important;
    max-width: 440px !important;
    margin: 24px auto 0 !important;
    padding: 0 !important;
    color: #111 !important;
    text-align: left !important;
  }

  body .cover-title {
    justify-items: start !important;
    gap: 8px !important;
    margin-bottom: 14px !important;
  }

  body .cn-title {
    color: #111 !important;
    font-family: Inter, Arial, sans-serif !important;
    font-size: 28px !important;
    font-weight: 820 !important;
    line-height: 1.22 !important;
    letter-spacing: 0 !important;
    text-shadow: none !important;
  }

  body .en-title {
    max-width: 100% !important;
    padding-top: 0 !important;
    border-top: 0 !important;
    color: #666 !important;
    font-size: 12px !important;
    font-weight: 650 !important;
    line-height: 1.5 !important;
    letter-spacing: 0.06em !important;
  }

  body .hero-copy,
  body .hero-copy span {
    max-width: 100% !important;
    color: #6b6b6b !important;
    font-size: 14px !important;
    line-height: 1.72 !important;
  }

  body .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-top: 18px !important;
  }

  body .btn,
  body .hero .btn.primary,
  body .btn.secondary {
    width: 100% !important;
    min-height: 44px !important;
    border-radius: 6px !important;
    font-size: 13px !important;
    font-weight: 750 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
  }

  body .hero .btn.primary,
  body .btn.primary {
    color: #fff !important;
    background: #111 !important;
  }

  body .btn.secondary {
    color: #111 !important;
    border-color: rgba(8, 8, 8, 0.18) !important;
    background: #fff !important;
  }

  body .trust-strip,
  body .range-grid,
  body .catalog-grid,
  body .material-grid,
  body .proof-grid,
  body .process,
  body .case-grid,
  body .advantage-icons,
  body .reading-grid,
  body .timeline,
  body .contact-cards,
  body .contact-shell,
  body .split-section,
  body .featured-case,
  body .material-panel {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  body .trust-strip {
    margin-top: 28px !important;
    border: 0 !important;
  }

  body .trust-strip div,
  body .range-grid article,
  body .catalog-grid article,
  body .material-grid article,
  body .material-grid article.door-finishes-card > a,
  body .proof-grid article,
  body .process article,
  body .case-grid article,
  body .contact-cards div,
  body details,
  body .rfq-form {
    min-height: 0 !important;
    height: auto !important;
    padding: 0 0 22px !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(8, 8, 8, 0.1) !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body .catalog-grid article.system-family-card,
  body #products .catalog-grid article.system-family-card,
  body #materials .material-grid article,
  body #materials .material-grid article.door-finishes-card > a,
  body #service .process article,
  body #cases .project-case-card {
    display: grid !important;
    grid-template-rows: auto !important;
    align-content: start !important;
  }

  body .product-photo,
  body .material-photo,
  body #materials .material-grid article > .material-photo,
  body #materials .material-grid article.door-finishes-card > a > .material-photo,
  body .proof-photo,
  body .case-photo,
  body #cases .project-case-card .case-photo,
  body .process article img,
  body .image-sim {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 16 / 10 !important;
    margin: 0 0 18px !important;
    padding: 0 !important;
    overflow: hidden !important;
    border-radius: 8px !important;
    background: #f7f7f5 !important;
  }

  body .product-photo img,
  body .material-photo img,
  body #materials .material-grid article > .material-photo img,
  body #materials .material-grid article.door-finishes-card > a > .material-photo img,
  body .proof-photo img,
  body .case-photo img,
  body #cases .project-case-card .case-photo img,
  body .process article img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    padding: 0 !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 8px !important;
    transform: none !important;
  }

  body #materials .material-grid article.door-finishes-card > a > .material-photo img {
    object-fit: contain !important;
    background: #fff !important;
    padding: 10px !important;
  }

  body .system-tags {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin: 16px 0 0 !important;
    padding: 0 !important;
  }

  body .system-tags li {
    padding: 7px 11px !important;
    border: 1px solid rgba(154, 18, 27, 0.18) !important;
    border-radius: 999px !important;
    color: #9a121b !important;
    background: #fffafa !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
  }

  html body main section.page#partners {
    padding: 0 !important;
    overflow: visible !important;
  }

  html body main section.page#partners .partner-logo-wall {
    width: calc(100% - 32px) !important;
    max-width: 440px !important;
    padding: 42px 0 36px !important;
  }

  html body main section.page#partners .partner-logo-intro {
    margin-bottom: 22px !important;
    padding-bottom: 16px !important;
  }

  html body main section.page#partners .partner-logo-intro p:not(.eyebrow) {
    color: #727272 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.72 !important;
  }

  html body main section.page#partners .partner-logo-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  html body main section.page#partners .partner-logo-card.partner-wordmark {
    grid-template-rows: 128px auto !important;
    gap: 10px !important;
  }

  html body main section.page#partners .partner-wordmark strong,
  html body main section.page#partners .partner-kesse img {
    min-height: 128px !important;
    max-height: 128px !important;
    padding: 18px !important;
    border-radius: 8px !important;
  }

  html body main section.page#partners .partner-wordmark strong {
    font-size: 42px !important;
  }

  html body main section.page#partners .partner-logo-card span {
    font-size: 15px !important;
    line-height: 1.3 !important;
  }

  body .contact-shell {
    padding-top: 42px !important;
  }

  body .rfq-form {
    gap: 14px !important;
  }

  body input,
  body select,
  body textarea {
    min-height: 44px !important;
    border-radius: 6px !important;
    background: #fff !important;
    font-size: 14px !important;
  }
}

@media (max-width: 420px) {
  body h1,
  body .page-hero.compact h1,
  body .contact-shell h1 {
    font-size: 22px !important;
  }

  body h3,
  body .catalog-grid h3,
  body .material-grid h3,
  body .process h3,
  body .case-grid h3,
  body .proof-grid h3 {
    font-size: 19px !important;
  }

  body .cn-title {
    font-size: 25px !important;
  }

  body .site-header.nav-open .main-nav {
    grid-template-columns: 1fr !important;
  }
}

/* Mobile material cards: remove desktop black panels and restore a clean proof layout. */
@media (max-width: 760px) {
  html body main section.page#materials .material-grid {
    gap: 22px !important;
  }

  html body main section.page#materials .material-grid article,
  html body main section.page#materials .material-grid article.door-finishes-card,
  html body main section.page#materials .material-grid article.door-finishes-card > a {
    display: grid !important;
    grid-template-rows: auto auto auto auto !important;
    gap: 0 !important;
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 0 0 24px !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(8, 8, 8, 0.1) !important;
    border-radius: 0 !important;
    color: #111 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  html body main section.page#materials .material-grid article > .material-photo,
  html body main section.page#materials .material-grid article.door-finishes-card > a > .material-photo {
    order: 1 !important;
    grid-row: auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 16 / 10 !important;
    margin: 0 0 18px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 8px !important;
    background: #f7f7f5 !important;
    overflow: hidden !important;
  }

  html body main section.page#materials .material-grid article > .material-photo img,
  html body main section.page#materials .material-grid article.door-finishes-card > a > .material-photo img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    padding: 0 !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 8px !important;
  }

  html body main section.page#materials .material-grid article.door-finishes-card > a > .material-photo img {
    object-fit: contain !important;
    padding: 10px !important;
    background: #fff !important;
  }

  html body main section.page#materials .material-grid article h3,
  html body main section.page#materials .material-grid article.door-finishes-card > a h3 {
    order: 2 !important;
    display: block !important;
    grid-row: auto !important;
    margin: 0 0 10px !important;
    padding: 0 !important;
    color: #111 !important;
    background: transparent !important;
    font-size: 20px !important;
    font-weight: 780 !important;
    line-height: 1.35 !important;
  }

  html body main section.page#materials .material-grid article p,
  html body main section.page#materials .material-grid article.door-finishes-card > a p {
    order: 3 !important;
    display: block !important;
    grid-row: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #727272 !important;
    background: transparent !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.72 !important;
  }

  html body main section.page#materials .material-grid article.door-finishes-card > a em {
    order: 4 !important;
    justify-self: start !important;
    margin-top: 16px !important;
  }
}

/* Mobile final correction: compact first screen and calmer reading scale. */
@media (max-width: 760px) {
  html body .page-home .hero,
  html body .hero {
    display: block !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 0 0 34px !important;
    background: #fff !important;
  }

  html body .page-home .hero-image,
  html body .hero-image {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: min(52vh, 430px) !important;
    min-height: 330px !important;
    max-height: 430px !important;
    object-fit: cover !important;
    object-position: center 48% !important;
    filter: none !important;
  }

  html body .hero-content {
    position: relative !important;
    inset: auto !important;
    display: block !important;
    width: calc(100% - 32px) !important;
    max-width: 430px !important;
    height: auto !important;
    margin: 22px auto 0 !important;
    padding: 0 !important;
    color: #111 !important;
    text-align: left !important;
  }

  html body .cover-title {
    display: grid !important;
    justify-items: start !important;
    gap: 8px !important;
    margin: 0 0 12px !important;
  }

  html body .cn-title {
    color: #111 !important;
    font-family: Inter, Arial, sans-serif !important;
    font-size: 28px !important;
    font-weight: 820 !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    text-shadow: none !important;
  }

  html body .en-title {
    max-width: 100% !important;
    color: #686868 !important;
    font-size: 12px !important;
    font-weight: 650 !important;
    line-height: 1.55 !important;
    letter-spacing: 0.04em !important;
  }

  html body .hero-copy,
  html body .hero-copy span {
    color: #6d6d6d !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.7 !important;
  }

  html body .page-hero.compact {
    padding-top: 34px !important;
    padding-bottom: 24px !important;
    margin-bottom: 20px !important;
  }

  html body .page-hero.compact h1,
  html body .contact-shell h1,
  html body h1 {
    font-size: 23px !important;
    font-weight: 780 !important;
    line-height: 1.34 !important;
    letter-spacing: 0 !important;
  }

  html body h2 {
    font-size: 21px !important;
    font-weight: 780 !important;
    line-height: 1.35 !important;
  }

  html body h3,
  html body .catalog-grid h3,
  html body .material-grid h3,
  html body .process h3,
  html body .case-grid h3,
  html body .proof-grid h3,
  html body #cases .project-case-card h3 {
    font-size: 20px !important;
    font-weight: 780 !important;
    line-height: 1.35 !important;
  }

  html body p,
  html body .page-hero.compact p,
  html body .catalog-grid p,
  html body .material-grid p,
  html body .process p,
  html body .case-grid p,
  html body .proof-grid p,
  html body .contact-cards span,
  html body details p {
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.68 !important;
  }

  html body .catalog-grid article,
  html body .material-grid article,
  html body .process article,
  html body #cases .project-case-card,
  html body .proof-grid article {
    padding-bottom: 20px !important;
  }

  html body .catalog-grid,
  html body .material-grid,
  html body .process,
  html body .case-grid,
  html body .proof-grid {
    gap: 22px !important;
  }

  html body .product-photo,
  html body #cases .project-case-card .case-photo,
  html body .case-photo,
  html body .process article img {
    aspect-ratio: 16 / 9 !important;
    margin-bottom: 16px !important;
  }

  html body .system-tags {
    margin-top: 14px !important;
    gap: 8px !important;
  }

  html body .system-tags li {
    padding: 6px 10px !important;
    font-size: 12px !important;
  }

  html body .contact-shell {
    gap: 24px !important;
    padding-top: 34px !important;
  }

  html body .contact-cards {
    gap: 0 !important;
  }

  html body .contact-cards div {
    padding: 16px 0 !important;
  }

  html body .contact-cards strong {
    font-size: 14px !important;
    line-height: 1.3 !important;
  }

  html body .contact-cards span {
    margin-top: 6px !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
  }
}

@media (max-width: 420px) {
  html body .cn-title {
    font-size: 26px !important;
  }

  html body .page-hero.compact h1,
  html body .contact-shell h1,
  html body h1 {
    font-size: 22px !important;
  }

  html body h3,
  html body .catalog-grid h3,
  html body .material-grid h3,
  html body .process h3,
  html body .case-grid h3,
  html body .proof-grid h3,
  html body #cases .project-case-card h3 {
    font-size: 19px !important;
  }
}

/* Mobile homepage readability lock: keep title and CTAs visible below the image. */
@media (max-width: 760px) {
  html body main .page-home .hero-content,
  html body main #home .hero-content {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    display: block !important;
    width: calc(100% - 32px) !important;
    max-width: 430px !important;
    height: auto !important;
    margin: 22px auto 0 !important;
    padding: 0 !important;
    color: #111 !important;
    text-align: left !important;
    opacity: 1 !important;
    transform: none !important;
  }

  html body main .page-home .cover-title,
  html body main #home .cover-title {
    display: grid !important;
    justify-items: start !important;
    gap: 6px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 12px !important;
    padding: 0 !important;
    color: #111 !important;
    text-align: left !important;
  }

  html body main .page-home .cn-title,
  html body main #home .cn-title {
    display: block !important;
    width: auto !important;
    height: auto !important;
    color: #111 !important;
    font-family: Inter, Arial, sans-serif !important;
    font-size: 28px !important;
    font-weight: 820 !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    text-shadow: none !important;
    opacity: 1 !important;
  }

  html body main .page-home .en-title,
  html body main #home .en-title {
    display: block !important;
    max-width: 100% !important;
    color: #666 !important;
    font-size: 13px !important;
    font-weight: 650 !important;
    line-height: 1.45 !important;
    letter-spacing: 0.04em !important;
    opacity: 1 !important;
  }

  html body main .page-home .hero-copy,
  html body main #home .hero-copy {
    display: block !important;
    max-width: 100% !important;
    margin: 0 0 18px !important;
    color: #6d6d6d !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.7 !important;
  }

  html body main .page-home .hero-copy span,
  html body main #home .hero-copy span {
    display: block !important;
    margin-top: 6px !important;
    color: #888 !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
    letter-spacing: 0.03em !important;
  }

  html body main .page-home .hero-actions,
  html body main #home .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin: 0 !important;
  }

  html body main .page-home .trust-strip,
  html body main #home .trust-strip {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0 !important;
    width: calc(100% - 32px) !important;
    max-width: 430px !important;
    margin: 28px auto 0 !important;
    border: 1px solid rgba(8, 8, 8, 0.08) !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    background: #f8f6f0 !important;
  }

  html body main .page-home .trust-strip div,
  html body main #home .trust-strip div {
    padding: 15px 14px !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(8, 8, 8, 0.08) !important;
    background: transparent !important;
  }

  html body main .page-home .trust-strip div:nth-child(odd),
  html body main #home .trust-strip div:nth-child(odd) {
    border-right: 1px solid rgba(8, 8, 8, 0.08) !important;
  }

  html body main .page-home .trust-strip strong,
  html body main #home .trust-strip strong {
    margin-bottom: 5px !important;
    color: #9a121b !important;
    font-size: 13px !important;
    font-weight: 850 !important;
    letter-spacing: 0.04em !important;
  }

  html body main .page-home .trust-strip span,
  html body main #home .trust-strip span {
    color: #666 !important;
    font-size: 12px !important;
    font-weight: 650 !important;
    line-height: 1.35 !important;
  }
}

/* Mobile homepage simplification: remove layered hero copy that conflicts with old desktop art direction. */
@media (max-width: 760px) {
  html body main #home .hero-content,
  html body main #home .hero-facts,
  html body main #home > .trust-strip {
    display: none !important;
  }

  html body main #home .hero {
    margin: 0 !important;
    padding: 0 !important;
  }

  html body main #home .hero-image {
    height: min(58vh, 460px) !important;
    min-height: 360px !important;
    max-height: 460px !important;
    object-position: center center !important;
  }

  html body main #home .monograph-strip {
    margin-top: 34px !important;
  }
}

/* Mobile brand section: split image and copy instead of heavy text over photo. */
@media (max-width: 760px) {
  html body main #brand {
    padding: 0 !important;
    background: #fff !important;
  }

  html body main #brand .brand-editorial {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: calc(100% - 32px) !important;
    max-width: 430px !important;
    margin: 0 auto !important;
    padding: 34px 0 !important;
    gap: 22px !important;
    background: #fff !important;
    color: #111 !important;
  }

  html body main #brand .brand-visual {
    order: 1 !important;
    position: static !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    background: #f6f6f4 !important;
  }

  html body main #brand .brand-visual::before,
  html body main #brand .brand-visual::after {
    display: none !important;
  }

  html body main #brand .brand-visual img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 16 / 10 !important;
    object-fit: cover !important;
    object-position: center !important;
    filter: none !important;
    opacity: 1 !important;
  }

  html body main #brand .brand-visual figcaption {
    position: static !important;
    display: block !important;
    margin: 0 !important;
    padding: 12px 14px !important;
    color: #777 !important;
    background: #fff !important;
    border: 1px solid rgba(8, 8, 8, 0.08) !important;
    border-top: 0 !important;
    font-size: 12px !important;
    font-weight: 650 !important;
    line-height: 1.45 !important;
  }

  html body main #brand .brand-copy {
    order: 2 !important;
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #111 !important;
    background: #fff !important;
    text-align: left !important;
  }

  html body main #brand .brand-copy h1 {
    margin: 0 0 14px !important;
    color: #111 !important;
    font-size: 23px !important;
    font-weight: 780 !important;
    line-height: 1.35 !important;
  }

  html body main #brand .brand-copy p:not(.eyebrow) {
    margin: 0 0 12px !important;
    color: #6f6f6f !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.72 !important;
  }
}

/* Hide legacy homepage split block on all viewports; mobile generic grids were reopening it. */
html body main .page-home .split-section,
html body main .page-home .advantage-stage,
html body main .page-home .trust-strip,
html body main .page-home .monograph-strip {
  display: none !important;
}

/* Mobile fix: restore the image-led homepage sections that were hidden by the desktop cleanup. */
@media (max-width: 760px) {
  html body main .page-home .trust-strip {
    display: grid !important;
  }

  html body main .page-home .monograph-strip,
  html body main .page-home .advantage-stage {
    display: block !important;
  }

  html body main .page-home .space-showcase,
  html body main .page-home .space-stage,
  html body main .page-home .space-stage-track,
  html body main .page-home .advantage-cards,
  html body main .page-home .advantage-cards article {
    display: block !important;
  }

  html body main .page-home .space-slide {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    margin-bottom: 16px !important;
    overflow: hidden !important;
    border-radius: 8px !important;
    background: #f4f4f2 !important;
  }

  html body main .page-home .space-slide:not(:first-child) {
    display: none !important;
  }

  html body main .page-home .space-slide img,
  html body main .page-home .advantage-cards img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 190px !important;
    object-fit: cover !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  html body main .page-home .advantage-cards {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  html body main #partners > .proof-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  html body main #partners .proof-photo,
  html body main #partners .proof-photo img {
    display: block !important;
    width: 100% !important;
    min-height: 190px !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  html body main section.page#partners > div.proof-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: calc(100% - 32px) !important;
    max-width: 430px !important;
    margin: 0 auto 26px !important;
    gap: 16px !important;
  }

  html body main section.page#partners > div.proof-grid article,
  html body main section.page#partners > div.proof-grid figure,
  html body main section.page#partners > div.proof-grid img {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  html body main section.page#partners > div.proof-grid figure {
    height: auto !important;
    min-height: 190px !important;
    overflow: hidden !important;
  }

  html body main section.page#partners > div.proof-grid img {
    height: auto !important;
    min-height: 190px !important;
    object-fit: cover !important;
  }
}
