:root {
  --color-white: #ffffff;
  --color-ink: #1f252b;
  --color-charcoal: #111820;
  --color-muted: #66707a;
  --color-line: #e4e9ee;
  --color-blue: #0b5cab;
  --color-blue-dark: #073f78;
  --color-blue-soft: #eef6ff;
  --color-beige: #f4efe7;
  --color-beige-deep: #e4d3bd;
  --color-beige-soft: #f8fafc;
  --color-orange: #f37021;
  --color-orange-dark: #c94f0d;
  --shadow: 0 22px 64px rgba(17, 24, 32, 0.12);
  --shadow-soft: 0 16px 42px rgba(17, 24, 32, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-white);
  color: var(--color-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

button {
  font: inherit;
}

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

main {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 1rem 5vw;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--color-line);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(37, 35, 33, 0.02);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
}

.brand img {
  width: auto;
  height: auto;
  max-width: min(58vw, 220px);
  max-height: 44px;
  object-fit: contain;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--color-line);
  border-radius: 6px;
}

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

.site-nav {
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  padding: 0.75rem 5vw 1.25rem;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-line);
}

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

.site-nav a {
  padding: 0.85rem 0;
  color: var(--color-muted);
  font-weight: 620;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--color-ink);
}

.hero {
  display: grid;
  gap: 2rem;
  min-height: calc(100vh - 72px);
  padding: 4.5rem 5vw 2.5rem;
  align-items: center;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--color-orange-dark);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.45rem, 9vw, 5.25rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.75rem, 6vw, 3rem);
  line-height: 1.08;
}

h3 {
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.hero p,
.split p,
.product-card p,
.project-card p,
.contact-card p,
.site-footer p {
  color: var(--color-muted);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 580px;
  font-size: 1.05rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.05rem;
  border-radius: 6px;
  font-weight: 760;
  line-height: 1.1;
  text-align: center;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--color-white);
  background: var(--color-orange);
  box-shadow: 0 10px 24px rgba(243, 112, 33, 0.2);
}

.button.primary:hover {
  background: var(--color-orange-dark);
}

.button.secondary {
  color: var(--color-blue-dark);
  border: 1px solid var(--color-line);
}

.button.secondary:hover {
  border-color: var(--color-blue);
  color: var(--color-blue);
}

.button.secondary.light {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.36);
}

.button.secondary.light:hover {
  border-color: var(--color-white);
}

.button.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.hero-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
  min-height: 340px;
}

.tile-sample,
.product-image {
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0)),
    var(--color-beige);
  box-shadow: var(--shadow);
}

.tile-sample.large {
  grid-row: 1 / span 2;
  background-color: #ddd6cb;
}

.tile-sample.warm {
  background-color: #c9a98b;
}

.tile-sample.charcoal {
  background-color: #3d3a36;
}

.home-page main {
  background: var(--color-white);
}

.home-hero {
  grid-template-columns: minmax(0, 1fr);
  min-height: auto;
  padding-top: clamp(4.25rem, 8vw, 7.25rem);
  padding-bottom: clamp(3rem, 7vw, 6rem);
}

.home-hero .hero-copy {
  max-width: 760px;
}

.home-hero h1 {
  max-width: 880px;
  font-size: clamp(2.65rem, 8vw, 5.6rem);
  letter-spacing: 0;
}

.home-hero .hero-copy > p:not(.eyebrow) {
  max-width: 660px;
  color: #4f5b66;
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.premium-bathroom-visual {
  isolation: isolate;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--color-line);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82) 0 1px, transparent 1px 96px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.72) 0 1px, transparent 1px 96px),
    #edf2f6;
  box-shadow: var(--shadow);
}

.premium-bathroom-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 58%, rgba(11, 92, 171, 0.08) 58% 100%),
    linear-gradient(180deg, transparent 0 66%, rgba(31, 37, 43, 0.08) 66% 100%);
}

.bathroom-wall,
.bathroom-vanity,
.bathroom-basin,
.bathroom-mirror,
.bathroom-tile-stack {
  position: absolute;
  z-index: 1;
}

.bathroom-wall {
  right: 12%;
  bottom: 0;
  width: 23%;
  height: 80%;
  border-left: 1px solid rgba(17, 24, 32, 0.12);
  background:
    repeating-linear-gradient(90deg, rgba(17, 24, 32, 0.08) 0 1px, transparent 1px 35px),
    #f7f9fb;
}

.bathroom-vanity {
  right: 12%;
  bottom: 16%;
  width: 38%;
  height: 22%;
  border-radius: 10px;
  background: #314052;
  box-shadow: 0 22px 36px rgba(17, 24, 32, 0.18);
}

.bathroom-basin {
  right: 22%;
  bottom: 34%;
  width: 18%;
  height: 9%;
  border-radius: 50% 50% 45% 45%;
  background: var(--color-white);
  border: 1px solid rgba(17, 24, 32, 0.12);
}

.bathroom-mirror {
  right: 24%;
  top: 16%;
  width: 15%;
  height: 34%;
  border: 10px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px 999px 42px 42px;
  background: rgba(11, 92, 171, 0.08);
  box-shadow: 0 18px 36px rgba(17, 24, 32, 0.08);
}

.bathroom-tile-stack {
  left: 10%;
  bottom: 12%;
  width: 34%;
  height: 62%;
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.5), transparent 40%),
    repeating-linear-gradient(90deg, #a57955 0 28px, #c19a71 28px 54px, #8b6247 54px 82px);
  box-shadow: 0 24px 42px rgba(17, 24, 32, 0.18);
}

.home-section {
  padding-top: clamp(4rem, 7vw, 6.5rem);
  padding-bottom: clamp(4rem, 7vw, 6.5rem);
}

.home-page .section-heading {
  max-width: 820px;
  margin-bottom: 2.15rem;
}

.home-page .section-heading h2 {
  color: var(--color-charcoal);
}

.home-page .category-grid {
  gap: 1.1rem;
}

.home-page .category-card {
  gap: 1rem;
  justify-content: space-between;
  min-height: 240px;
  padding: 1rem;
  overflow: hidden;
  border-radius: 16px;
  background: var(--color-white);
}

.home-page .category-card:hover {
  border-color: rgba(11, 92, 171, 0.28);
  box-shadow: var(--shadow-soft);
}

.category-visual {
  position: relative;
  display: block;
  min-height: 124px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--color-blue-soft);
}

.category-visual::before,
.category-visual::after {
  content: "";
  position: absolute;
}

.category-visual::before {
  inset: 18% 16% 18% 16%;
  border: 1px solid rgba(11, 92, 171, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
}

.category-card-wood-grain .category-visual {
  background:
    repeating-linear-gradient(90deg, #a47755 0 18px, #c09973 18px 36px, #8a6046 36px 54px);
}

.category-card-wall-mounted .category-visual::before,
.category-card-toilets .category-visual::before {
  inset: 28% 28% 14%;
  border-radius: 50% 50% 18px 18px;
}

.category-card-bathroom-cabinets .category-visual::before {
  inset: 18% 18% 22%;
  border-radius: 10px;
  background: #334254;
}

.category-card-basins .category-visual::before,
.category-card-sinks .category-visual::before {
  inset: 34% 18% 24%;
  border-radius: 50%;
}

.category-card-faucets .category-visual::before {
  inset: 22% 42% 28% 28%;
  border-radius: 999px 999px 10px 10px;
  border-width: 10px 10px 0 0;
  background: transparent;
}

.category-card-accessories .category-visual::before {
  inset: 24% 24% 24% 24%;
  border-radius: 999px;
}

.home-page .category-card small {
  color: var(--color-blue-dark);
  font-weight: 760;
}

.why-buildcor {
  background: var(--color-beige-soft);
}

.home-page .reason-grid {
  gap: 1rem;
}

.home-page .reason-card {
  min-height: 230px;
  padding: 1.35rem;
  border-radius: 16px;
}

.home-page .reason-card span {
  color: var(--color-blue);
}

.home-page .reason-card p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 0.94rem;
}

.home-page .product-card,
.home-page .project-card {
  border-radius: 16px;
  box-shadow: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.home-page .product-card:hover,
.home-page .project-card:hover {
  transform: translateY(-2px);
  border-color: rgba(11, 92, 171, 0.24);
  box-shadow: var(--shadow-soft);
}

.projects-preview {
  background: var(--color-beige-soft);
}

.dealer-network-panel {
  position: relative;
  gap: 1.5rem;
  overflow: hidden;
  background: var(--color-charcoal);
}

.dealer-network-panel p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.kenya-map-placeholder {
  position: relative;
  min-height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background:
    radial-gradient(circle at 52% 34%, rgba(243, 112, 33, 0.95) 0 5px, transparent 6px),
    radial-gradient(circle at 62% 66%, rgba(243, 112, 33, 0.9) 0 5px, transparent 6px),
    radial-gradient(circle at 34% 70%, rgba(243, 112, 33, 0.8) 0 5px, transparent 6px),
    linear-gradient(140deg, rgba(11, 92, 171, 0.38), rgba(255, 255, 255, 0.06));
}

.kenya-map-placeholder::before {
  content: "";
  position: absolute;
  inset: 14% 24% 12% 26%;
  border: 2px solid rgba(255, 255, 255, 0.58);
  border-radius: 42% 48% 36% 52%;
  transform: rotate(-8deg);
}

.kenya-map-placeholder span {
  position: absolute;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.72rem;
  font-weight: 760;
}

.kenya-map-placeholder span:nth-child(1) {
  top: 29%;
  left: 56%;
}

.kenya-map-placeholder span:nth-child(2) {
  top: 63%;
  left: 65%;
}

.kenya-map-placeholder span:nth-child(3) {
  top: 68%;
  left: 30%;
}

.final-cta-panel {
  background: var(--color-blue-soft);
  border-color: rgba(11, 92, 171, 0.16);
}

.home-page .site-header {
  border-bottom-color: rgba(228, 233, 238, 0.78);
}

.home-page .hero {
  display: block;
}

.home-hero {
  padding: clamp(3.25rem, 6vw, 5.5rem) 5vw;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.home-hero-inner,
.trust-strip-inner,
.home-page .section-heading,
.home-page .category-grid,
.home-page .reason-grid,
.home-page .product-grid,
.home-page .project-grid,
.home-page .dealer-network-panel,
.home-page .final-cta-panel,
.home-footer {
  width: min(100%, 1200px);
  margin-inline: auto;
}

.home-hero-inner {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.home-hero .eyebrow {
  color: var(--color-blue);
}

.home-hero h1 {
  max-width: 760px;
  color: var(--color-charcoal);
  font-size: clamp(2.85rem, 6.8vw, 5.4rem);
  line-height: 0.98;
}

.home-hero .hero-copy > p:not(.eyebrow) {
  max-width: 640px;
  color: #4f5b66;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

.home-hero .button.secondary {
  color: var(--color-charcoal);
  border-color: rgba(17, 24, 32, 0.34);
  background: rgba(255, 255, 255, 0.62);
}

.premium-bathroom-visual {
  min-height: clamp(360px, 46vw, 610px);
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0 1px, transparent 1px 108px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.72) 0 1px, transparent 1px 108px),
    #edf2f6;
}

.bathroom-vanity {
  background: #243447;
}

.trust-strip {
  padding: 0 5vw;
  background: var(--color-white);
}

.trust-strip-inner {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 18px;
  background: var(--color-white);
  box-shadow: 0 16px 38px rgba(17, 24, 32, 0.06);
}

.trust-item {
  display: grid;
  gap: 0.45rem;
  padding: 1.15rem;
  border-bottom: 1px solid var(--color-line);
}

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

.trust-mark {
  color: var(--color-orange-dark);
  font-size: 0.72rem;
  font-weight: 820;
}

.trust-item strong {
  color: var(--color-charcoal);
  font-size: 0.98rem;
}

.home-page .section-heading {
  margin-bottom: 2.4rem;
}

.home-page .section-heading h2 {
  max-width: 820px;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.home-page .category-card {
  min-height: 310px;
  padding: 1.1rem;
  border-radius: 20px;
  background: #ffffff;
}

.home-page .category-card .category-name {
  min-height: 2.6em;
  color: var(--color-charcoal);
  font-size: 1.22rem;
  line-height: 1.16;
}

.home-page .category-card small {
  font-size: 0.86rem;
}

.category-arrow {
  color: var(--color-orange-dark);
  font-size: 0.9rem;
  font-weight: 760;
}

.category-visual {
  min-height: 170px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.08)),
    #edf3f8;
}

.category-card-wall-mounted .category-visual,
.category-card-toilets .category-visual,
.category-card-basins .category-visual {
  background: #f4f7fa;
}

.category-card-bathroom-cabinets .category-visual,
.category-card-faucets .category-visual,
.category-card-accessories .category-visual {
  background: #eef4f8;
}

.why-buildcor {
  background: #f8fafc;
}

.home-page .reason-card {
  display: grid;
  align-content: start;
  gap: 1rem;
  min-height: 250px;
  padding: 1.55rem;
  border-radius: 18px;
}

.reason-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--color-blue);
  border: 1px solid rgba(11, 92, 171, 0.18);
  border-radius: 50%;
  background: var(--color-blue-soft);
  font-size: 0.82rem;
  font-weight: 820;
}

.home-page .reason-card h3 {
  margin-bottom: 0;
  color: var(--color-charcoal);
  font-size: 1.15rem;
}

.home-page .catalog-card {
  gap: 0.72rem;
  padding: 1rem;
  border-radius: 18px;
}

.home-page .catalog-card .product-image {
  aspect-ratio: 1 / 1;
  min-height: 260px;
  border-radius: 14px;
  background: #f7f9fb;
}

.home-page .catalog-card h3 {
  color: var(--color-charcoal);
  font-size: 1.08rem;
}

.product-sku {
  color: var(--color-orange-dark);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.home-page .product-meta {
  justify-content: flex-start;
}

.home-page .product-meta span {
  color: var(--color-muted);
}

.project-application-grid .application-card {
  padding: 1rem;
  border-radius: 18px;
  background: var(--color-white);
}

.architectural-placeholder {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  border-radius: 14px;
  background:
    linear-gradient(90deg, transparent 0 54%, rgba(11, 92, 171, 0.08) 54% 100%),
    #eef3f6;
}

.architectural-placeholder::before,
.architectural-placeholder::after {
  content: "";
  position: absolute;
}

.architectural-placeholder::before {
  inset: 18% 18% 0 16%;
  border: 1px solid rgba(17, 24, 32, 0.14);
  border-bottom: 0;
  background:
    repeating-linear-gradient(90deg, rgba(17, 24, 32, 0.08) 0 1px, transparent 1px 46px),
    rgba(255, 255, 255, 0.5);
}

.architectural-placeholder::after {
  right: 12%;
  bottom: 0;
  width: 36%;
  height: 38%;
  border-radius: 12px 12px 0 0;
  background: rgba(36, 52, 71, 0.86);
}

.application-card.commercial .architectural-placeholder {
  background:
    linear-gradient(90deg, transparent 0 62%, rgba(243, 112, 33, 0.08) 62% 100%),
    #f0f4f7;
}

.application-card.hospitality .architectural-placeholder {
  background:
    linear-gradient(90deg, transparent 0 45%, rgba(11, 92, 171, 0.1) 45% 100%),
    #eef2f4;
}

.dealer-network-panel {
  border-radius: 24px;
  background: #0d2947;
}

.dealer-network-panel h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.kenya-map-placeholder {
  background:
    radial-gradient(circle at 52% 34%, rgba(243, 112, 33, 0.95) 0 5px, transparent 6px),
    radial-gradient(circle at 62% 66%, rgba(243, 112, 33, 0.9) 0 5px, transparent 6px),
    radial-gradient(circle at 34% 70%, rgba(243, 112, 33, 0.8) 0 5px, transparent 6px),
    #12375f;
}

.final-cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78)),
    #eef5fb;
}

.final-cta-panel::after {
  content: "";
  position: absolute;
  right: 3%;
  bottom: -22%;
  width: min(38vw, 360px);
  aspect-ratio: 1;
  border: 1px solid rgba(11, 92, 171, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.36);
}

.final-cta-panel > * {
  position: relative;
  z-index: 1;
}

.final-cta-panel p:not(.eyebrow) {
  max-width: 640px;
  margin: 0;
  color: var(--color-muted);
}

.home-footer {
  grid-template-columns: 1.5fr repeat(4, minmax(120px, 1fr));
  align-items: start;
  gap: 2rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.footer-brand-column p {
  max-width: 320px;
}

.footer-column {
  display: grid;
  gap: 0.62rem;
  align-content: start;
}

.footer-column h2 {
  margin: 0 0 0.25rem;
  color: var(--color-white);
  font-size: 0.82rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 650;
}

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

.footer-contact-column .footer-link,
.footer-contact-column .whatsapp-link {
  justify-self: start;
}

.section {
  padding: 4.5rem 5vw;
}

.section.beige {
  background: var(--color-beige);
}

.section.beige-light {
  background: var(--color-beige-soft);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 1.75rem;
}

.section-heading h2,
.page-hero h1 {
  max-width: 820px;
}

.category-grid,
.product-grid,
.catalog-grid,
.project-grid,
.dealer-grid,
.contact-grid,
.profile-grid,
.reason-grid {
  display: grid;
  gap: 1rem;
}

.category-card,
.product-card,
.project-card,
.dealer-card,
.contact-card,
.profile-card,
.reason-card {
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-white);
}

.profile-card {
  padding: 1.25rem;
}

.profile-card p:last-child {
  margin-bottom: 0;
  color: var(--color-muted);
}

.category-card {
  display: flex;
  min-height: 148px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.15rem;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.category-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-beige-deep);
  box-shadow: var(--shadow-soft);
}

.category-card span {
  font-size: 1.18rem;
  font-weight: 760;
}

.category-card small {
  color: var(--color-muted);
}

.product-card,
.project-card,
.dealer-card,
.contact-card {
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}

.product-image {
  min-height: 180px;
  margin-bottom: 1rem;
  box-shadow: none;
}

.media-frame {
  position: relative;
  display: grid;
  overflow: hidden;
  place-items: center;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.media-frame picture,
.product-main-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.media-frame > span {
  display: none;
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.media-frame.is-placeholder > span {
  display: block;
}

.product-image.stone {
  background-color: #d8d4cc;
}

.product-image.clay {
  background-color: #bd9c84;
}

.product-image.sand {
  background-color: #e4d3bd;
}

.product-image.wood {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0) 34%),
    repeating-linear-gradient(90deg, #b9926e 0 18px, #c7a37d 18px 36px, #a67d5c 36px 54px);
}

.product-image.sink {
  background-color: #c9c3ba;
}

.product-image.faucet {
  background-color: #d2c6b6;
}

.product-card a,
.project-card a,
.dealer-card a {
  color: var(--color-orange-dark);
  font-weight: 760;
}

.catalog-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 100%;
}

.catalog-card .product-image {
  aspect-ratio: 4 / 5;
  margin-bottom: 0;
  background: var(--color-beige-soft);
}

.product-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.product-meta span {
  color: var(--color-muted);
  font-size: 0.84rem;
  font-weight: 760;
}

.product-meta small {
  color: var(--color-orange-dark);
  font-size: 0.78rem;
  font-weight: 760;
  text-align: right;
}

.catalog-card h3 {
  margin-bottom: 0;
  font-size: 1.08rem;
}

.catalog-card p {
  margin-bottom: 0;
}

.catalog-message {
  padding: 1rem;
  color: var(--color-muted);
  background: var(--color-beige-soft);
  border: 1px solid var(--color-line);
  border-radius: 8px;
}

.card-actions {
  display: grid;
  gap: 0.65rem;
  margin-top: auto;
}

.card-actions .button {
  width: 100%;
}

.button.compact {
  min-height: 44px;
  padding: 0.7rem 0.8rem;
  font-size: 0.92rem;
}

.reason-card {
  padding: 1.15rem;
}

.reason-card span {
  display: inline-flex;
  margin-bottom: 1.25rem;
  color: var(--color-orange-dark);
  font-size: 0.82rem;
  font-weight: 820;
}

.reason-card h3 {
  max-width: 320px;
  margin-bottom: 0;
  font-size: 1.05rem;
  line-height: 1.32;
}

.project-image {
  min-height: 210px;
  margin-bottom: 1rem;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0)),
    var(--color-beige);
}

.project-image.warm-room {
  background-color: #d6c0a5;
}

.project-image.bath-room {
  background-color: #d7d7d2;
}

.project-image.kitchen-room {
  background-color: #c9aa85;
}

.cta-band {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  padding: 1.4rem;
  color: var(--color-white);
  background: var(--color-ink);
  border-radius: 8px;
}

.cta-band h2,
.cta-panel h2 {
  margin-bottom: 0;
}

.cta-band .eyebrow,
.cta-panel .eyebrow {
  color: var(--color-orange);
}

.cta-section {
  padding-top: 0;
}

.cta-panel {
  display: grid;
  gap: 1rem;
  justify-items: start;
  padding: 2rem 1.4rem;
  background: var(--color-beige);
  border: 1px solid var(--color-line);
  border-radius: 8px;
}

.split {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.page-hero {
  padding: 4.25rem 5vw 2.75rem;
  background: var(--color-beige);
}

.page-hero.dealer-hero {
  padding-top: 2.9rem;
  padding-bottom: 1.9rem;
}

.page-hero p {
  max-width: 720px;
  color: var(--color-muted);
}

.filter-bar {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  margin-bottom: 1.4rem;
  scrollbar-width: none;
}

.filter-bar::-webkit-scrollbar {
  display: none;
}

.filter-button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-muted);
  font-weight: 680;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.filter-button:hover {
  border-color: var(--color-beige-deep);
  color: var(--color-ink);
}

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

.locator-controls {
  display: grid;
  gap: 1.15rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: var(--color-beige-soft);
  border: 1px solid var(--color-line);
  border-radius: 8px;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field span {
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 760;
}

.form-field input,
.form-field select {
  width: 100%;
  min-height: 46px;
  padding: 0.75rem 0.85rem;
  color: var(--color-ink);
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 6px;
  font: inherit;
}

.search-field {
  position: relative;
}

.search-field::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  bottom: 0.92rem;
  width: 0.68rem;
  height: 0.68rem;
  border: 2px solid var(--color-muted);
  border-radius: 50%;
  opacity: 0.65;
}

.search-field::before {
  content: "";
  position: absolute;
  left: 1.48rem;
  bottom: 0.82rem;
  width: 0.42rem;
  height: 2px;
  background: var(--color-muted);
  opacity: 0.65;
  transform: rotate(45deg);
  transform-origin: left center;
}

.search-field input {
  padding-left: 2.45rem;
}

.form-field input:focus,
.form-field select:focus {
  outline: 2px solid rgba(243, 112, 33, 0.2);
  border-color: var(--color-orange);
}

.locator-card {
  display: grid;
  gap: 0.95rem;
}

.locator-card h3,
.locator-card p {
  margin-bottom: 0;
}

.dealer-heading {
  display: grid;
  gap: 0.55rem;
  align-items: start;
}

.dealer-level-badge {
  justify-self: start;
  padding: 0.35rem 0.55rem;
  color: var(--color-orange-dark);
  background: var(--color-beige-soft);
  border: 1px solid var(--color-beige-deep);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 760;
}

.dealer-city-label {
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 760;
  text-transform: uppercase;
}

.dealer-info-list {
  display: grid;
  gap: 0.45rem;
  padding-bottom: 0.25rem;
}

.dealer-info-list p {
  display: grid;
  grid-template-columns: 1.45rem 1fr;
  align-items: start;
  color: var(--color-muted);
}

.mini-icon {
  display: inline-grid;
  width: 1.05rem;
  height: 1.05rem;
  place-items: center;
  color: var(--color-orange-dark);
  background: var(--color-beige-soft);
  border: 1px solid var(--color-line);
  border-radius: 4px;
  font-size: 0.58rem;
  font-weight: 820;
  line-height: 1;
}

.dealer-categories,
.dealer-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.dealer-categories {
  padding-top: 0.25rem;
}

.dealer-categories span,
.dealer-services span {
  padding: 0.35rem 0.55rem;
  color: var(--color-muted);
  background: var(--color-beige-soft);
  border: 1px solid var(--color-line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 680;
}

.dealer-services span {
  color: var(--color-ink);
  background: var(--color-white);
  border-color: var(--color-beige-deep);
}

.product-detail-root {
  display: grid;
  gap: 0;
}

.detail-media-column {
  display: grid;
  align-content: start;
  gap: 0.75rem;
}

.product-overview {
  display: grid;
  gap: 1.75rem;
  padding: 2rem 5vw 4rem;
}

.product-main-media {
  display: grid;
  min-height: 420px;
  overflow: hidden;
  place-items: center;
  border-radius: 8px;
  background: var(--color-beige-soft);
  border: 1px solid var(--color-line);
}

.product-main-media img {
  width: 100%;
  height: 100%;
  max-height: 680px;
  object-fit: contain;
}

.product-thumbnail-strip {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 0.1rem 0 0.3rem;
}

.product-thumbnail {
  flex: 0 0 76px;
  width: 76px;
  height: 76px;
  overflow: hidden;
  padding: 0;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 6px;
  cursor: pointer;
}

.product-thumbnail.is-active {
  border: 2px solid var(--color-orange);
}

.product-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-summary {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.product-summary h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.product-type {
  margin: 0;
  color: var(--color-orange-dark);
  font-size: 0.9rem;
  font-weight: 760;
  text-transform: uppercase;
}

.product-lead {
  margin: 0;
  color: var(--color-ink);
  font-size: 1.1rem;
  font-weight: 650;
}

.product-summary > p {
  color: var(--color-muted);
}

.detail-meta {
  justify-content: flex-start;
}

.detail-message {
  padding: 1.15rem;
  background: var(--color-beige-soft);
  border: 1px solid var(--color-line);
  border-radius: 8px;
}

.detail-message h2 {
  margin-bottom: 0.45rem;
}

.detail-message p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.product-long-description {
  color: var(--color-ink);
}

.product-section {
  padding: 4rem 5vw;
}

.product-section:nth-of-type(even) {
  background: var(--color-beige-soft);
}

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

.product-feature-card {
  display: grid;
  align-content: start;
  gap: 1rem;
  min-height: 150px;
  padding: 1.1rem;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 8px;
}

.product-feature-card h3 {
  margin: 0;
  font-size: 1rem;
}

.feature-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--color-white);
  background: var(--color-ink);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 820;
}

.specification-section {
  background: var(--color-white);
}

.specification-table {
  display: grid;
  max-width: 920px;
  margin: 0;
  border-top: 1px solid var(--color-line);
}

.specification-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.45fr) 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-line);
}

.specification-row dt {
  color: var(--color-muted);
  font-weight: 700;
}

.specification-row dd {
  margin: 0;
  font-weight: 650;
}

.product-inquiry-panel {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  margin: 0 5vw 5rem;
  padding: 1.5rem;
  color: var(--color-white);
  background: var(--color-ink);
  border-radius: 8px;
}

.product-inquiry-panel h2,
.product-inquiry-panel p {
  margin-bottom: 0;
}

.product-inquiry-panel .eyebrow {
  color: var(--color-orange);
}

.floating-whatsapp {
  display: none;
}

.mobile-inquiry-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem 5vw;
  color: var(--color-white);
  background: var(--color-ink);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 -8px 28px rgba(37, 35, 33, 0.18);
}

.mobile-inquiry-bar span {
  font-size: 0.78rem;
  font-weight: 700;
}

.has-product-inquiry {
  padding-bottom: 76px;
}

.spec-note {
  padding: 1rem;
  color: var(--color-muted);
  background: var(--color-beige);
  border-radius: 8px;
}

.map-placeholder {
  display: grid;
  height: 160px;
  place-items: center;
  margin-top: 1.25rem;
  padding: 1rem;
  color: var(--color-muted);
  background: var(--color-beige);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  text-align: center;
}

.dealer-count {
  margin-bottom: 1rem;
  color: var(--color-ink);
  font-size: 0.95rem;
  font-weight: 760;
}

.site-footer {
  display: grid;
  gap: 1rem;
  padding: 2rem 5vw;
  background: var(--color-ink);
  color: var(--color-white);
}

.site-footer p {
  margin-bottom: 0;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-link,
.whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  color: var(--color-white);
  background: var(--color-orange);
  font-weight: 760;
}

.footer-link {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
}

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

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 1.25rem;
    padding: 0;
    border: 0;
  }

  .site-nav a {
    padding: 0;
  }

  .page-hero {
    padding-top: 5rem;
    padding-bottom: 3.25rem;
  }

  .page-hero.dealer-hero {
    padding-top: 3.4rem;
    padding-bottom: 2.25rem;
  }

  .hero,
  .split,
  .product-overview {
    grid-template-columns: 1fr 1fr;
  }

  .home-hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
    gap: clamp(2rem, 5vw, 5rem);
  }

  .product-overview {
    gap: 3rem;
    padding-top: 3rem;
  }

  .product-feature-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .product-inquiry-panel {
    grid-template-columns: 1fr auto;
    padding: 2rem;
  }

  .mobile-inquiry-bar {
    display: none;
  }

  .has-product-inquiry {
    padding-bottom: 0;
  }

  .floating-whatsapp {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 20;
    display: inline-flex;
    gap: 0.55rem;
    align-items: center;
    min-height: 48px;
    padding: 0.65rem 0.9rem;
    color: var(--color-white);
    background: var(--color-orange);
    border-radius: 6px;
    box-shadow: var(--shadow);
    font-size: 0.9rem;
  }

  .floating-whatsapp span {
    display: inline-grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 820;
  }

  .category-grid,
  .product-grid,
  .catalog-grid,
  .project-grid,
  .dealer-grid,
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

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

  .locator-controls {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }

  .map-placeholder {
    height: 220px;
  }

  .cta-band {
    grid-template-columns: 1fr auto;
    padding: 2rem;
  }

  .dealer-network-panel {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr) auto;
    padding: 2.5rem;
  }

  .cta-panel {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 2.25rem;
  }

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

@media (min-width: 1040px) {
  .home-page .category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 759px) {
  .home-page .actions,
  .home-page .actions .button,
  .home-page .cta-panel .button,
  .home-page .cta-band .button {
    width: 100%;
  }

  .premium-bathroom-visual {
    min-height: 330px;
    border-radius: 14px;
  }

  .bathroom-tile-stack {
    left: 7%;
    width: 38%;
  }

  .bathroom-vanity {
    right: 8%;
    width: 48%;
  }

  .home-page .category-card {
    min-height: 220px;
  }

  .home-page .reason-card {
    min-height: auto;
  }

  .kenya-map-placeholder {
    min-height: 220px;
  }
}

@media (max-width: 820px) {
  .hero-slide,
  .hero-slide.is-active {
    transform: none;
  }

  .home-footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    overflow: hidden;
  }

  .home-footer .footer-brand-column,
  .home-footer .footer-column {
    width: 100%;
    max-width: none;
    min-width: 0;
  }
}

/* Buildcor Homepage V5 - final effective polish */
.home-page .site-header {
  padding-block: 0.86rem;
  box-shadow: 0 10px 34px rgba(17, 24, 32, 0.04);
}

.home-page .site-nav a {
  position: relative;
  padding-block: 0.5rem;
  color: rgba(17, 24, 32, 0.64);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.home-page .site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.18rem;
  height: 1px;
  background: var(--v3-orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--v5-ease);
}

.home-page .site-nav a:hover::after,
.home-page .site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.visual-hero h1,
.home-page .section-heading h2,
.image-cta h2 {
  text-wrap: balance;
}

.visual-hero h1 {
  max-width: 820px;
  font-size: clamp(3.15rem, 5.8vw, 6.05rem);
}

.visual-hero .hero-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.visual-hero .button.secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.home-section {
  padding-top: clamp(6rem, 8vw, 9rem);
  padding-bottom: clamp(6rem, 8vw, 9rem);
}

.home-page .section-heading {
  margin-bottom: clamp(2.75rem, 4.5vw, 4.25rem);
}

.official-image-card {
  isolation: isolate;
  box-shadow: var(--v5-shadow-image);
  transition: transform 360ms var(--v5-ease), box-shadow 360ms var(--v5-ease);
}

.official-image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 42px 110px rgba(9, 13, 17, 0.22);
}

.official-image-card img {
  transition: transform 1000ms var(--v5-ease), filter 360ms ease;
}

.official-image-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.03) contrast(1.03);
}

.brand-trust .reason-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 1rem;
  min-height: 260px;
  transition: background 260ms ease, transform 260ms var(--v5-ease);
}

.brand-trust .reason-icon {
  width: auto;
  height: auto;
  justify-self: start;
  border: 0;
  border-radius: 0;
  color: var(--v3-gold);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.18em;
}

.brand-trust .reason-icon::before {
  content: "0";
}

.home-page .catalog-card {
  display: flex;
  flex-direction: column;
  box-shadow: var(--v5-shadow-card);
  transition: transform 280ms var(--v5-ease), box-shadow 280ms var(--v5-ease), border-color 280ms ease;
}

.home-page .catalog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 137, 77, 0.34);
  box-shadow: 0 28px 78px rgba(17, 24, 32, 0.13);
}

.home-page .catalog-card .product-image {
  min-height: 380px;
  background: #f8fafb;
}

.visual-projects {
  background: linear-gradient(180deg, #111820 0%, #0b1015 100%);
}

.case-study-card::after,
.project-application-grid .official-image-card::after {
  background:
    linear-gradient(180deg, transparent 18%, rgba(7, 10, 13, 0.08) 42%, rgba(7, 10, 13, 0.82) 100%),
    linear-gradient(90deg, rgba(7, 10, 13, 0.2), transparent 68%);
}

.about-preview-section .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(1.5rem, 4vw, 3rem);
  border-top-color: rgba(184, 137, 77, 0.4);
}

.about-preview-section .section-heading .eyebrow,
.about-preview-section .section-heading h2,
.about-preview-section .section-heading p {
  grid-column: 1;
}

.about-preview-link {
  grid-column: 2;
  grid-row: 2 / span 2;
  align-self: end;
  margin-top: 0;
}

.dealer-network-panel {
  padding: clamp(2rem, 4vw, 3.4rem);
  border-top-width: 1px;
}

.image-cta {
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(9, 13, 17, 0.18);
}

.home-footer .footer-column h2 {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-footer a {
  transition: color 180ms ease, transform 180ms ease;
}

.home-footer a:hover {
  transform: translateX(2px);
}

@media (max-width: 980px) {
  .about-preview-section .section-heading {
    grid-template-columns: 1fr;
  }

  .about-preview-link {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }
}

@media (max-width: 759px) {
  .visual-hero h1 {
    font-size: clamp(2.75rem, 12.5vw, 4.2rem);
    line-height: 0.96;
  }

  .visual-hero .hero-copy > p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .home-section {
    padding-top: clamp(4.5rem, 14vw, 5.75rem);
    padding-bottom: clamp(4.5rem, 14vw, 5.75rem);
  }

  .category-entry.large,
  .category-entry:not(.large),
  .project-application-grid .official-image-card,
  .case-study-card,
  .case-study-card:nth-child(1),
  .case-study-card:nth-child(4) {
    min-height: 470px;
  }

  .category-entry strong,
  .case-study-card strong,
  .project-application-grid .official-image-card h3 {
    font-size: clamp(1.82rem, 8.8vw, 2.65rem);
  }

  .brand-trust .reason-card {
    min-height: 220px;
  }

  .home-page .catalog-card .product-image {
    min-height: 300px;
  }
}

/* Buildcor Premium Editorial Direction - final cascade lock */
.home-page {
  --lock-ink: #101722;
  --lock-navy: #071728;
  --lock-paper: #fbfaf7;
  --lock-orange: #f37021;
}

.home-page .site-header {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 38px rgba(16, 23, 34, 0.055);
}

.home-page .site-nav {
  gap: clamp(1.5rem, 3.2vw, 3.1rem);
}

.home-page .visual-hero {
  min-height: min(780px, calc(100svh - 74px));
  background: var(--lock-navy);
}

.home-page .hero-slide {
  object-position: 62% center;
}

.home-page .visual-hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 23, 40, 0.96) 0%, rgba(7, 23, 40, 0.88) 32%, rgba(7, 23, 40, 0.32) 51%, rgba(7, 23, 40, 0.02) 73%),
    linear-gradient(180deg, rgba(7, 23, 40, 0.06), transparent 42%);
}

.home-page .visual-hero .home-hero-inner {
  min-height: min(780px, calc(100svh - 74px));
}

.home-page .visual-hero .hero-copy {
  max-width: min(610px, 46vw);
}

.home-page .visual-hero .eyebrow {
  margin-bottom: 1.35rem;
  color: #ff8a3d;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
}

.home-page .visual-hero h1 {
  max-width: 620px;
  font-size: clamp(3.35rem, 5vw, 5.5rem);
  line-height: 0.97;
}

.home-page .visual-hero .hero-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin-top: 1.35rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  line-height: 1.72;
}

.home-page .button {
  border-radius: 2px;
  font-weight: 760;
}

.home-page .button.primary {
  background: var(--lock-orange);
  box-shadow: 0 16px 32px rgba(243, 112, 33, 0.18);
}

.home-page .button.secondary {
  color: var(--lock-ink);
  border-color: rgba(16, 23, 34, 0.32);
  background: transparent;
}

.home-page .visual-hero .button.secondary,
.home-page .image-cta .button.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.05);
}

.home-page .trust-strip {
  margin-top: 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(16, 23, 34, 0.08);
}

.home-page .trust-strip-inner {
  width: min(100%, 1180px);
  border-radius: 0;
  box-shadow: none;
}

.home-page .trust-item {
  min-height: 88px;
  border-left: 1px solid rgba(16, 23, 34, 0.12);
}

.home-page .trust-item:first-child {
  border-left: 0;
}

.home-page .home-section {
  padding-top: clamp(5.6rem, 7.4vw, 8.5rem);
  padding-bottom: clamp(5.6rem, 7.4vw, 8.5rem);
}

.home-page .section-heading h2 {
  max-width: 780px;
  color: var(--lock-ink);
  font-size: clamp(2.35rem, 4.1vw, 4.55rem);
  line-height: 1.02;
}

.home-page .section-heading p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(16, 23, 34, 0.58);
}

.home-page .official-category-grid {
  gap: clamp(0.85rem, 1.3vw, 1.15rem);
}

.home-page .category-entry.large {
  min-height: clamp(680px, 64vw, 820px);
}

.home-page .category-entry:not(.large) {
  min-height: 315px;
}

.home-page .category-entry:nth-child(6) {
  grid-column: 2 / span 2;
}

.home-page .category-entry strong {
  max-width: 430px;
  font-size: clamp(1.4rem, 2.15vw, 2.45rem);
  line-height: 1.02;
}

.home-page .brand-trust {
  background: var(--lock-paper);
}

.home-page .brand-trust .reason-grid {
  background: transparent;
  border-top: 1px solid rgba(169, 120, 66, 0.34);
  border-bottom: 1px solid rgba(16, 23, 34, 0.1);
}

.home-page .brand-trust .reason-card {
  min-height: 280px;
  padding: clamp(1.65rem, 3vw, 2.6rem);
  border-left: 1px solid rgba(16, 23, 34, 0.1);
  background: transparent;
}

.home-page .brand-trust .reason-card:first-child {
  border-left: 0;
}

.home-page .featured-products-section {
  background: linear-gradient(180deg, #ffffff 0%, #faf8f3 100%);
}

.home-page .featured-products-section .product-grid {
  width: min(100%, 1240px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(16, 23, 34, 0.14);
  border-top: 1px solid rgba(16, 23, 34, 0.14);
  border-bottom: 1px solid rgba(16, 23, 34, 0.14);
}

.home-page .featured-products-section .catalog-card {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.home-page .featured-products-section .catalog-card .media-frame,
.home-page .featured-products-section .catalog-card .product-image {
  min-height: clamp(330px, 30vw, 430px);
  background: #f7f7f4;
}

.home-page .featured-products-section .product-sku {
  order: 3;
  margin-top: 0.35rem;
  color: rgba(16, 23, 34, 0.38);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.home-page .featured-products-section .catalog-card h3 {
  margin-top: 1.2rem;
  color: var(--lock-ink);
  font-size: 1.04rem;
  line-height: 1.34;
}

.home-page .featured-products-section .product-meta {
  margin-top: 0.65rem;
  color: rgba(16, 23, 34, 0.58);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-page .featured-products-section .button.primary.compact {
  display: none;
}

.home-page .featured-products-section .button.secondary.compact {
  min-height: auto;
  padding: 0;
  color: var(--lock-orange);
  border: 0;
  background: transparent;
  box-shadow: none;
}

.home-page .featured-products-section .button.secondary.compact::after {
  content: " ->";
}

.home-page .about-preview-layout {
  width: min(100%, 1240px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.home-page .about-preview-section .section-heading {
  padding: 0;
  border: 0;
  background: transparent;
}

.home-page .verified-dealer-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.6rem, 3vw, 3rem);
  width: min(100%, 1180px);
  margin-inline: auto;
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid rgba(16, 23, 34, 0.42);
  border-radius: 2px;
  background: #ffffff;
  box-shadow: none;
}

.home-page .verified-dealer-panel .button {
  grid-column: 2;
  align-self: end;
}

.home-page .dealer-city-list {
  grid-column: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 1rem;
}

.home-page .dealer-city-list span {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 23, 34, 0.16);
  background: var(--lock-paper);
  color: var(--lock-ink);
  font-weight: 760;
}

.home-page .image-cta {
  border-top: 0;
  background:
    linear-gradient(90deg, rgba(7, 23, 40, 0.94), rgba(7, 23, 40, 0.72)),
    var(--lock-navy);
}

.home-page .home-footer {
  grid-template-columns: minmax(320px, 1.4fr) repeat(3, minmax(150px, 0.42fr));
  gap: clamp(2rem, 5vw, 5.2rem);
  border-top: 0;
  background: #07111c;
}

.contact-page .project-inquiry-panel {
  border-radius: 2px;
  border: 1px solid rgba(16, 23, 34, 0.14);
  box-shadow: 0 24px 70px rgba(16, 23, 34, 0.08);
}

.contact-page .inquiry-card {
  border-radius: 2px;
  border-color: rgba(16, 23, 34, 0.14);
  box-shadow: none;
}

@media (max-width: 1080px) {
  .home-page .featured-products-section .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .verified-dealer-panel {
    grid-template-columns: 1fr;
  }

  .home-page .verified-dealer-panel .button,
  .home-page .dealer-city-list {
    grid-column: 1;
  }
}

@media (max-width: 759px) {
  .home-page .visual-hero {
    min-height: min(650px, calc(100svh - 68px));
    padding-inline: 1rem;
  }

  .home-page .hero-slide {
    object-position: 69% center;
  }

  .home-page .visual-hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 23, 40, 0.42) 0%, rgba(7, 23, 40, 0.16) 28%, rgba(7, 23, 40, 0.88) 72%, rgba(7, 23, 40, 0.96) 100%),
      linear-gradient(90deg, rgba(7, 23, 40, 0.88) 0%, rgba(7, 23, 40, 0.32) 54%, rgba(7, 23, 40, 0.08) 100%);
  }

  .home-page .visual-hero .home-hero-inner {
    min-height: min(650px, calc(100svh - 68px));
    align-items: end;
    padding-block: 4.25rem 1.35rem;
  }

  .home-page .visual-hero .hero-copy {
    width: 100%;
    max-width: calc(100vw - 2rem);
  }

  .home-page .visual-hero h1 {
    max-width: 340px;
    font-size: clamp(2.3rem, 10.4vw, 3.05rem);
    line-height: 1.02;
  }

  .home-page .visual-hero .hero-copy > p:not(.eyebrow) {
    max-width: 340px;
    margin-top: 0.9rem;
    font-size: 0.94rem;
    line-height: 1.52;
  }

  .home-page .visual-hero .actions {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.15rem;
  }

  .home-page .button {
    min-height: 48px;
  }

  .home-page .trust-strip-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .home-page .trust-item {
    min-height: 64px;
    padding: 0.8rem 1rem;
  }

  .home-page .trust-item:nth-child(odd) {
    border-left: 0;
  }

  .home-page .trust-item strong {
    font-size: 0.83rem;
  }

  .home-page .home-section {
    padding-inline: 1rem;
    padding-top: clamp(4.25rem, 12vw, 5.2rem);
    padding-bottom: clamp(4.25rem, 12vw, 5.2rem);
  }

  .home-page .section-heading h2 {
    font-size: clamp(2rem, 8.4vw, 2.7rem);
    line-height: 1.06;
  }

  .home-page .category-entry.large,
  .home-page .category-entry:not(.large),
  .home-page .category-entry:nth-child(6) {
    grid-column: auto;
    min-height: 430px;
  }

  .home-page .category-entry strong {
    font-size: clamp(1.55rem, 7.2vw, 2.2rem);
  }

  .home-page .brand-trust .reason-grid,
  .home-page .featured-products-section .product-grid,
  .home-page .about-preview-layout,
  .home-page .home-footer {
    grid-template-columns: 1fr;
  }

  .home-page .brand-trust .reason-card {
    min-height: 190px;
    border-left: 0;
    border-top: 1px solid rgba(16, 23, 34, 0.1);
  }

  .home-page .brand-trust .reason-card:first-child {
    border-top: 0;
  }

  .home-page .featured-products-section .catalog-card .media-frame,
  .home-page .featured-products-section .catalog-card .product-image {
    min-height: 315px;
  }

  .home-page .dealer-city-list {
    grid-template-columns: 1fr;
  }

  .home-page .verified-dealer-panel,
  .contact-page .project-inquiry-panel {
    padding: 1.35rem;
  }
}

/* Buildcor Premium Editorial Direction - final effective layer */
.home-page {
  --final-ink: #101722;
  --final-navy: #071728;
  --final-paper: #fbfaf7;
  --final-orange: #f37021;
}

.home-page .site-header {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 38px rgba(16, 23, 34, 0.055);
}

.home-page .site-nav {
  gap: clamp(1.5rem, 3.2vw, 3.1rem);
}

.home-page .site-nav a {
  letter-spacing: 0.025em;
}

.home-page .visual-hero {
  min-height: min(780px, calc(100svh - 74px));
  background: var(--final-navy);
}

.home-page .hero-slide {
  object-position: 62% center;
}

.home-page .visual-hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 23, 40, 0.96) 0%, rgba(7, 23, 40, 0.88) 32%, rgba(7, 23, 40, 0.32) 51%, rgba(7, 23, 40, 0.02) 73%),
    linear-gradient(180deg, rgba(7, 23, 40, 0.06), transparent 42%);
}

.home-page .visual-hero .home-hero-inner {
  min-height: min(780px, calc(100svh - 74px));
}

.home-page .visual-hero .hero-copy {
  max-width: min(610px, 46vw);
}

.home-page .visual-hero .eyebrow {
  margin-bottom: 1.35rem;
  color: #ff8a3d;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
}

.home-page .visual-hero h1 {
  max-width: 620px;
  font-size: clamp(3.35rem, 5vw, 5.5rem);
  line-height: 0.97;
}

.home-page .visual-hero .hero-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin-top: 1.35rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  line-height: 1.72;
}

.home-page .button {
  border-radius: 2px;
  font-weight: 760;
}

.home-page .button.primary {
  background: var(--final-orange);
  box-shadow: 0 16px 32px rgba(243, 112, 33, 0.18);
}

.home-page .button.secondary {
  color: var(--final-ink);
  border-color: rgba(16, 23, 34, 0.32);
  background: transparent;
}

.home-page .visual-hero .button.secondary,
.home-page .image-cta .button.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.05);
}

.home-page .trust-strip {
  margin-top: 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(16, 23, 34, 0.08);
}

.home-page .trust-strip-inner {
  width: min(100%, 1180px);
  border-radius: 0;
  box-shadow: none;
}

.home-page .trust-item {
  min-height: 88px;
  border-left: 1px solid rgba(16, 23, 34, 0.12);
}

.home-page .trust-item:first-child {
  border-left: 0;
}

.home-page .home-section {
  padding-top: clamp(5.6rem, 7.4vw, 8.5rem);
  padding-bottom: clamp(5.6rem, 7.4vw, 8.5rem);
}

.home-page .section-heading h2 {
  max-width: 780px;
  color: var(--final-ink);
  font-size: clamp(2.35rem, 4.1vw, 4.55rem);
  line-height: 1.02;
}

.home-page .section-heading p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(16, 23, 34, 0.58);
}

.home-page .official-category-grid {
  gap: clamp(0.85rem, 1.3vw, 1.15rem);
}

.home-page .category-entry.large {
  min-height: clamp(680px, 64vw, 820px);
}

.home-page .category-entry:not(.large) {
  min-height: 315px;
}

.home-page .category-entry:nth-child(6) {
  grid-column: 2 / span 2;
}

.home-page .category-entry strong {
  max-width: 430px;
  font-size: clamp(1.4rem, 2.15vw, 2.45rem);
  line-height: 1.02;
}

.home-page .brand-trust {
  background: var(--final-paper);
}

.home-page .brand-trust .reason-grid {
  background: transparent;
  border-top: 1px solid rgba(169, 120, 66, 0.34);
  border-bottom: 1px solid rgba(16, 23, 34, 0.1);
}

.home-page .brand-trust .reason-card {
  min-height: 280px;
  padding: clamp(1.65rem, 3vw, 2.6rem);
  border-left: 1px solid rgba(16, 23, 34, 0.1);
  background: transparent;
}

.home-page .brand-trust .reason-card:first-child {
  border-left: 0;
}

.home-page .featured-products-section {
  background: linear-gradient(180deg, #ffffff 0%, #faf8f3 100%);
}

.home-page .featured-products-section .product-grid {
  width: min(100%, 1240px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(16, 23, 34, 0.14);
  border-top: 1px solid rgba(16, 23, 34, 0.14);
  border-bottom: 1px solid rgba(16, 23, 34, 0.14);
}

.home-page .featured-products-section .catalog-card {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.home-page .featured-products-section .catalog-card .media-frame,
.home-page .featured-products-section .catalog-card .product-image {
  min-height: clamp(330px, 30vw, 430px);
  background: #f7f7f4;
}

.home-page .featured-products-section .product-sku {
  order: 3;
  margin-top: 0.35rem;
  color: rgba(16, 23, 34, 0.38);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.home-page .featured-products-section .catalog-card h3 {
  margin-top: 1.2rem;
  color: var(--final-ink);
  font-size: 1.04rem;
  line-height: 1.34;
}

.home-page .featured-products-section .product-meta {
  margin-top: 0.65rem;
  color: rgba(16, 23, 34, 0.58);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-page .featured-products-section .button.primary.compact {
  display: none;
}

.home-page .featured-products-section .button.secondary.compact {
  min-height: auto;
  padding: 0;
  color: var(--final-orange);
  border: 0;
  background: transparent;
  box-shadow: none;
}

.home-page .featured-products-section .button.secondary.compact::after {
  content: " ->";
}

.home-page .about-preview-layout {
  width: min(100%, 1240px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.home-page .about-preview-section .section-heading {
  padding: 0;
  border: 0;
  background: transparent;
}

.home-page .verified-dealer-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.6rem, 3vw, 3rem);
  width: min(100%, 1180px);
  margin-inline: auto;
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid rgba(16, 23, 34, 0.42);
  border-radius: 2px;
  background: #ffffff;
  box-shadow: none;
}

.home-page .verified-dealer-panel .button {
  grid-column: 2;
  align-self: end;
}

.home-page .dealer-city-list {
  grid-column: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 1rem;
}

.home-page .dealer-city-list span {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 23, 34, 0.16);
  background: var(--final-paper);
  color: var(--final-ink);
  font-weight: 760;
}

.home-page .image-cta {
  border-top: 0;
  background:
    linear-gradient(90deg, rgba(7, 23, 40, 0.94), rgba(7, 23, 40, 0.72)),
    var(--final-navy);
}

.home-page .home-footer {
  grid-template-columns: minmax(320px, 1.4fr) repeat(3, minmax(150px, 0.42fr));
  gap: clamp(2rem, 5vw, 5.2rem);
  border-top: 0;
  background: #07111c;
}

.contact-page .project-inquiry-panel {
  border-radius: 2px;
  border: 1px solid rgba(16, 23, 34, 0.14);
  box-shadow: 0 24px 70px rgba(16, 23, 34, 0.08);
}

.contact-page .inquiry-card {
  border-radius: 2px;
  border-color: rgba(16, 23, 34, 0.14);
  box-shadow: none;
}

@media (max-width: 1080px) {
  .home-page .featured-products-section .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .verified-dealer-panel {
    grid-template-columns: 1fr;
  }

  .home-page .verified-dealer-panel .button,
  .home-page .dealer-city-list {
    grid-column: 1;
  }
}

@media (max-width: 759px) {
  .home-page .visual-hero {
    min-height: min(650px, calc(100svh - 68px));
    padding-inline: 1rem;
  }

  .home-page .hero-slide {
    object-position: 69% center;
  }

  .home-page .visual-hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 23, 40, 0.42) 0%, rgba(7, 23, 40, 0.16) 28%, rgba(7, 23, 40, 0.88) 72%, rgba(7, 23, 40, 0.96) 100%),
      linear-gradient(90deg, rgba(7, 23, 40, 0.88) 0%, rgba(7, 23, 40, 0.32) 54%, rgba(7, 23, 40, 0.08) 100%);
  }

  .home-page .visual-hero .home-hero-inner {
    min-height: min(650px, calc(100svh - 68px));
    align-items: end;
    padding-block: 4.25rem 1.35rem;
  }

  .home-page .visual-hero .hero-copy {
    width: 100%;
    max-width: calc(100vw - 2rem);
  }

  .home-page .visual-hero .eyebrow {
    margin-bottom: 0.8rem;
    font-size: 0.66rem;
    letter-spacing: 0.16em;
  }

  .home-page .visual-hero h1 {
    max-width: 340px;
    font-size: clamp(2.3rem, 10.4vw, 3.05rem);
    line-height: 1.02;
  }

  .home-page .visual-hero .hero-copy > p:not(.eyebrow) {
    max-width: 340px;
    margin-top: 0.9rem;
    font-size: 0.94rem;
    line-height: 1.52;
  }

  .home-page .visual-hero .actions {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.15rem;
  }

  .home-page .button {
    min-height: 48px;
  }

  .home-page .trust-strip-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .home-page .trust-item {
    min-height: 64px;
    padding: 0.8rem 1rem;
  }

  .home-page .trust-item:nth-child(odd) {
    border-left: 0;
  }

  .home-page .trust-item strong {
    font-size: 0.83rem;
  }

  .home-page .home-section {
    padding-inline: 1rem;
    padding-top: clamp(4.25rem, 12vw, 5.2rem);
    padding-bottom: clamp(4.25rem, 12vw, 5.2rem);
  }

  .home-page .section-heading h2 {
    font-size: clamp(2rem, 8.4vw, 2.7rem);
    line-height: 1.06;
  }

  .home-page .category-entry.large,
  .home-page .category-entry:not(.large),
  .home-page .category-entry:nth-child(6) {
    grid-column: auto;
    min-height: 430px;
  }

  .home-page .category-entry strong {
    font-size: clamp(1.55rem, 7.2vw, 2.2rem);
  }

  .home-page .brand-trust .reason-grid,
  .home-page .featured-products-section .product-grid,
  .home-page .about-preview-layout,
  .home-page .home-footer {
    grid-template-columns: 1fr;
  }

  .home-page .brand-trust .reason-card {
    min-height: 190px;
    border-left: 0;
    border-top: 1px solid rgba(16, 23, 34, 0.1);
  }

  .home-page .brand-trust .reason-card:first-child {
    border-top: 0;
  }

  .home-page .featured-products-section .catalog-card .media-frame,
  .home-page .featured-products-section .catalog-card .product-image {
    min-height: 315px;
  }

  .home-page .dealer-city-list {
    grid-template-columns: 1fr;
  }

  .home-page .verified-dealer-panel,
  .contact-page .project-inquiry-panel {
    padding: 1.35rem;
  }
}

/* Buildcor Premium Editorial Direction - final visual contract */
.home-page {
  --editorial-ink: #101722;
  --editorial-navy: #071728;
  --editorial-navy-soft: #0d2438;
  --editorial-paper: #fbfaf7;
  --editorial-stone: #ece7de;
  --editorial-line: rgba(16, 23, 34, 0.12);
  --editorial-orange: #f37021;
  --editorial-gold: #a97842;
}

.home-page .site-header {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 38px rgba(16, 23, 34, 0.055);
}

.home-page .site-nav {
  gap: clamp(1.5rem, 3.2vw, 3.1rem);
}

.home-page .site-nav a {
  letter-spacing: 0.025em;
}

.home-page .visual-hero {
  min-height: min(780px, calc(100svh - 74px));
  background: var(--editorial-navy);
}

.home-page .hero-slide {
  object-position: 62% center;
}

.home-page .visual-hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 23, 40, 0.96) 0%, rgba(7, 23, 40, 0.88) 32%, rgba(7, 23, 40, 0.32) 51%, rgba(7, 23, 40, 0.02) 73%),
    linear-gradient(180deg, rgba(7, 23, 40, 0.06), transparent 42%);
}

.home-page .visual-hero .home-hero-inner {
  min-height: min(780px, calc(100svh - 74px));
}

.home-page .visual-hero .hero-copy {
  max-width: min(610px, 46vw);
}

.home-page .visual-hero .eyebrow {
  margin-bottom: 1.35rem;
  color: #ff8a3d;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
}

.home-page .visual-hero h1 {
  max-width: 620px;
  font-size: clamp(3.35rem, 5vw, 5.5rem);
  line-height: 0.97;
}

.home-page .visual-hero .hero-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin-top: 1.35rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  line-height: 1.72;
}

.home-page .visual-hero .actions {
  margin-top: 2rem;
}

.home-page .button {
  border-radius: 2px;
  font-weight: 760;
}

.home-page .button.primary {
  background: var(--editorial-orange);
  box-shadow: 0 16px 32px rgba(243, 112, 33, 0.18);
}

.home-page .button.secondary {
  color: var(--editorial-ink);
  border-color: rgba(16, 23, 34, 0.32);
  background: transparent;
}

.home-page .visual-hero .button.secondary,
.home-page .image-cta .button.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.05);
}

.home-page .trust-strip {
  position: relative;
  z-index: 4;
  margin-top: 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(16, 23, 34, 0.08);
}

.home-page .trust-strip-inner {
  width: min(100%, 1180px);
  border-radius: 0;
  box-shadow: none;
}

.home-page .trust-item {
  gap: 1rem;
  min-height: 88px;
  border-left: 1px solid rgba(16, 23, 34, 0.12);
}

.home-page .trust-item:first-child {
  border-left: 0;
}

.home-page .trust-mark {
  color: var(--editorial-orange);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.home-page .trust-item strong {
  color: var(--editorial-ink);
  font-size: 0.98rem;
}

.home-page .home-section {
  padding-top: clamp(5.6rem, 7.4vw, 8.5rem);
  padding-bottom: clamp(5.6rem, 7.4vw, 8.5rem);
}

.home-page .section-heading h2 {
  max-width: 780px;
  color: var(--editorial-ink);
  font-size: clamp(2.35rem, 4.1vw, 4.55rem);
  line-height: 1.02;
}

.home-page .section-heading p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(16, 23, 34, 0.58);
}

.home-page .official-category-grid {
  gap: clamp(0.85rem, 1.3vw, 1.15rem);
}

.home-page .category-entry.large {
  min-height: clamp(680px, 64vw, 820px);
}

.home-page .category-entry:not(.large) {
  min-height: 315px;
}

.home-page .category-entry:nth-child(6) {
  grid-column: 2 / span 2;
}

.home-page .category-entry strong {
  max-width: 430px;
  font-size: clamp(1.4rem, 2.15vw, 2.45rem);
  line-height: 1.02;
}

.home-page .category-entry small,
.home-page .case-study-card small {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.home-page .official-image-card {
  border-radius: 1px;
  box-shadow: 0 22px 70px rgba(16, 23, 34, 0.11);
}

.home-page .official-image-card:hover {
  box-shadow: 0 32px 88px rgba(16, 23, 34, 0.18);
}

.home-page .brand-trust {
  background: var(--editorial-paper);
}

.home-page .brand-trust .reason-grid {
  background: transparent;
  border-top: 1px solid rgba(169, 120, 66, 0.34);
  border-bottom: 1px solid rgba(16, 23, 34, 0.1);
}

.home-page .brand-trust .reason-card {
  min-height: 280px;
  padding: clamp(1.65rem, 3vw, 2.6rem);
  border-left: 1px solid rgba(16, 23, 34, 0.1);
  background: transparent;
}

.home-page .brand-trust .reason-card:first-child {
  border-left: 0;
}

.home-page .brand-trust .reason-card h3 {
  max-width: 220px;
  color: var(--editorial-ink);
  font-size: clamp(1.35rem, 1.7vw, 1.75rem);
  line-height: 1.08;
}

.home-page .featured-products-section {
  background: linear-gradient(180deg, #ffffff 0%, #faf8f3 100%);
}

.home-page .featured-products-section .product-grid {
  width: min(100%, 1240px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(16, 23, 34, 0.14);
  border-top: 1px solid rgba(16, 23, 34, 0.14);
  border-bottom: 1px solid rgba(16, 23, 34, 0.14);
}

.home-page .featured-products-section .catalog-card {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.home-page .featured-products-section .catalog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 62px rgba(16, 23, 34, 0.1);
}

.home-page .featured-products-section .catalog-card .media-frame,
.home-page .featured-products-section .catalog-card .product-image {
  min-height: clamp(330px, 30vw, 430px);
  background: #f7f7f4;
}

.home-page .featured-products-section .product-sku {
  order: 3;
  margin-top: 0.35rem;
  color: rgba(16, 23, 34, 0.38);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.home-page .featured-products-section .catalog-card h3 {
  margin-top: 1.2rem;
  color: var(--editorial-ink);
  font-size: 1.04rem;
  line-height: 1.34;
}

.home-page .featured-products-section .product-meta {
  margin-top: 0.65rem;
  color: rgba(16, 23, 34, 0.58);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-page .featured-products-section .card-actions {
  margin-top: auto;
  padding-top: 1.25rem;
}

.home-page .featured-products-section .button.primary.compact {
  display: none;
}

.home-page .featured-products-section .button.secondary.compact {
  min-height: auto;
  padding: 0;
  color: var(--editorial-orange);
  border: 0;
  background: transparent;
  box-shadow: none;
}

.home-page .featured-products-section .button.secondary.compact::after {
  content: " ->";
}

.home-page .project-application-grid .official-image-card {
  min-height: clamp(500px, 39vw, 680px);
}

.home-page .project-application-grid .official-image-card h3 {
  font-size: clamp(1.8rem, 2.5vw, 2.75rem);
}

.home-page .about-preview-layout {
  width: min(100%, 1240px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.home-page .about-preview-media {
  margin: 0;
  overflow: hidden;
  min-height: clamp(360px, 38vw, 540px);
}

.home-page .about-preview-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.home-page .about-preview-section .section-heading {
  padding: 0;
  border: 0;
  background: transparent;
}

.home-page .verified-dealer-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.6rem, 3vw, 3rem);
  width: min(100%, 1180px);
  margin-inline: auto;
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid rgba(16, 23, 34, 0.42);
  border-radius: 2px;
  background: #ffffff;
  box-shadow: none;
}

.home-page .verified-dealer-panel .button {
  grid-column: 2;
  align-self: end;
}

.home-page .dealer-city-list {
  grid-column: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 1rem;
}

.home-page .dealer-city-list span {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 23, 34, 0.16);
  background: var(--editorial-paper);
  color: var(--editorial-ink);
  font-weight: 760;
}

.home-page .image-cta {
  border-top: 0;
  background:
    linear-gradient(90deg, rgba(7, 23, 40, 0.94), rgba(7, 23, 40, 0.72)),
    var(--editorial-navy);
}

.home-page .home-footer {
  grid-template-columns: minmax(320px, 1.4fr) repeat(3, minmax(150px, 0.42fr));
  gap: clamp(2rem, 5vw, 5.2rem);
  border-top: 0;
  background: #07111c;
}

.contact-page .project-inquiry-panel {
  border-radius: 2px;
  border: 1px solid rgba(16, 23, 34, 0.14);
  box-shadow: 0 24px 70px rgba(16, 23, 34, 0.08);
}

.contact-page .inquiry-card {
  border-radius: 2px;
  border-color: rgba(16, 23, 34, 0.14);
  box-shadow: none;
}

@media (max-width: 1080px) {
  .home-page .featured-products-section .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .verified-dealer-panel {
    grid-template-columns: 1fr;
  }

  .home-page .verified-dealer-panel .button,
  .home-page .dealer-city-list {
    grid-column: 1;
  }
}

@media (max-width: 759px) {
  .home-page .visual-hero {
    min-height: min(650px, calc(100svh - 68px));
    padding-inline: 1rem;
  }

  .home-page .hero-slide {
    object-position: 69% center;
  }

  .home-page .visual-hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 23, 40, 0.42) 0%, rgba(7, 23, 40, 0.16) 28%, rgba(7, 23, 40, 0.88) 72%, rgba(7, 23, 40, 0.96) 100%),
      linear-gradient(90deg, rgba(7, 23, 40, 0.88) 0%, rgba(7, 23, 40, 0.32) 54%, rgba(7, 23, 40, 0.08) 100%);
  }

  .home-page .visual-hero .home-hero-inner {
    min-height: min(650px, calc(100svh - 68px));
    align-items: end;
    padding-block: 4.25rem 1.35rem;
  }

  .home-page .visual-hero .hero-copy {
    width: 100%;
    max-width: calc(100vw - 2rem);
  }

  .home-page .visual-hero .eyebrow {
    margin-bottom: 0.8rem;
    font-size: 0.66rem;
    letter-spacing: 0.16em;
  }

  .home-page .visual-hero h1 {
    max-width: 340px;
    font-size: clamp(2.3rem, 10.4vw, 3.05rem);
    line-height: 1.02;
  }

  .home-page .visual-hero .hero-copy > p:not(.eyebrow) {
    max-width: 340px;
    margin-top: 0.9rem;
    font-size: 0.94rem;
    line-height: 1.52;
  }

  .home-page .visual-hero .actions {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.15rem;
  }

  .home-page .button {
    min-height: 48px;
  }

  .home-page .trust-strip-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .home-page .trust-item {
    min-height: 64px;
    padding: 0.8rem 1rem;
  }

  .home-page .trust-item:nth-child(odd) {
    border-left: 0;
  }

  .home-page .trust-mark {
    font-size: 0.62rem;
  }

  .home-page .trust-item strong {
    font-size: 0.83rem;
  }

  .home-page .home-section {
    padding-inline: 1rem;
    padding-top: clamp(4.25rem, 12vw, 5.2rem);
    padding-bottom: clamp(4.25rem, 12vw, 5.2rem);
  }

  .home-page .section-heading h2 {
    font-size: clamp(2rem, 8.4vw, 2.7rem);
    line-height: 1.06;
  }

  .home-page .category-entry.large,
  .home-page .category-entry:not(.large),
  .home-page .category-entry:nth-child(6) {
    grid-column: auto;
    min-height: 430px;
  }

  .home-page .category-entry strong {
    font-size: clamp(1.55rem, 7.2vw, 2.2rem);
  }

  .home-page .brand-trust .reason-grid,
  .home-page .featured-products-section .product-grid,
  .home-page .about-preview-layout,
  .home-page .home-footer {
    grid-template-columns: 1fr;
  }

  .home-page .brand-trust .reason-card {
    min-height: 190px;
    border-left: 0;
    border-top: 1px solid rgba(16, 23, 34, 0.1);
  }

  .home-page .brand-trust .reason-card:first-child {
    border-top: 0;
  }

  .home-page .featured-products-section .catalog-card .media-frame,
  .home-page .featured-products-section .catalog-card .product-image {
    min-height: 315px;
  }

  .home-page .about-preview-media {
    min-height: 320px;
  }

  .home-page .dealer-city-list {
    grid-template-columns: 1fr;
  }

  .home-page .verified-dealer-panel,
  .contact-page .project-inquiry-panel {
    padding: 1.35rem;
  }
}

/* Buildcor Premium Editorial Direction - scoped front-end visual layer */
.home-page {
  --editorial-navy: #071827;
  --editorial-navy-deep: #04101c;
  --editorial-ink: #121922;
  --editorial-muted: #67727f;
  --editorial-line: rgba(18, 25, 34, 0.12);
  --editorial-warm: #f6f2ea;
  --editorial-orange: #f37021;
  --editorial-gold: #bd9158;
}

.home-page .site-header {
  min-height: 76px;
  background: rgba(255, 255, 255, 0.965);
  border-bottom: 1px solid rgba(18, 25, 34, 0.08);
  box-shadow: 0 18px 60px rgba(18, 25, 34, 0.055);
}

.home-page .site-nav {
  gap: clamp(1.25rem, 2.4vw, 2.45rem);
}

.home-page .site-nav a {
  padding: 0.7rem 0;
  color: rgba(18, 25, 34, 0.66);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-page .site-nav a:hover,
.home-page .site-nav a[aria-current="page"] {
  color: var(--editorial-ink);
}

.home-page .brand img {
  max-height: 46px;
}

.home-page .visual-hero {
  min-height: min(780px, calc(100svh - 76px));
  padding-inline: clamp(1.25rem, 6vw, 6rem);
  background: var(--editorial-navy-deep);
}

.home-page .hero-slide {
  object-position: 64% center;
}

.home-page .visual-hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 16, 28, 0.95) 0%, rgba(4, 16, 28, 0.88) 29%, rgba(4, 16, 28, 0.48) 47%, rgba(4, 16, 28, 0.06) 72%),
    linear-gradient(0deg, rgba(4, 16, 28, 0.22), rgba(4, 16, 28, 0.02) 48%);
}

.home-page .visual-hero .home-hero-inner {
  align-items: center;
  min-height: min(780px, calc(100svh - 76px));
  padding-block: clamp(5rem, 8vw, 7.5rem);
}

.home-page .visual-hero .hero-copy {
  max-width: min(680px, 54vw);
}

.home-page .visual-hero h1 {
  max-width: 660px;
  margin-bottom: 1.4rem;
  font-size: clamp(3rem, 5.1vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.home-page .visual-hero .hero-copy > p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.7;
}

.home-page .visual-hero .actions {
  gap: 0.9rem;
  margin-top: 2.15rem;
}

.home-page .button {
  border-radius: 2px;
}

.home-page .button.primary {
  background: var(--editorial-orange);
  box-shadow: 0 18px 34px rgba(243, 112, 33, 0.18);
}

.home-page .button.secondary {
  color: var(--editorial-navy);
  border-color: rgba(18, 25, 34, 0.18);
  background: rgba(255, 255, 255, 0.62);
}

.home-page .visual-hero .button.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.06);
}

.home-page .trust-strip {
  margin-top: 0;
  padding: 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(18, 25, 34, 0.08);
}

.home-page .trust-strip-inner {
  width: min(100%, 1200px);
  border-radius: 0;
  box-shadow: none;
}

.home-page .trust-item {
  min-height: 92px;
  padding: 1.2rem clamp(1rem, 2vw, 1.8rem);
  border-left: 1px solid rgba(18, 25, 34, 0.1);
}

.home-page .trust-item:first-child {
  border-left: 0;
}

.home-page .trust-item strong {
  color: var(--editorial-ink);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.home-page .trust-mark {
  color: var(--editorial-orange);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.home-page .home-section {
  padding-top: clamp(5.8rem, 8vw, 8.5rem);
  padding-bottom: clamp(5.8rem, 8vw, 8.5rem);
}

.home-page .section-heading h2 {
  max-width: 780px;
  color: var(--editorial-ink);
  font-size: clamp(2.4rem, 4.3vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0;
}

.home-page .section-heading p:not(.eyebrow) {
  color: rgba(18, 25, 34, 0.58);
  line-height: 1.7;
}

.home-page .official-category-grid {
  width: min(100%, 1320px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(330px, auto);
  gap: clamp(0.9rem, 1.4vw, 1.2rem);
}

.home-page .category-entry.large {
  grid-column: span 1;
  grid-row: span 2;
  min-height: 700px;
}

.home-page .category-entry:nth-child(4) {
  grid-column: auto;
}

.home-page .category-entry:nth-child(5) {
  grid-column: span 1;
}

.home-page .category-entry:nth-child(6) {
  grid-column: span 2;
}

.home-page .official-image-card {
  border-radius: 0;
  box-shadow: none;
}

.home-page .official-image-card::after {
  background:
    linear-gradient(180deg, rgba(4, 16, 28, 0.02) 28%, rgba(4, 16, 28, 0.72) 100%),
    linear-gradient(90deg, rgba(4, 16, 28, 0.16), transparent 58%);
}

.home-page .category-entry small,
.home-page .case-study-card small {
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.15em;
}

.home-page .category-entry strong,
.home-page .case-study-card strong {
  max-width: 360px;
  font-size: clamp(1.28rem, 2vw, 2rem);
  line-height: 1.08;
}

.home-page .brand-trust {
  background: var(--editorial-warm);
}

.home-page .brand-trust .reason-grid {
  width: min(100%, 1200px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(189, 145, 88, 0.28);
  border-bottom: 1px solid rgba(189, 145, 88, 0.28);
  background: transparent;
}

.home-page .brand-trust .reason-card {
  min-height: 285px;
  padding: clamp(1.35rem, 2.2vw, 2rem);
  border: 0;
  border-left: 1px solid rgba(189, 145, 88, 0.24);
  background: transparent;
  box-shadow: none;
}

.home-page .brand-trust .reason-card:first-child {
  border-left: 0;
}

.home-page .brand-trust .reason-card h3 {
  max-width: 220px;
  font-size: clamp(1.4rem, 2vw, 2.1rem);
  line-height: 1.04;
}

.home-page .brand-trust .reason-card p {
  max-width: 250px;
  color: rgba(18, 25, 34, 0.62);
  font-size: 0.94rem;
}

.home-page .featured-products-section {
  background: #ffffff;
}

.home-page .featured-products-section .product-grid {
  width: min(100%, 1320px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 1.45vw, 1.3rem);
}

.home-page .featured-products-section .catalog-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(18, 25, 34, 0.1);
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
}

.home-page .featured-products-section .catalog-card:hover {
  transform: translateY(-2px);
  border-color: rgba(189, 145, 88, 0.38);
  box-shadow: 0 24px 64px rgba(18, 25, 34, 0.08);
}

.home-page .featured-products-section .catalog-card .media-frame,
.home-page .featured-products-section .catalog-card .product-image {
  aspect-ratio: 4 / 4.65;
  min-height: 0;
  margin: 0;
  border: 0;
  border-bottom: 1px solid rgba(18, 25, 34, 0.08);
  border-radius: 0;
  background: #f7f8f8;
  box-shadow: none;
}

.home-page .featured-products-section .catalog-card .media-frame img {
  object-fit: cover;
}

.home-page .featured-products-section .product-sku {
  order: 3;
  margin: 0.85rem 1rem 0;
  color: rgba(18, 25, 34, 0.45);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.home-page .featured-products-section .catalog-card h3 {
  margin: 0.35rem 1rem 0;
  color: var(--editorial-ink);
  font-size: 1.02rem;
  line-height: 1.26;
}

.home-page .featured-products-section .product-meta {
  margin: 0.65rem 1rem 0;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(18, 25, 34, 0.08);
  color: rgba(18, 25, 34, 0.58);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-page .featured-products-section .card-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 1rem;
}

.home-page .featured-products-section .button.compact {
  min-height: 42px;
  padding: 0;
  justify-content: start;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--editorial-orange);
  font-size: 0.84rem;
}

.home-page .featured-products-section .button.compact::after {
  content: " ->";
  padding-left: 0.45rem;
}

.home-page .featured-products-section .button.primary.compact {
  display: none;
}

.home-page .project-application-grid .official-image-card {
  min-height: clamp(460px, 38vw, 640px);
}

.home-page .project-application-grid .official-image-card h3 {
  font-size: clamp(1.7rem, 2.25vw, 2.6rem);
  line-height: 1;
}

.home-page .project-application-grid .official-image-card p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.96rem;
  line-height: 1.55;
}

.home-page .about-preview-section {
  background: #ffffff;
}

.home-page .about-preview-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  width: min(100%, 1200px);
  margin-inline: auto;
  align-items: center;
}

.home-page .about-preview-media {
  margin: 0;
  overflow: hidden;
  min-height: clamp(360px, 42vw, 560px);
  background: var(--editorial-navy);
}

.home-page .about-preview-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.home-page .about-preview-section .section-heading {
  display: grid;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.home-page .about-preview-link {
  justify-self: start;
  margin-top: 1.1rem;
}

.home-page .dealer-network {
  background: var(--editorial-warm);
}

.home-page .verified-dealer-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr) auto;
  align-items: end;
  gap: clamp(1.5rem, 4vw, 3rem);
  width: min(100%, 1200px);
  margin-inline: auto;
  padding: clamp(2rem, 4vw, 3.25rem);
  border: 1px solid rgba(18, 25, 34, 0.16);
  background: #ffffff;
}

.home-page .verified-dealer-panel h2 {
  max-width: 520px;
  margin-bottom: 0.75rem;
  color: var(--editorial-ink);
  font-size: clamp(2rem, 3.2vw, 3.6rem);
  line-height: 1;
}

.home-page .verified-dealer-panel p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(18, 25, 34, 0.62);
}

.home-page .dealer-city-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.home-page .dealer-city-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(18, 25, 34, 0.16);
  color: var(--editorial-ink);
  font-weight: 760;
}

.home-page .image-cta {
  min-height: 360px;
  padding: clamp(2rem, 4vw, 3.4rem);
  border: 0;
  background:
    linear-gradient(90deg, rgba(4, 16, 28, 0.92), rgba(4, 16, 28, 0.72)),
    var(--editorial-navy);
  box-shadow: none;
}

.home-page .image-cta h2 {
  max-width: 680px;
  font-size: clamp(2.2rem, 3.6vw, 4.2rem);
  line-height: 1;
}

.home-page .home-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(150px, 0.32fr));
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(4rem, 7vw, 6rem) 5vw;
  background: var(--editorial-navy-deep);
  border-top: 1px solid rgba(189, 145, 88, 0.36);
}

.home-page .home-footer .footer-brand-column {
  max-width: 520px;
}

.home-page .home-footer .footer-brand-column h2 {
  max-width: 460px;
  margin-bottom: 1rem;
  font-size: clamp(1.7rem, 2.6vw, 3rem);
  line-height: 1;
}

.home-page .home-footer .footer-column {
  max-width: none;
}

.home-page .home-footer a,
.home-page .home-footer p {
  color: rgba(255, 255, 255, 0.62);
}

.home-page .home-footer .footer-actions,
.home-page .home-footer .footer-contact-column {
  align-content: start;
}

.contact-page .page-hero {
  background:
    linear-gradient(135deg, rgba(7, 24, 39, 0.08), transparent 44%),
    #f6f2ea;
}

.contact-page .project-inquiry-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  width: min(100%, 1120px);
  margin-inline: auto;
}

.contact-page .project-inquiry-copy h2 {
  max-width: 560px;
  font-size: clamp(2.35rem, 4vw, 4.5rem);
  line-height: 1;
}

.contact-page .project-inquiry-copy > p {
  max-width: 520px;
  color: var(--color-muted);
}

.contact-page .inquiry-list {
  display: grid;
  gap: 0.8rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-page .inquiry-list li {
  padding-top: 0.8rem;
  border-top: 1px solid rgba(18, 25, 34, 0.12);
  color: var(--color-ink);
  font-weight: 720;
}

.contact-page .inquiry-card {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(18, 25, 34, 0.14);
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(18, 25, 34, 0.1);
}

.contact-page .inquiry-card .button {
  margin-top: 0.25rem;
}

.contact-page .inquiry-note {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.84rem;
}

.contact-page .contact-support-grid {
  width: min(100%, 1120px);
  margin: clamp(1.5rem, 4vw, 3rem) auto 0;
}

.contact-page .contact-card {
  box-shadow: none;
}

@media (max-width: 1180px) {
  .home-page .featured-products-section .product-grid,
  .home-page .brand-trust .reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .brand-trust .reason-card:nth-child(odd) {
    border-left: 0;
  }

  .home-page .verified-dealer-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 980px) {
  .home-page .visual-hero .hero-copy {
    max-width: 680px;
  }

  .home-page .official-category-grid,
  .home-page .about-preview-layout,
  .contact-page .project-inquiry-panel {
    grid-template-columns: 1fr;
  }

  .home-page .category-entry.large,
  .home-page .category-entry:not(.large),
  .home-page .category-entry:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
    min-height: 440px;
  }

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

@media (max-width: 759px) {
  .home-page .site-header {
    min-height: 68px;
  }

  .home-page .visual-hero {
    min-height: min(650px, calc(100svh - 68px));
    padding-inline: 1rem;
  }

  .home-page .hero-slide {
    object-position: 67% center;
  }

  .home-page .visual-hero-overlay {
    background:
      linear-gradient(180deg, rgba(4, 16, 28, 0.34), rgba(4, 16, 28, 0.93) 76%),
      linear-gradient(90deg, rgba(4, 16, 28, 0.7), rgba(4, 16, 28, 0.16));
  }

  .home-page .visual-hero .home-hero-inner {
    min-height: min(650px, calc(100svh - 68px));
    align-items: end;
    padding: 5.8rem 0 2.2rem;
  }

  .home-page .visual-hero .hero-copy {
    width: 100%;
    max-width: calc(100vw - 2rem);
    min-width: 0;
  }

  .home-page .visual-hero h1 {
    max-width: calc(100vw - 2rem);
    font-size: clamp(2.15rem, 9.2vw, 2.85rem);
    line-height: 1.04;
    overflow-wrap: normal;
  }

  .home-page .visual-hero .hero-copy > p:not(.eyebrow) {
    width: min(100%, 340px);
    max-width: calc(100vw - 2rem);
    font-size: 0.92rem;
    overflow-wrap: break-word;
  }

  .home-page .visual-hero .actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-page .trust-strip-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .home-page .trust-item {
    min-height: 78px;
    border-top: 1px solid rgba(18, 25, 34, 0.08);
  }

  .home-page .trust-item:nth-child(odd) {
    border-left: 0;
  }

  .home-page .home-section {
    padding: clamp(4rem, 13vw, 5.25rem) 1rem;
  }

  .home-page .section-heading h2 {
    font-size: clamp(2rem, 9.6vw, 3rem);
  }

  .home-page .category-entry.large,
  .home-page .category-entry:not(.large),
  .home-page .project-application-grid .official-image-card,
  .home-page .case-study-card,
  .home-page .case-study-card:nth-child(1),
  .home-page .case-study-card:nth-child(4) {
    min-height: 390px;
  }

  .home-page .brand-trust .reason-grid,
  .home-page .featured-products-section .product-grid,
  .home-page .dealer-city-list,
  .home-page .home-footer {
    grid-template-columns: 1fr;
  }

  .home-page .brand-trust .reason-card {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid rgba(189, 145, 88, 0.24);
  }

  .home-page .brand-trust .reason-card:first-child {
    border-top: 0;
  }

  .home-page .featured-products-section .catalog-card .media-frame,
  .home-page .featured-products-section .catalog-card .product-image {
    aspect-ratio: 4 / 3.8;
  }

  .home-page .verified-dealer-panel,
  .home-page .image-cta {
    padding: 1.25rem;
  }

  .contact-page .project-inquiry-copy h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }
}

/* Buildcor Homepage V6 - brand identity system refinement */
.home-page {
  --v6-black: #070a0d;
  --v6-ink: #101820;
  --v6-paper: #ffffff;
  --v6-warm-paper: #f7f4ee;
  --v6-gold: #b8894d;
  --v6-line: rgba(184, 137, 77, 0.38);
  --v6-muted: rgba(17, 24, 32, 0.58);
}

.home-page .section-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(140px, 0.34fr);
  column-gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  padding-top: clamp(1.25rem, 2vw, 2rem);
  border-top: 1px solid rgba(184, 137, 77, 0.26);
}

.home-page .section-heading::after {
  content: "";
  width: 100%;
  height: 1px;
  align-self: start;
  margin-top: 0.45rem;
  background: var(--v6-line);
}

.home-page .section-heading .eyebrow,
.home-page .section-heading h2,
.home-page .section-heading p:not(.eyebrow) {
  grid-column: 1;
}

.home-page .eyebrow {
  color: var(--v6-gold);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
}

.home-page .section-heading h2 {
  color: var(--v6-ink);
}

.visual-projects .section-heading h2,
.visual-projects .section-heading p,
.image-cta h2,
.image-cta p {
  color: #ffffff;
}

.brand-trust {
  background:
    linear-gradient(90deg, rgba(184, 137, 77, 0.09), transparent 28%),
    var(--v6-warm-paper);
}

.brand-trust .section-heading {
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.trust-proof-grid {
  width: min(100%, 1220px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background: transparent;
  border-top: 1px solid var(--v6-line);
  border-bottom: 1px solid var(--v6-line);
  box-shadow: none;
}

.brand-trust .trust-proof-grid {
  gap: 0;
  background: transparent;
  box-shadow: none;
}

.brand-trust .trust-proof-card {
  min-height: clamp(360px, 32vw, 470px);
  padding: clamp(2rem, 4.6vw, 4.5rem) clamp(1.5rem, 3vw, 3rem);
  border-right: 1px solid rgba(184, 137, 77, 0.26);
  background: transparent;
  box-shadow: none;
}

.brand-trust .trust-proof-card:last-child {
  border-right: 0;
}

.brand-trust .trust-proof-card::before {
  opacity: 1;
  width: 1px;
  background: var(--v6-gold);
  transform: scaleY(0.2);
  transform-origin: top;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-trust .trust-proof-card:hover {
  background: rgba(255, 255, 255, 0.38);
}

.brand-trust .trust-proof-card:hover::before {
  transform: scaleY(1);
}

.brand-trust .trust-proof-card .reason-icon {
  color: var(--v6-gold);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
}

.brand-trust .trust-proof-card .reason-icon::before {
  content: "";
}

.brand-trust .trust-proof-card h3 {
  max-width: 340px;
  margin-top: auto;
  font-size: clamp(2.15rem, 3.4vw, 4.35rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.brand-trust .trust-proof-card p {
  max-width: 330px;
  color: rgba(17, 24, 32, 0.64);
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  line-height: 1.72;
}

.featured-products-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8f7f4 100%);
}

.featured-products-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--v6-line), transparent);
}

.featured-products-section .section-heading h2 {
  max-width: 720px;
  font-size: clamp(2.85rem, 5.4vw, 6rem);
}

.featured-products-section .product-grid {
  width: min(100%, 1280px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 1.35vw, 1.25rem);
}

.featured-products-section .catalog-card {
  position: relative;
  min-height: 100%;
  padding: 0;
  border: 1px solid rgba(17, 24, 32, 0.1);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: none;
}

.featured-products-section .catalog-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--v6-gold);
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.featured-products-section .catalog-card:hover {
  border-color: rgba(184, 137, 77, 0.4);
  box-shadow: 0 30px 90px rgba(17, 24, 32, 0.11);
}

.featured-products-section .catalog-card:hover::before {
  transform: scaleX(1);
}

.featured-products-section .catalog-card .media-frame,
.featured-products-section .catalog-card .product-image {
  min-height: clamp(360px, 31vw, 460px);
  border-bottom: 1px solid rgba(17, 24, 32, 0.08);
  background:
    linear-gradient(180deg, #fbfcfd, #f0f3f4);
}

.featured-products-section .catalog-card > :not(.media-frame) {
  margin-inline: clamp(1rem, 1.45vw, 1.35rem);
}

.featured-products-section .product-sku {
  display: inline-flex;
  width: fit-content;
  margin-top: 1.2rem;
  color: var(--v6-gold);
  font-size: 0.68rem;
  font-weight: 840;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.featured-products-section .catalog-card h3 {
  margin-top: 0.55rem;
  color: var(--v6-ink);
  font-size: clamp(1.08rem, 1.15vw, 1.24rem);
  line-height: 1.18;
}

.featured-products-section .product-meta {
  margin-top: auto;
  padding-top: 1.1rem;
  color: var(--v6-muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-products-section .card-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 1.35rem 0 0;
  border-top: 1px solid rgba(17, 24, 32, 0.09);
}

.featured-products-section .button.compact {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.featured-products-section .button.secondary.compact {
  color: var(--v6-ink);
  background: #ffffff;
}

.featured-products-section .button.primary.compact {
  color: #ffffff;
  background: var(--v6-ink);
}

.featured-products-section .button.secondary.compact:hover {
  color: var(--v6-gold);
  background: #fbfaf7;
}

.featured-products-section .button.primary.compact:hover {
  background: var(--v6-black);
}

.dealer-network {
  background: #ffffff;
}

.dealer-network-panel,
.image-cta {
  border-top: 1px solid var(--v6-gold);
  border-radius: 0;
}

.dealer-network-panel {
  background:
    linear-gradient(90deg, rgba(184, 137, 77, 0.16), transparent 30%),
    var(--v6-black);
  box-shadow: 0 36px 96px rgba(9, 13, 17, 0.16);
}

.dealer-network-panel .button.primary,
.image-cta .button.primary {
  background: var(--v3-orange);
}

.image-cta {
  min-height: clamp(460px, 38vw, 620px);
  align-content: end;
  background:
    linear-gradient(90deg, rgba(184, 137, 77, 0.12), transparent 34%),
    var(--v6-black);
}

.image-cta .button.secondary.light {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: none;
}

.image-cta .button.secondary.light:hover {
  border-color: var(--v6-gold);
  color: var(--v6-gold);
}

.home-footer {
  display: grid;
  grid-template-columns: minmax(320px, 1.45fr) repeat(4, minmax(140px, 0.55fr));
  gap: clamp(2rem, 4vw, 4.5rem);
  padding-top: clamp(4.5rem, 8vw, 8rem);
  padding-bottom: clamp(4rem, 7vw, 7rem);
  background:
    linear-gradient(90deg, rgba(184, 137, 77, 0.08), transparent 34%),
    #05080b;
  border-top: 1px solid var(--v6-gold);
}

.home-footer .footer-brand-column {
  max-width: 560px;
}

.home-footer .footer-brand-column strong {
  display: block;
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-footer .footer-brand-column h2 {
  max-width: 520px;
  margin: 1.4rem 0 1.2rem;
  color: #ffffff;
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.home-footer .footer-brand-column p {
  max-width: 440px;
  line-height: 1.75;
}

.home-footer .footer-column {
  padding-top: 0.4rem;
  border-top: 1px solid rgba(184, 137, 77, 0.36);
}

.home-footer .footer-column a {
  padding-block: 0.34rem;
}

@media (max-width: 1180px) {
  .featured-products-section .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-footer {
    grid-template-columns: minmax(0, 1fr) repeat(2, minmax(160px, 0.5fr));
  }

  .home-footer .footer-brand-column {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .home-page .section-heading {
    grid-template-columns: 1fr;
  }

  .home-page .section-heading::after {
    width: min(180px, 42vw);
  }

  .trust-proof-grid {
    grid-template-columns: 1fr;
  }

  .brand-trust .trust-proof-card {
    min-height: 300px;
    border-right: 0;
    border-bottom: 1px solid rgba(184, 137, 77, 0.26);
  }

  .brand-trust .trust-proof-card:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 759px) {
  .home-page .section-heading {
    padding-top: 1rem;
  }

  .home-page .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .brand-trust .trust-proof-card {
    min-height: 260px;
    padding: 1.6rem;
  }

  .brand-trust .trust-proof-card h3 {
    font-size: clamp(2rem, 10vw, 3.35rem);
  }

  .featured-products-section .product-grid {
    grid-template-columns: 1fr;
  }

  .featured-products-section .catalog-card .media-frame,
  .featured-products-section .catalog-card .product-image {
    min-height: 340px;
  }

  .featured-products-section .card-actions {
    margin-top: 1.15rem;
  }

  .home-footer {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .home-footer .footer-brand-column h2 {
    font-size: clamp(2.15rem, 11vw, 3.45rem);
  }
}

/* Buildcor Homepage V5 - final cascade position */
.home-page .site-header {
  padding-block: 0.86rem;
  box-shadow: 0 10px 34px rgba(17, 24, 32, 0.04);
}

.home-page .site-nav a {
  position: relative;
  padding-block: 0.5rem;
  color: rgba(17, 24, 32, 0.64);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.home-page .site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.18rem;
  height: 1px;
  background: var(--v3-orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--v5-ease);
}

.home-page .site-nav a:hover::after,
.home-page .site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.visual-hero h1,
.home-page .section-heading h2,
.image-cta h2 {
  text-wrap: balance;
}

.visual-hero h1 {
  max-width: 820px;
  font-size: clamp(3.15rem, 5.8vw, 6.05rem);
}

.visual-hero .hero-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.visual-hero .button.secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.home-section {
  padding-top: clamp(6rem, 8vw, 9rem);
  padding-bottom: clamp(6rem, 8vw, 9rem);
}

.home-page .section-heading {
  margin-bottom: clamp(2.75rem, 4.5vw, 4.25rem);
}

.official-image-card {
  isolation: isolate;
  box-shadow: var(--v5-shadow-image);
  transition: transform 360ms var(--v5-ease), box-shadow 360ms var(--v5-ease);
}

.official-image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 42px 110px rgba(9, 13, 17, 0.22);
}

.official-image-card img {
  transition: transform 1000ms var(--v5-ease), filter 360ms ease;
}

.official-image-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.03) contrast(1.03);
}

.brand-trust .reason-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 1rem;
  min-height: 260px;
  transition: background 260ms ease, transform 260ms var(--v5-ease);
}

.brand-trust .reason-icon {
  width: auto;
  height: auto;
  justify-self: start;
  border: 0;
  border-radius: 0;
  color: var(--v3-gold);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.18em;
}

.brand-trust .reason-icon::before {
  content: "0";
}

.home-page .catalog-card {
  display: flex;
  flex-direction: column;
  box-shadow: var(--v5-shadow-card);
  transition: transform 280ms var(--v5-ease), box-shadow 280ms var(--v5-ease), border-color 280ms ease;
}

.home-page .catalog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 137, 77, 0.34);
  box-shadow: 0 28px 78px rgba(17, 24, 32, 0.13);
}

.home-page .catalog-card .product-image {
  min-height: 380px;
  background: #f8fafb;
}

.visual-projects {
  background: linear-gradient(180deg, #111820 0%, #0b1015 100%);
}

.case-study-card::after,
.project-application-grid .official-image-card::after {
  background:
    linear-gradient(180deg, transparent 18%, rgba(7, 10, 13, 0.08) 42%, rgba(7, 10, 13, 0.82) 100%),
    linear-gradient(90deg, rgba(7, 10, 13, 0.2), transparent 68%);
}

.about-preview-section .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(1.5rem, 4vw, 3rem);
  border-top-color: rgba(184, 137, 77, 0.4);
}

.about-preview-section .section-heading .eyebrow,
.about-preview-section .section-heading h2,
.about-preview-section .section-heading p {
  grid-column: 1;
}

.about-preview-link {
  grid-column: 2;
  grid-row: 2 / span 2;
  align-self: end;
  margin-top: 0;
}

.dealer-network-panel {
  padding: clamp(2rem, 4vw, 3.4rem);
  border-top-width: 1px;
}

.image-cta {
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(9, 13, 17, 0.18);
}

.home-footer .footer-column h2 {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-footer a {
  transition: color 180ms ease, transform 180ms ease;
}

.home-footer a:hover {
  transform: translateX(2px);
}

@media (max-width: 980px) {
  .about-preview-section .section-heading {
    grid-template-columns: 1fr;
  }

  .about-preview-link {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }
}

@media (max-width: 759px) {
  .visual-hero h1 {
    font-size: clamp(2.75rem, 12.5vw, 4.2rem);
    line-height: 0.96;
  }

  .visual-hero .hero-copy > p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .home-section {
    padding-top: clamp(4.5rem, 14vw, 5.75rem);
    padding-bottom: clamp(4.5rem, 14vw, 5.75rem);
  }

  .category-entry.large,
  .category-entry:not(.large),
  .project-application-grid .official-image-card,
  .case-study-card,
  .case-study-card:nth-child(1),
  .case-study-card:nth-child(4) {
    min-height: 470px;
  }

  .category-entry strong,
  .case-study-card strong,
  .project-application-grid .official-image-card h3 {
    font-size: clamp(1.82rem, 8.8vw, 2.65rem);
  }

  .brand-trust .reason-card {
    min-height: 220px;
  }

  .home-page .catalog-card .product-image {
    min-height: 300px;
  }
}

/* Buildcor Homepage V5 - Creative Director refinement */
.home-page {
  --v5-shadow-image: 0 34px 90px rgba(9, 13, 17, 0.16);
  --v5-shadow-card: 0 18px 56px rgba(17, 24, 32, 0.09);
  --v5-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page .site-header {
  padding-block: 0.86rem;
  box-shadow: 0 10px 34px rgba(17, 24, 32, 0.04);
}

.home-page .site-nav {
  gap: clamp(0.35rem, 1.4vw, 1rem);
}

.home-page .site-nav a {
  position: relative;
  padding-block: 0.5rem;
  color: rgba(17, 24, 32, 0.64);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.home-page .site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.18rem;
  height: 1px;
  background: var(--v3-orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--v5-ease);
}

.home-page .site-nav a:hover::after,
.home-page .site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.visual-hero .hero-copy {
  padding-top: clamp(1rem, 4vh, 3rem);
}

.visual-hero h1,
.home-page .section-heading h2,
.image-cta h2 {
  text-wrap: balance;
}

.visual-hero h1 {
  max-width: 820px;
  font-size: clamp(3.15rem, 5.8vw, 6.05rem);
}

.visual-hero .hero-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.visual-hero .button.secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero-slide {
  filter: saturate(0.96) contrast(1.04);
}

.trust-strip-inner {
  overflow: hidden;
  border: 1px solid rgba(184, 137, 77, 0.22);
}

.trust-item {
  background: rgba(255, 255, 255, 0.96);
}

.home-section {
  padding-top: clamp(6rem, 8vw, 9rem);
  padding-bottom: clamp(6rem, 8vw, 9rem);
}

.home-page .section-heading {
  margin-bottom: clamp(2.75rem, 4.5vw, 4.25rem);
}

.home-page .section-heading h2 {
  max-width: 880px;
  letter-spacing: 0;
}

.home-page .section-heading p:not(.eyebrow) {
  line-height: 1.75;
}

.official-image-card {
  isolation: isolate;
  box-shadow: var(--v5-shadow-image);
  transition: transform 360ms var(--v5-ease), box-shadow 360ms var(--v5-ease);
}

.official-image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 42px 110px rgba(9, 13, 17, 0.22);
}

.official-image-card img {
  transition: transform 1000ms var(--v5-ease), filter 360ms ease;
}

.official-image-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.03) contrast(1.03);
}

.category-entry strong,
.case-study-card strong,
.project-application-grid .official-image-card h3 {
  max-width: 92%;
  text-wrap: balance;
}

.category-entry small,
.case-study-card small {
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.16em;
}

.brand-trust .reason-grid {
  box-shadow: var(--v5-shadow-card);
}

.brand-trust .reason-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 1rem;
  min-height: 260px;
  transition: background 260ms ease, transform 260ms var(--v5-ease);
}

.brand-trust .reason-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: var(--v3-gold);
  opacity: 0;
  transition: opacity 260ms ease;
}

.brand-trust .reason-card:hover {
  background: #fbfaf7;
  transform: translateY(-2px);
}

.brand-trust .reason-card:hover::before {
  opacity: 1;
}

.brand-trust .reason-icon {
  width: auto;
  height: auto;
  justify-self: start;
  border: 0;
  border-radius: 0;
  color: var(--v3-gold);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.18em;
}

.brand-trust .reason-icon::before {
  content: "0";
}

.brand-trust .reason-card h3 {
  max-width: 260px;
  margin-bottom: 0;
  font-size: clamp(1.18rem, 1.4vw, 1.38rem);
  line-height: 1.12;
}

.featured-products-section {
  border-top: 1px solid rgba(17, 24, 32, 0.06);
}

.home-page .catalog-card {
  display: flex;
  flex-direction: column;
  box-shadow: var(--v5-shadow-card);
  transition: transform 280ms var(--v5-ease), box-shadow 280ms var(--v5-ease), border-color 280ms ease;
}

.home-page .catalog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 137, 77, 0.34);
  box-shadow: 0 28px 78px rgba(17, 24, 32, 0.13);
}

.home-page .catalog-card .product-image {
  min-height: 380px;
  background: #f8fafb;
}

.home-page .catalog-card h3 {
  line-height: 1.22;
}

.visual-projects {
  background:
    linear-gradient(180deg, #111820 0%, #0b1015 100%);
}

.project-application-grid .official-image-card,
.case-study-card {
  border-radius: 3px;
}

.project-application-grid .official-image-card p {
  color: rgba(255, 255, 255, 0.8);
}

.case-study-grid {
  gap: clamp(1rem, 1.55vw, 1.45rem);
}

.case-study-card::after,
.project-application-grid .official-image-card::after {
  background:
    linear-gradient(180deg, transparent 18%, rgba(7, 10, 13, 0.08) 42%, rgba(7, 10, 13, 0.82) 100%),
    linear-gradient(90deg, rgba(7, 10, 13, 0.2), transparent 68%);
}

.about-preview-section .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(1.5rem, 4vw, 3rem);
  border-top-color: rgba(184, 137, 77, 0.4);
}

.about-preview-section .section-heading .eyebrow,
.about-preview-section .section-heading h2,
.about-preview-section .section-heading p {
  grid-column: 1;
}

.about-preview-link {
  grid-column: 2;
  grid-row: 2 / span 2;
  align-self: end;
  margin-top: 0;
}

.dealer-network-panel {
  padding: clamp(2rem, 4vw, 3.4rem);
  border-top-width: 1px;
}

.dealer-network-panel .button,
.image-cta .button {
  min-width: min(260px, 100%);
}

.image-cta {
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(9, 13, 17, 0.18);
}

.image-cta::before {
  content: "";
  position: absolute;
  inset: auto clamp(2rem, 5vw, 4rem) clamp(1.5rem, 3vw, 2.5rem) auto;
  width: min(24vw, 220px);
  height: 1px;
  background: rgba(184, 137, 77, 0.78);
}

.home-footer {
  row-gap: 2.5rem;
}

.home-footer .footer-column h2 {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-footer a {
  transition: color 180ms ease, transform 180ms ease;
}

.home-footer a:hover {
  transform: translateX(2px);
}

@media (min-width: 760px) {
  .home-page .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    background: transparent;
    border: 0;
  }
}

@media (max-width: 980px) {
  .about-preview-section .section-heading {
    grid-template-columns: 1fr;
  }

  .about-preview-link {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }
}

@media (max-width: 759px) {
  .home-page .site-header {
    padding-block: 0.75rem;
  }

  .home-page .site-nav {
    gap: 0;
  }

  .home-page .site-nav a {
    padding-block: 0.85rem;
    font-size: 0.82rem;
  }

  .visual-hero .home-hero-inner {
    padding-block: 5.5rem 2.5rem;
  }

  .visual-hero h1 {
    font-size: clamp(2.75rem, 12.5vw, 4.2rem);
    line-height: 0.96;
  }

  .visual-hero .hero-copy > p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .visual-hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 10, 13, 0.72) 0%, rgba(7, 10, 13, 0.46) 58%, rgba(7, 10, 13, 0.16) 100%),
      linear-gradient(0deg, rgba(7, 10, 13, 0.68), transparent 60%);
  }

  .trust-item {
    min-height: 74px;
  }

  .home-section {
    padding-top: clamp(4.5rem, 14vw, 5.75rem);
    padding-bottom: clamp(4.5rem, 14vw, 5.75rem);
  }

  .category-entry.large,
  .category-entry:not(.large),
  .project-application-grid .official-image-card,
  .case-study-card,
  .case-study-card:nth-child(1),
  .case-study-card:nth-child(4) {
    min-height: 470px;
  }

  .category-entry,
  .case-study-card,
  .project-application-grid .official-image-card {
    padding: 1.35rem;
  }

  .category-entry strong,
  .case-study-card strong,
  .project-application-grid .official-image-card h3 {
    font-size: clamp(1.82rem, 8.8vw, 2.65rem);
  }

  .brand-trust .reason-card {
    min-height: 220px;
  }

  .home-page .catalog-card .product-image {
    min-height: 300px;
  }

  .dealer-network-panel .button,
  .image-cta .button {
    min-width: 0;
  }

  .image-cta::before {
    display: none;
  }
}

@media (min-width: 760px) {
  .home-hero-inner {
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  }

  .trust-strip-inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .trust-item {
    border-right: 1px solid var(--color-line);
    border-bottom: 0;
    padding: 1.25rem 1.4rem;
  }

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

  .home-page .dealer-network-panel {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr) auto;
    padding: 2.5rem;
  }

  .home-page .final-cta-panel {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 2.5rem;
  }

  .site-footer.home-footer {
    grid-template-columns: 1.5fr repeat(4, minmax(120px, 1fr));
    align-items: start;
  }
}

@media (min-width: 1040px) {
  .home-page .category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 759px) {
  .home-hero {
    padding-top: 3rem;
  }

  .home-hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .trust-strip-inner,
  .home-footer {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .home-page .product-grid,
  .home-page .project-grid,
  .home-page .reason-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-page .category-card {
    min-height: 280px;
  }

  .category-visual {
    min-height: 155px;
  }

  .home-page .catalog-card .product-image {
    min-height: 230px;
  }

  .home-page .dealer-network-panel,
  .home-page .final-cta-panel {
    width: min(100%, 1200px);
    border-radius: 18px;
  }

  .site-footer.home-footer {
    align-items: start;
  }
}

/* Homepage V3 premium brand correction */
.home-page {
  background: #ffffff;
}

.home-page .site-header {
  min-height: 76px;
  border-bottom-color: rgba(228, 233, 238, 0.9);
}

.home-page .site-nav a {
  font-size: 0.94rem;
}

.home-hero {
  position: relative;
  min-height: 720px;
  padding: clamp(4.25rem, 7vw, 6.8rem) 5vw clamp(5.8rem, 8vw, 7.5rem);
  background:
    linear-gradient(90deg, #ffffff 0 50%, #f3f6f8 50% 100%);
}

.home-hero-inner {
  min-height: 560px;
}

.home-hero .eyebrow {
  color: var(--color-blue-dark);
  letter-spacing: 0.12em;
}

.home-hero h1 {
  max-width: 790px;
  font-size: clamp(3.1rem, 6.6vw, 5.75rem);
  line-height: 0.96;
}

.home-hero .hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: #47535e;
}

.home-hero .actions {
  margin-top: 2rem;
}

.premium-bathroom-visual {
  min-height: 620px;
  border: 0;
  border-radius: 28px;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.34) 0 3%, transparent 18%),
    linear-gradient(90deg, rgba(9, 23, 36, 0.1) 0 1px, transparent 1px 92px),
    linear-gradient(180deg, #162536 0%, #0f1c2a 72%, #0a1420 100%);
  box-shadow: 0 36px 80px rgba(10, 20, 32, 0.24);
}

.premium-bathroom-visual::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 18%, transparent 18% 100%),
    linear-gradient(112deg, transparent 0 47%, rgba(255, 255, 255, 0.1) 48% 50%, transparent 51% 100%);
}

.premium-bathroom-visual::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 9%;
  width: 43%;
  height: 12%;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  filter: blur(18px);
}

.bathroom-wall {
  right: 7%;
  bottom: 0;
  width: 42%;
  height: 88%;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 38%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 78px),
    rgba(255, 255, 255, 0.035);
}

.bathroom-tile-stack {
  left: 8%;
  bottom: 12%;
  width: 39%;
  height: 70%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.24), transparent 28%),
    repeating-linear-gradient(90deg, #8b6548 0 34px, #b58b62 34px 68px, #6f4d38 68px 102px);
}

.bathroom-vanity {
  right: 9%;
  bottom: 17%;
  width: 45%;
  height: 18%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: linear-gradient(180deg, #2a3848, #1a2633);
}

.bathroom-basin {
  right: 21%;
  bottom: 32%;
  width: 22%;
  height: 7%;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #dfe6eb);
}

.bathroom-mirror {
  right: 24%;
  top: 14%;
  width: 18%;
  height: 35%;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px 999px 36px 36px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -3rem;
  padding-bottom: 1rem;
}

.trust-strip-inner {
  border-color: rgba(228, 233, 238, 0.92);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(17, 24, 32, 0.1);
}

.trust-item {
  min-height: 92px;
}

.home-section {
  padding-top: clamp(5.6rem, 8vw, 8rem);
  padding-bottom: clamp(5.6rem, 8vw, 8rem);
}

.home-page .section-heading {
  margin-bottom: 2.8rem;
}

.home-page .category-grid {
  gap: 1.25rem;
}

.home-page .category-card {
  min-height: 340px;
  padding: 1.2rem;
  border-color: rgba(228, 233, 238, 0.92);
  border-radius: 22px;
}

.home-page .category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(17, 24, 32, 0.12);
}

.category-visual {
  min-height: 190px;
  border-radius: 16px;
}

.category-card-wood-grain .category-visual {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.34), transparent 42%),
    repeating-linear-gradient(90deg, #8f6548 0 28px, #b88d62 28px 56px, #704d38 56px 84px);
}

.category-card-wall-mounted .category-visual {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.18)),
    #e9eff4;
}

.category-card-wall-mounted .category-visual::before {
  inset: 20% 22% 20%;
  border: 10px solid rgba(36, 52, 71, 0.22);
  border-radius: 12px;
  background: transparent;
}

.category-card-toilets .category-visual::before {
  inset: 24% 28% 14%;
  border-radius: 999px 999px 26px 26px;
  background: linear-gradient(180deg, #ffffff, #dfe7ee);
}

.category-card-bathroom-cabinets .category-visual::before {
  inset: 18% 16% 18%;
  background: linear-gradient(180deg, #334254, #1f2d3d);
}

.category-card-basins .category-visual::before,
.category-card-sinks .category-visual::before {
  inset: 36% 18% 25%;
  background: linear-gradient(180deg, #ffffff, #d9e2e9);
}

.category-card-faucets .category-visual::before {
  border-color: rgba(36, 52, 71, 0.72);
}

.category-card-accessories .category-visual::before {
  background: linear-gradient(135deg, rgba(36, 52, 71, 0.85), rgba(36, 52, 71, 0.2));
}

.why-buildcor {
  background:
    linear-gradient(180deg, #f8fafc, #ffffff);
}

.home-page .reason-grid {
  gap: 1.2rem;
}

.home-page .reason-card {
  min-height: 275px;
  padding: 1.8rem;
  border-radius: 22px;
}

.home-page .product-grid {
  gap: 1.25rem;
}

.home-page .catalog-card {
  border-radius: 22px;
}

.home-page .catalog-card .product-image {
  min-height: 300px;
  border-radius: 16px;
}

.featured-product-placeholder {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent 44%),
    #f2f5f7;
}

.featured-product-placeholder::before,
.featured-product-placeholder::after {
  content: "";
  position: absolute;
}

.featured-product-placeholder.wood::before {
  inset: 12% 22%;
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.24), transparent 38%),
    repeating-linear-gradient(90deg, #8d6549 0 22px, #b88e64 22px 44px, #704f3a 44px 66px);
  box-shadow: 0 18px 36px rgba(17, 24, 32, 0.12);
}

.featured-product-placeholder.wood::after {
  right: 20%;
  bottom: 14%;
  width: 34%;
  height: 4px;
  border-radius: 999px;
  background: rgba(17, 24, 32, 0.16);
}

.projects-preview {
  background: #f8fafc;
}

.architectural-placeholder {
  min-height: 290px;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.9) 0 4%, transparent 18%),
    linear-gradient(115deg, #f5f8fa 0 48%, #e4ebf0 48% 100%);
}

.dealer-network-panel {
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 28px;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.12), transparent 24%),
    #0b2542;
}

.kenya-map-placeholder {
  min-height: 300px;
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 52% 34%, rgba(243, 112, 33, 0.95) 0 5px, transparent 6px),
    radial-gradient(circle at 62% 66%, rgba(243, 112, 33, 0.9) 0 5px, transparent 6px),
    radial-gradient(circle at 34% 70%, rgba(243, 112, 33, 0.8) 0 5px, transparent 6px),
    linear-gradient(145deg, #123b66, #071a2f);
}

.final-cta-panel {
  padding: clamp(2rem, 5vw, 3.4rem);
  border-radius: 28px;
}

.home-footer {
  padding-top: 3.4rem;
  padding-bottom: 3.4rem;
}

@media (min-width: 760px) {
  .home-hero-inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  }

  .home-page .reason-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 759px) {
  .home-hero {
    min-height: auto;
    padding-top: 3.5rem;
    padding-bottom: 5rem;
    background: #ffffff;
  }

  .home-hero h1 {
    font-size: clamp(2.45rem, 13vw, 3.45rem);
  }

  .premium-bathroom-visual {
    min-height: 390px;
    border-radius: 22px;
  }

  .trust-strip {
    margin-top: -2rem;
  }

  .home-page .category-card {
    min-height: 310px;
  }

  .category-visual {
    min-height: 170px;
  }

  .home-page .catalog-card .product-image {
    min-height: 260px;
  }
}

/* Buildcor Website Integration Phase 1 */
.home-page {
  background: #ffffff;
}

.home-page .site-header {
  background: rgba(255, 255, 255, 0.88);
  border-bottom-color: rgba(210, 216, 220, 0.7);
}

.visual-hero {
  position: relative;
  display: grid;
  min-height: min(100svh, 920px);
  padding: 0 5vw;
  isolation: isolate;
  overflow: hidden;
  background: #121820;
}

.hero-gallery,
.hero-slide,
.visual-hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-gallery {
  z-index: -2;
  overflow: hidden;
  background: #121820;
}

.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 1200ms ease, transform 6200ms ease;
}

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

.visual-hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 11, 15, 0.76) 0%, rgba(7, 11, 15, 0.46) 42%, rgba(7, 11, 15, 0.16) 100%),
    linear-gradient(0deg, rgba(7, 11, 15, 0.52), rgba(7, 11, 15, 0.08) 46%);
}

.visual-hero .home-hero-inner {
  display: flex;
  align-items: end;
  width: min(100%, 1280px);
  min-height: min(100svh, 920px);
  padding: clamp(7rem, 12vw, 11rem) 0 clamp(4.5rem, 8vw, 7rem);
}

.visual-hero .hero-copy {
  max-width: 850px;
}

.visual-hero .eyebrow,
.visual-hero h1,
.visual-hero .hero-copy > p:not(.eyebrow) {
  color: #ffffff;
}

.visual-hero h1 {
  max-width: 820px;
  font-size: clamp(3.2rem, 8vw, 7.35rem);
  line-height: 0.91;
  letter-spacing: 0;
}

.visual-hero .hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
}

.visual-hero .button.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.08);
}

.editorial-section,
.featured-products-section,
.lifestyle-inspiration,
.about-buildcor-story {
  background: #ffffff;
}

.home-page .section-heading {
  display: grid;
  gap: 0.85rem;
}

.home-page .section-heading p:not(.eyebrow) {
  max-width: 640px;
  margin: 0;
  color: #68727d;
  font-size: 1rem;
}

.official-category-grid,
.case-study-grid {
  display: grid;
  width: min(100%, 1200px);
  margin-inline: auto;
  gap: clamp(1rem, 2vw, 1.4rem);
}

.official-category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(360px, auto);
}

.official-image-card {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 360px;
  color: #ffffff;
  background: #111820;
  border-radius: 6px;
  box-shadow: 0 26px 70px rgba(17, 24, 32, 0.12);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.official-image-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 84px rgba(17, 24, 32, 0.18);
}

.official-image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #182331;
  transition: transform 900ms ease;
}

.official-image-card:hover img {
  transform: scale(1.045);
}

.official-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 15, 20, 0.04), rgba(10, 15, 20, 0.78)),
    linear-gradient(90deg, rgba(10, 15, 20, 0.2), transparent 56%);
}

.official-image-card > span,
.official-image-card h3,
.official-image-card p {
  position: relative;
  z-index: 1;
}

.category-entry {
  align-content: end;
  padding: clamp(1.25rem, 2.5vw, 2rem);
}

.category-entry.large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 740px;
}

.category-entry span,
.case-study-card span {
  display: grid;
  gap: 0.65rem;
}

.category-entry small,
.case-study-card small,
.story-panel span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.category-entry strong,
.case-study-card strong {
  max-width: 420px;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.brand-trust {
  background:
    linear-gradient(180deg, #f6f7f5, #ffffff);
}

.brand-trust .reason-card {
  border: 1px solid rgba(210, 216, 220, 0.86);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

.brand-trust .reason-icon {
  color: #111820;
  border-color: rgba(17, 24, 32, 0.16);
  background: #f3efe7;
}

.visual-projects {
  background: #f7f7f4;
}

.project-application-grid .official-image-card {
  align-content: end;
  padding: clamp(1.25rem, 2.5vw, 2rem);
}

.project-application-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.project-application-grid .official-image-card h3 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.1;
}

.project-application-grid .official-image-card p {
  max-width: 340px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.case-study-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.case-study-card {
  align-content: end;
  min-height: 520px;
  padding: clamp(1.25rem, 2.5vw, 2rem);
}

.case-study-card.wide {
  min-height: 520px;
}

.about-buildcor-story {
  background: #101820;
  color: #ffffff;
}

.about-buildcor-story .section-heading h2,
.about-buildcor-story .section-heading .eyebrow,
.about-buildcor-story .section-heading p {
  color: #ffffff;
}

.story-sequence {
  display: grid;
  width: min(100%, 1200px);
  margin-inline: auto;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.story-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  min-height: 460px;
}

.story-panel.reverse {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.08fr);
}

.story-panel.reverse img {
  order: 2;
}

.story-panel img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: contain;
  border-radius: 6px;
  background: #1d2936;
}

.story-panel div {
  display: grid;
  gap: 0.85rem;
  padding: clamp(1rem, 2vw, 1.5rem);
}

.story-panel span {
  color: rgba(255, 255, 255, 0.56);
}

.story-panel h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.96;
}

.story-panel p {
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.02rem;
}

.dealer-network-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  min-height: 360px;
  background:
    linear-gradient(135deg, rgba(7, 12, 18, 0.84), rgba(7, 12, 18, 0.5)),
    #101820;
}

.dealer-network-panel p,
.dealer-network-panel h2,
.dealer-network-panel .eyebrow {
  color: #ffffff;
}

.image-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr) auto;
  align-items: center;
  overflow: hidden;
  min-height: 420px;
  border-radius: 6px;
  background: #111820;
}

.image-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  background: #182331;
}

.is-missing-official-image {
  opacity: 0;
  visibility: hidden;
}

.image-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 15, 20, 0.86), rgba(10, 15, 20, 0.42));
}

.image-cta > *:not(img) {
  position: relative;
  z-index: 1;
  grid-column: 2;
}

.image-cta .button {
  grid-column: 3;
}

.image-cta h2,
.image-cta p,
.image-cta .eyebrow {
  color: #ffffff;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 720ms ease, transform 720ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .official-image-card,
  .official-image-card img,
  .reveal-on-scroll {
    transition: none;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .official-category-grid,
  .case-study-grid,
  .story-panel,
  .story-panel.reverse,
  .dealer-network-panel,
  .image-cta {
    grid-template-columns: 1fr;
  }

  .category-entry.large {
    grid-column: auto;
    grid-row: auto;
    min-height: 440px;
  }

  .case-study-card,
  .case-study-card.wide {
    min-height: 430px;
  }

  .story-panel.reverse img {
    order: 0;
  }

  .image-cta > *:not(img),
  .image-cta .button {
    grid-column: 1;
  }
}

@media (max-width: 759px) {
  .visual-hero {
    min-height: 88svh;
    padding: 0 1.1rem;
  }

  .visual-hero .home-hero-inner {
    min-height: 88svh;
    padding-top: 6rem;
    padding-bottom: 3.5rem;
  }

  .visual-hero h1 {
    font-size: clamp(2.7rem, 15vw, 4.25rem);
  }

  .visual-hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 11, 15, 0.28), rgba(7, 11, 15, 0.78)),
      linear-gradient(90deg, rgba(7, 11, 15, 0.4), rgba(7, 11, 15, 0.18));
  }

  .official-category-grid,
  .case-study-grid,
  .story-sequence {
    gap: 0.85rem;
  }

  .official-image-card,
  .category-entry.large,
  .project-application-grid .official-image-card,
  .case-study-card,
  .case-study-card.wide {
    min-height: 380px;
    border-radius: 4px;
  }

  .story-panel {
    gap: 1rem;
    min-height: auto;
  }

  .story-panel img {
    min-height: 320px;
    border-radius: 4px;
  }

  .dealer-network-panel,
  .image-cta {
    min-height: 360px;
    border-radius: 4px;
  }
}

/* Buildcor Homepage V3 - Image-led premium revision */
.home-page,
.about-page {
  --v3-black: #090d11;
  --v3-ink: #111820;
  --v3-gold: #b8894d;
  --v3-orange: #f37021;
  --v3-cream: #f6f3ed;
  --v3-line: rgba(184, 137, 77, 0.32);
  background: #ffffff;
}

.home-page .site-header {
  min-height: 74px;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(17, 24, 32, 0.08);
}

.home-page .brand img {
  max-width: min(50vw, 190px);
  max-height: 42px;
}

.home-page .site-nav a {
  color: rgba(17, 24, 32, 0.74);
  font-size: 0.86rem;
  letter-spacing: 0.01em;
}

.visual-hero {
  min-height: calc(100svh - 74px);
  padding-inline: clamp(1.25rem, 6vw, 7rem);
  background: var(--v3-black);
}

.hero-slide {
  object-position: center;
  transform: scale(1.018);
  transition: opacity 1600ms ease, transform 7600ms ease;
}

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

.visual-hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 10, 13, 0.76) 0%, rgba(7, 10, 13, 0.52) 34%, rgba(7, 10, 13, 0.1) 72%),
    linear-gradient(0deg, rgba(7, 10, 13, 0.52), transparent 54%);
}

.visual-hero .home-hero-inner {
  align-items: center;
  width: min(100%, 1380px);
  min-height: calc(100svh - 74px);
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.visual-hero .hero-copy {
  max-width: min(720px, 58vw);
}

.visual-hero h1 {
  max-width: 720px;
  font-size: clamp(3.3rem, 6.4vw, 6.4rem);
  line-height: 0.93;
}

.visual-hero .hero-copy > p:not(.eyebrow) {
  max-width: 560px;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.68;
}

.visual-hero .actions {
  margin-top: 2.2rem;
}

.home-page .button {
  min-height: 52px;
  padding-inline: 1.25rem;
  border-radius: 3px;
}

.home-page .button.primary {
  background: var(--v3-orange);
  box-shadow: 0 18px 36px rgba(243, 112, 33, 0.22);
}

.home-page .button.secondary {
  border-color: rgba(255, 255, 255, 0.42);
}

.trust-strip {
  margin-top: -2.2rem;
  padding-bottom: 0;
}

.trust-strip-inner {
  width: min(100% - 2rem, 920px);
  border-radius: 3px;
  box-shadow: 0 28px 70px rgba(17, 24, 32, 0.16);
}

.trust-item {
  min-height: 82px;
  padding: 1.15rem 1.35rem;
}

.trust-mark {
  color: var(--v3-orange);
}

.home-section {
  padding: clamp(6.5rem, 9vw, 10rem) 5vw;
}

.home-page .section-heading {
  width: min(100%, 1200px);
  max-width: none;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.home-page .section-heading h2 {
  max-width: 760px;
  font-size: clamp(2.5rem, 4.6vw, 5rem);
  line-height: 0.96;
}

.home-page .section-heading p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(17, 24, 32, 0.58);
  font-size: 1.05rem;
}

.home-page .eyebrow {
  color: var(--v3-orange);
  letter-spacing: 0.18em;
}

.editorial-section {
  background: #ffffff;
}

.official-category-grid {
  width: min(100%, 1320px);
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr) minmax(0, 0.88fr);
  grid-template-rows: repeat(2, minmax(330px, 1fr));
  gap: clamp(1rem, 1.6vw, 1.4rem);
}

.category-entry.large {
  grid-column: 1 / span 1;
  grid-row: 1 / span 2;
  min-height: clamp(720px, 70vw, 900px);
}

.category-entry:not(.large) {
  min-height: 330px;
}

.category-entry:nth-child(4) {
  grid-column: 2 / span 2;
}

.official-image-card {
  border: 0;
  border-radius: 2px;
  box-shadow: 0 34px 90px rgba(17, 24, 32, 0.13);
}

.official-image-card::before {
  content: "";
  position: absolute;
  left: clamp(1.4rem, 2.5vw, 2rem);
  right: auto;
  bottom: clamp(1.15rem, 2vw, 1.7rem);
  z-index: 2;
  width: 0;
  height: 2px;
  background: var(--v3-gold);
  transition: width 280ms ease;
}

.official-image-card:hover::before {
  width: 72px;
}

.official-image-card::after {
  background:
    linear-gradient(180deg, transparent 22%, rgba(7, 10, 13, 0.12) 48%, rgba(7, 10, 13, 0.78) 100%),
    linear-gradient(90deg, rgba(7, 10, 13, 0.16), transparent 62%);
}

.official-image-card img {
  object-fit: cover;
  object-position: center;
}

.category-entry,
.case-study-card,
.project-application-grid .official-image-card {
  padding: clamp(1.4rem, 2.5vw, 2.1rem);
}

.category-entry strong,
.case-study-card strong {
  font-size: clamp(1.65rem, 2.8vw, 3rem);
  line-height: 0.98;
}

.brand-trust {
  background: var(--v3-cream);
}

.brand-trust .reason-grid {
  width: min(100%, 1200px);
  gap: 1px;
  background: rgba(184, 137, 77, 0.32);
  border-top: 1px solid var(--v3-line);
  border-bottom: 1px solid var(--v3-line);
}

.brand-trust .reason-card {
  min-height: 300px;
  padding: clamp(1.5rem, 2.6vw, 2.25rem);
  border: 0;
  border-radius: 0;
  background: #ffffff;
}

.brand-trust .reason-icon {
  width: 46px;
  height: 46px;
  color: var(--v3-gold);
  border-color: var(--v3-line);
  background: transparent;
}

.brand-trust .reason-card h3 {
  font-size: 1.25rem;
}

.brand-trust .reason-card p {
  color: rgba(17, 24, 32, 0.62);
}

.featured-products-section {
  background: #ffffff;
}

.home-page .product-grid {
  width: min(100%, 1200px);
  gap: clamp(1rem, 1.8vw, 1.5rem);
  align-items: stretch;
}

.home-page .catalog-card {
  padding: 0;
  overflow: hidden;
  border-color: rgba(17, 24, 32, 0.12);
  border-radius: 2px;
  background: #ffffff;
  box-shadow: 0 22px 62px rgba(17, 24, 32, 0.08);
}

.home-page .catalog-card .product-image {
  min-height: 360px;
  border: 0;
  border-bottom: 1px solid rgba(17, 24, 32, 0.08);
  border-radius: 0;
  box-shadow: none;
}

.home-page .catalog-card > :not(.media-frame) {
  margin-inline: 1.15rem;
}

.home-page .catalog-card .card-actions {
  margin: auto 1.15rem 1.15rem;
}

.home-page .catalog-card h3 {
  font-size: 1.12rem;
}

.visual-projects {
  background: #111820;
  color: #ffffff;
}

.visual-projects .section-heading h2,
.visual-projects .section-heading p {
  color: #ffffff;
}

.project-application-grid {
  width: min(100%, 1320px);
  gap: clamp(1rem, 1.5vw, 1.35rem);
}

.project-application-grid .official-image-card {
  min-height: clamp(520px, 42vw, 720px);
}

.project-application-grid .official-image-card h3 {
  max-width: 260px;
  font-size: clamp(2rem, 2.8vw, 3.1rem);
  line-height: 0.96;
}

.project-application-grid .official-image-card p {
  max-width: 260px;
}

.lifestyle-inspiration {
  background: #ffffff;
}

.case-study-grid {
  width: min(100%, 1320px);
  grid-template-columns: 1.1fr 0.9fr;
  grid-auto-rows: minmax(420px, auto);
}

.case-study-card {
  min-height: 500px;
}

.case-study-card:nth-child(1),
.case-study-card:nth-child(4) {
  min-height: 620px;
}

.case-study-card:nth-child(1) {
  grid-row: span 2;
}

.case-study-card:nth-child(4) {
  grid-column: 1 / span 2;
}

.about-buildcor-story {
  background: var(--v3-black);
  color: #ffffff;
}

.about-preview-section {
  background: #ffffff;
}

.about-preview-section .section-heading {
  padding: clamp(2rem, 5vw, 4rem);
  border-top: 1px solid var(--v3-line);
  border-bottom: 1px solid rgba(17, 24, 32, 0.08);
  background:
    linear-gradient(135deg, rgba(184, 137, 77, 0.08), transparent 34%),
    #ffffff;
}

.about-preview-section .section-heading h2 {
  max-width: 820px;
}

.about-preview-link {
  justify-self: start;
  margin-top: 1rem;
}

.about-story-hero {
  min-height: clamp(420px, 58vw, 720px);
  align-content: end;
  background:
    linear-gradient(90deg, rgba(9, 13, 17, 0.82), rgba(9, 13, 17, 0.18)),
    url("../assets/images/official/06_about/ABOUT_CONFIDENCE_MASTER.png") center / cover no-repeat;
}

.about-story-hero h1,
.about-story-hero p {
  color: #ffffff;
}

.about-story-page {
  padding-top: clamp(5rem, 8vw, 8rem);
}

.about-company-profile .section-heading {
  width: min(100%, 1200px);
  max-width: none;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.about-company-profile .profile-card {
  min-height: 190px;
}

.about-dealer-network {
  background: #ffffff;
}

.about-buildcor-story .section-heading {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.story-sequence {
  width: min(100%, 1360px);
  gap: clamp(2rem, 4vw, 4rem);
}

.story-panel,
.story-panel.reverse {
  grid-template-columns: minmax(0, 1.5fr) minmax(340px, 0.9fr);
  gap: clamp(2rem, 5vw, 5rem);
  min-height: auto;
}

.story-panel.reverse {
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.5fr);
}

.story-panel.reverse figure {
  order: 2;
}

.story-panel figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: clamp(360px, 33vw, 520px);
  background: #17222d;
  border-radius: 2px;
}

.story-panel figure::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(9, 13, 17, 0.04), rgba(9, 13, 17, 0.18));
  pointer-events: none;
}

.story-panel img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  background: #17222d;
}

.story-panel div {
  align-content: center;
  gap: 1rem;
  padding: 0;
}

.story-panel span {
  color: var(--v3-gold);
}

.story-panel h3 {
  max-width: 520px;
  font-size: clamp(2.8rem, 5.6vw, 6.25rem);
  line-height: 0.88;
}

.story-panel p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.65;
}

.confidence-panel {
  position: relative;
  display: grid;
  min-height: clamp(500px, 52vw, 760px);
}

.confidence-panel figure {
  position: absolute;
  inset: 0;
  min-height: 100%;
}

.confidence-panel figure::before {
  background:
    linear-gradient(90deg, rgba(9, 13, 17, 0.82), rgba(9, 13, 17, 0.28)),
    linear-gradient(0deg, rgba(9, 13, 17, 0.62), transparent);
}

.confidence-panel div {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
  padding: clamp(2rem, 6vw, 5rem);
}

.dealer-network {
  background: #ffffff;
}

.dealer-network-panel {
  width: min(100%, 1200px);
  min-height: 360px;
  border-radius: 2px;
  border-top: 2px solid var(--v3-gold);
  box-shadow: 0 30px 90px rgba(17, 24, 32, 0.16);
}

.image-cta {
  width: min(100%, 1200px);
  margin-inline: auto;
  grid-template-columns: minmax(0, 1fr);
  min-height: 420px;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 2px;
  border-top: 2px solid var(--v3-gold);
  background:
    radial-gradient(circle at 20% 0%, rgba(184, 137, 77, 0.18), transparent 34%),
    #090d11;
}

.image-cta::after {
  display: none;
}

.image-cta > *:not(img),
.image-cta .button {
  grid-column: 1;
}

.image-cta div {
  max-width: 650px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.image-cta h2 {
  max-width: 650px;
  font-size: clamp(2.4rem, 4vw, 4.7rem);
  line-height: 0.95;
}

.home-footer {
  position: relative;
  width: 100%;
  max-width: none;
  padding: clamp(3rem, 6vw, 5rem) 5vw;
  background: #080b0e;
  color: #ffffff;
  border-top: 2px solid var(--v3-gold);
}

.home-footer::before {
  content: "";
  position: absolute;
  left: 5vw;
  right: 5vw;
  top: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.home-footer .footer-brand-column,
.home-footer .footer-column {
  max-width: 320px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  width: auto;
  margin-bottom: 1.2rem;
  padding: 0.65rem 0.85rem;
  background: #ffffff;
}

.footer-logo img {
  max-width: 220px;
  max-height: 58px;
  filter: none;
}

.home-footer h2,
.home-footer strong {
  color: #ffffff;
}

.home-footer a,
.home-footer p {
  color: rgba(255, 255, 255, 0.68);
}

.home-footer a:hover {
  color: #ffffff;
}

@media (max-width: 1180px) {
  .project-application-grid,
  .case-study-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-study-card:nth-child(1),
  .case-study-card:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
    min-height: 520px;
  }
}

@media (max-width: 980px) {
  .visual-hero .hero-copy {
    max-width: 720px;
  }

  .official-category-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .category-entry.large,
  .category-entry:not(.large),
  .category-entry:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
    min-height: 520px;
  }

  .story-panel,
  .story-panel.reverse {
    grid-template-columns: 1fr;
  }

  .story-panel.reverse figure {
    order: 0;
  }

  .image-cta,
  .dealer-network-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 759px) {
  .home-page .site-header {
    min-height: 68px;
  }

  .visual-hero {
    min-height: calc(100svh - 68px);
    padding-inline: 1.15rem;
  }

  .visual-hero .home-hero-inner {
    min-height: calc(100svh - 68px);
    align-items: end;
    padding-block: 6rem 3rem;
  }

  .visual-hero .hero-copy {
    max-width: 100%;
  }

  .visual-hero h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .visual-hero .actions,
  .image-cta {
    align-items: stretch;
  }

  .home-page .button {
    width: 100%;
  }

  .trust-strip-inner {
    width: min(100% - 1rem, 640px);
  }

  .home-section {
    padding: clamp(4.5rem, 15vw, 6rem) 1.15rem;
  }

  .home-page .section-heading {
    margin-bottom: 2.25rem;
  }

  .home-page .section-heading h2 {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
  }

  .category-entry.large,
  .category-entry:not(.large),
  .project-application-grid .official-image-card,
  .case-study-card,
  .case-study-card:nth-child(1),
  .case-study-card:nth-child(4) {
    min-height: 520px;
  }

  .category-entry strong,
  .case-study-card strong,
  .project-application-grid .official-image-card h3 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .brand-trust .reason-grid,
  .project-application-grid,
  .case-study-grid {
    grid-template-columns: 1fr;
  }

  .home-page .catalog-card .product-image {
    min-height: 320px;
  }

  .story-panel figure {
    min-height: 300px;
  }

  .story-panel h3 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  .confidence-panel {
    min-height: 560px;
  }

  .confidence-panel div {
    align-self: end;
    padding: 1.5rem;
  }

  .image-cta,
  .dealer-network-panel {
    min-height: 390px;
    padding: 1.5rem;
  }

  .home-footer {
    padding-inline: 1.15rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    overflow: hidden;
  }

  .home-footer .footer-brand-column,
  .home-footer .footer-column {
    width: 100%;
    max-width: none;
    min-width: 0;
  }
}

/* Buildcor Homepage V5 - final effective polish */
.home-page .site-header {
  padding-block: 0.86rem;
  box-shadow: 0 10px 34px rgba(17, 24, 32, 0.04);
}

.home-page .site-nav a {
  position: relative;
  padding-block: 0.5rem;
  color: rgba(17, 24, 32, 0.64);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.home-page .site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.18rem;
  height: 1px;
  background: var(--v3-orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--v5-ease);
}

.home-page .site-nav a:hover::after,
.home-page .site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.visual-hero h1,
.home-page .section-heading h2,
.image-cta h2 {
  text-wrap: balance;
}

.visual-hero h1 {
  max-width: 820px;
  font-size: clamp(3.15rem, 5.8vw, 6.05rem);
}

.visual-hero .hero-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.visual-hero .button.secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.home-section {
  padding-top: clamp(6rem, 8vw, 9rem);
  padding-bottom: clamp(6rem, 8vw, 9rem);
}

.home-page .section-heading {
  margin-bottom: clamp(2.75rem, 4.5vw, 4.25rem);
}

.official-image-card {
  isolation: isolate;
  box-shadow: var(--v5-shadow-image);
  transition: transform 360ms var(--v5-ease), box-shadow 360ms var(--v5-ease);
}

.official-image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 42px 110px rgba(9, 13, 17, 0.22);
}

.official-image-card img {
  transition: transform 1000ms var(--v5-ease), filter 360ms ease;
}

.official-image-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.03) contrast(1.03);
}

.brand-trust .reason-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 1rem;
  min-height: 260px;
  transition: background 260ms ease, transform 260ms var(--v5-ease);
}

.brand-trust .reason-icon {
  width: auto;
  height: auto;
  justify-self: start;
  border: 0;
  border-radius: 0;
  color: var(--v3-gold);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.18em;
}

.brand-trust .reason-icon::before {
  content: "0";
}

.home-page .catalog-card {
  display: flex;
  flex-direction: column;
  box-shadow: var(--v5-shadow-card);
  transition: transform 280ms var(--v5-ease), box-shadow 280ms var(--v5-ease), border-color 280ms ease;
}

.home-page .catalog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 137, 77, 0.34);
  box-shadow: 0 28px 78px rgba(17, 24, 32, 0.13);
}

.home-page .catalog-card .product-image {
  min-height: 380px;
  background: #f8fafb;
}

.visual-projects {
  background: linear-gradient(180deg, #111820 0%, #0b1015 100%);
}

.case-study-card::after,
.project-application-grid .official-image-card::after {
  background:
    linear-gradient(180deg, transparent 18%, rgba(7, 10, 13, 0.08) 42%, rgba(7, 10, 13, 0.82) 100%),
    linear-gradient(90deg, rgba(7, 10, 13, 0.2), transparent 68%);
}

.about-preview-section .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(1.5rem, 4vw, 3rem);
  border-top-color: rgba(184, 137, 77, 0.4);
}

.about-preview-section .section-heading .eyebrow,
.about-preview-section .section-heading h2,
.about-preview-section .section-heading p {
  grid-column: 1;
}

.about-preview-link {
  grid-column: 2;
  grid-row: 2 / span 2;
  align-self: end;
  margin-top: 0;
}

.dealer-network-panel {
  padding: clamp(2rem, 4vw, 3.4rem);
  border-top-width: 1px;
}

.image-cta {
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(9, 13, 17, 0.18);
}

.home-footer .footer-column h2 {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-footer a {
  transition: color 180ms ease, transform 180ms ease;
}

.home-footer a:hover {
  transform: translateX(2px);
}

@media (max-width: 980px) {
  .about-preview-section .section-heading {
    grid-template-columns: 1fr;
  }

  .about-preview-link {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }
}

@media (max-width: 759px) {
  .visual-hero h1 {
    font-size: clamp(2.75rem, 12.5vw, 4.2rem);
    line-height: 0.96;
  }

  .visual-hero .hero-copy > p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .home-section {
    padding-top: clamp(4.5rem, 14vw, 5.75rem);
    padding-bottom: clamp(4.5rem, 14vw, 5.75rem);
  }

  .category-entry.large,
  .category-entry:not(.large),
  .project-application-grid .official-image-card,
  .case-study-card,
  .case-study-card:nth-child(1),
  .case-study-card:nth-child(4) {
    min-height: 470px;
  }

  .category-entry strong,
  .case-study-card strong,
  .project-application-grid .official-image-card h3 {
    font-size: clamp(1.82rem, 8.8vw, 2.65rem);
  }

  .brand-trust .reason-card {
    min-height: 220px;
  }

  .home-page .catalog-card .product-image {
    min-height: 300px;
  }
}

/* Buildcor Premium Editorial Direction - final cascade lock EOF */
.home-page { --eof-ink: #101722; --eof-navy: #071728; --eof-paper: #fbfaf7; --eof-orange: #f37021; }
.home-page .site-header { background: rgba(255, 255, 255, 0.94); box-shadow: 0 14px 38px rgba(16, 23, 34, 0.055); }
.home-page .site-nav { gap: clamp(1.5rem, 3.2vw, 3.1rem); }
.home-page .visual-hero { min-height: min(780px, calc(100svh - 74px)); background: var(--eof-navy); }
.home-page .hero-slide { object-position: 62% center; }
.home-page .visual-hero-overlay { background: linear-gradient(90deg, rgba(7, 23, 40, 0.96) 0%, rgba(7, 23, 40, 0.88) 32%, rgba(7, 23, 40, 0.32) 51%, rgba(7, 23, 40, 0.02) 73%), linear-gradient(180deg, rgba(7, 23, 40, 0.06), transparent 42%); }
.home-page .visual-hero .home-hero-inner { min-height: min(780px, calc(100svh - 74px)); }
.home-page .visual-hero .hero-copy { max-width: min(610px, 46vw); }
.home-page .visual-hero .eyebrow { margin-bottom: 1.35rem; color: #ff8a3d; font-size: 0.76rem; letter-spacing: 0.22em; }
.home-page .visual-hero h1 { max-width: 620px; font-size: clamp(3.35rem, 5vw, 5.5rem); line-height: 0.97; }
.home-page .visual-hero .hero-copy > p:not(.eyebrow) { max-width: 500px; margin-top: 1.35rem; color: rgba(255, 255, 255, 0.78); font-size: clamp(1rem, 1.05vw, 1.12rem); line-height: 1.72; }
.home-page .button { border-radius: 2px; font-weight: 760; }
.home-page .button.primary { background: var(--eof-orange); box-shadow: 0 16px 32px rgba(243, 112, 33, 0.18); }
.home-page .button.secondary { color: var(--eof-ink); border-color: rgba(16, 23, 34, 0.32); background: transparent; }
.home-page .visual-hero .button.secondary, .home-page .image-cta .button.secondary { color: #ffffff; border-color: rgba(255, 255, 255, 0.52); background: rgba(255, 255, 255, 0.05); }
.home-page .trust-strip { margin-top: 0; background: #ffffff; border-bottom: 1px solid rgba(16, 23, 34, 0.08); }
.home-page .trust-strip-inner { width: min(100%, 1180px); border-radius: 0; box-shadow: none; }
.home-page .trust-item { min-height: 88px; border-left: 1px solid rgba(16, 23, 34, 0.12); }
.home-page .trust-item:first-child { border-left: 0; }
.home-page .home-section { padding-top: clamp(5.6rem, 7.4vw, 8.5rem); padding-bottom: clamp(5.6rem, 7.4vw, 8.5rem); }
.home-page .section-heading h2 { max-width: 780px; color: var(--eof-ink); font-size: clamp(2.35rem, 4.1vw, 4.55rem); line-height: 1.02; }
.home-page .section-heading p:not(.eyebrow) { max-width: 520px; color: rgba(16, 23, 34, 0.58); }
.home-page .official-category-grid { gap: clamp(0.85rem, 1.3vw, 1.15rem); }
.home-page .category-entry.large { min-height: clamp(680px, 64vw, 820px); }
.home-page .category-entry:not(.large) { min-height: 315px; }
.home-page .category-entry:nth-child(6) { grid-column: 2 / span 2; }
.home-page .category-entry strong { max-width: 430px; font-size: clamp(1.4rem, 2.15vw, 2.45rem); line-height: 1.02; }
.home-page .brand-trust { background: var(--eof-paper); }
.home-page .brand-trust .reason-grid { background: transparent; border-top: 1px solid rgba(169, 120, 66, 0.34); border-bottom: 1px solid rgba(16, 23, 34, 0.1); }
.home-page .brand-trust .reason-card { min-height: 280px; padding: clamp(1.65rem, 3vw, 2.6rem); border-left: 1px solid rgba(16, 23, 34, 0.1); background: transparent; }
.home-page .brand-trust .reason-card:first-child { border-left: 0; }
.home-page .featured-products-section { background: linear-gradient(180deg, #ffffff 0%, #faf8f3 100%); }
.home-page .featured-products-section .product-grid { width: min(100%, 1240px); grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: rgba(16, 23, 34, 0.14); border-top: 1px solid rgba(16, 23, 34, 0.14); border-bottom: 1px solid rgba(16, 23, 34, 0.14); }
.home-page .featured-products-section .catalog-card { border: 0; border-radius: 0; box-shadow: none; }
.home-page .featured-products-section .catalog-card .media-frame, .home-page .featured-products-section .catalog-card .product-image { min-height: clamp(330px, 30vw, 430px); background: #f7f7f4; }
.home-page .featured-products-section .product-sku { order: 3; margin-top: 0.35rem; color: rgba(16, 23, 34, 0.38); font-size: 0.68rem; letter-spacing: 0.12em; }
.home-page .featured-products-section .catalog-card h3 { margin-top: 1.2rem; color: var(--eof-ink); font-size: 1.04rem; line-height: 1.34; }
.home-page .featured-products-section .product-meta { margin-top: 0.65rem; color: rgba(16, 23, 34, 0.58); font-size: 0.78rem; letter-spacing: 0.04em; text-transform: uppercase; }
.home-page .featured-products-section .button.primary.compact { display: none; }
.home-page .featured-products-section .button.secondary.compact { min-height: auto; padding: 0; color: var(--eof-orange); border: 0; background: transparent; box-shadow: none; }
.home-page .featured-products-section .button.secondary.compact::after { content: " ->"; }
.home-page .about-preview-layout { width: min(100%, 1240px); margin-inline: auto; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.home-page .about-preview-section .section-heading { padding: 0; border: 0; background: transparent; }
.home-page .verified-dealer-panel { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: clamp(1.6rem, 3vw, 3rem); width: min(100%, 1180px); margin-inline: auto; padding: clamp(2rem, 4vw, 3.5rem); border: 1px solid rgba(16, 23, 34, 0.42); border-radius: 2px; background: #ffffff; box-shadow: none; }
.home-page .verified-dealer-panel .button { grid-column: 2; align-self: end; }
.home-page .dealer-city-list { grid-column: 1; display: grid; grid-template-columns: repeat(3, minmax(0, 150px)); gap: 1rem; }
.home-page .dealer-city-list span { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(16, 23, 34, 0.16); background: var(--eof-paper); color: var(--eof-ink); font-weight: 760; }
.home-page .image-cta { border-top: 0; background: linear-gradient(90deg, rgba(7, 23, 40, 0.94), rgba(7, 23, 40, 0.72)), var(--eof-navy); }
.home-page .home-footer { grid-template-columns: minmax(320px, 1.4fr) repeat(3, minmax(150px, 0.42fr)); gap: clamp(2rem, 5vw, 5.2rem); border-top: 0; background: #07111c; }
.contact-page .project-inquiry-panel { border-radius: 2px; border: 1px solid rgba(16, 23, 34, 0.14); box-shadow: 0 24px 70px rgba(16, 23, 34, 0.08); }
.contact-page .inquiry-card { border-radius: 2px; border-color: rgba(16, 23, 34, 0.14); box-shadow: none; }
@media (max-width: 1080px) { .home-page .featured-products-section .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .home-page .verified-dealer-panel { grid-template-columns: 1fr; } .home-page .verified-dealer-panel .button, .home-page .dealer-city-list { grid-column: 1; } }
@media (max-width: 759px) { .home-page .visual-hero { min-height: min(650px, calc(100svh - 68px)); padding-inline: 1rem; } .home-page .hero-slide { object-position: 69% center; } .home-page .visual-hero-overlay { background: linear-gradient(180deg, rgba(7, 23, 40, 0.42) 0%, rgba(7, 23, 40, 0.16) 28%, rgba(7, 23, 40, 0.88) 72%, rgba(7, 23, 40, 0.96) 100%), linear-gradient(90deg, rgba(7, 23, 40, 0.88) 0%, rgba(7, 23, 40, 0.32) 54%, rgba(7, 23, 40, 0.08) 100%); } .home-page .visual-hero .home-hero-inner { min-height: min(650px, calc(100svh - 68px)); align-items: end; padding-block: 4.25rem 1.35rem; } .home-page .visual-hero .hero-copy { width: 100%; max-width: calc(100vw - 2rem); } .home-page .visual-hero h1 { max-width: 340px; font-size: clamp(2.3rem, 10.4vw, 3.05rem); line-height: 1.02; } .home-page .visual-hero .hero-copy > p:not(.eyebrow) { max-width: 340px; margin-top: 0.9rem; font-size: 0.94rem; line-height: 1.52; } .home-page .visual-hero .actions { display: grid; gap: 0.75rem; margin-top: 1.15rem; } .home-page .button { min-height: 48px; } .home-page .trust-strip-inner { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; } .home-page .trust-item { min-height: 64px; padding: 0.8rem 1rem; } .home-page .trust-item:nth-child(odd) { border-left: 0; } .home-page .trust-item strong { font-size: 0.83rem; } .home-page .home-section { padding-inline: 1rem; padding-top: clamp(4.25rem, 12vw, 5.2rem); padding-bottom: clamp(4.25rem, 12vw, 5.2rem); } .home-page .section-heading h2 { font-size: clamp(2rem, 8.4vw, 2.7rem); line-height: 1.06; } .home-page .category-entry.large, .home-page .category-entry:not(.large), .home-page .category-entry:nth-child(6) { grid-column: auto; min-height: 430px; } .home-page .category-entry strong { font-size: clamp(1.55rem, 7.2vw, 2.2rem); } .home-page .brand-trust .reason-grid, .home-page .featured-products-section .product-grid, .home-page .about-preview-layout, .home-page .home-footer { grid-template-columns: 1fr; } .home-page .brand-trust .reason-card { min-height: 190px; border-left: 0; border-top: 1px solid rgba(16, 23, 34, 0.1); } .home-page .brand-trust .reason-card:first-child { border-top: 0; } .home-page .featured-products-section .catalog-card .media-frame, .home-page .featured-products-section .catalog-card .product-image { min-height: 315px; } .home-page .dealer-city-list { grid-template-columns: 1fr; } .home-page .verified-dealer-panel, .contact-page .project-inquiry-panel { padding: 1.35rem; } }
