.site-header.inner-header {
  position: relative;
  top: 0;
  color: #fff;
  background: #151515;
}

.site-header.inner-header.sticky {
  position: fixed;
  top: 0;
}

.inner-main {
  background: var(--paper);
}

.page-hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background-color: #151515;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 7, 7, .12), rgba(7, 7, 7, .82)),
    linear-gradient(90deg, rgba(7, 7, 7, .86), rgba(7, 7, 7, .04) 68%);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(24, 62, 120, .28), transparent 52%);
  pointer-events: none;
}

[dir="rtl"] .page-hero::before {
  background:
    linear-gradient(180deg, rgba(7, 7, 7, .12), rgba(7, 7, 7, .82)),
    linear-gradient(270deg, rgba(7, 7, 7, .86), rgba(7, 7, 7, .04) 68%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding-block: 90px 74px;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, .55);
  font-size: 11px;
}

.breadcrumbs a:hover {
  color: #fff;
}

.page-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(52px, 6vw, 86px);
  line-height: 1.12;
  letter-spacing: -3px;
}

.page-hero p {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .73);
  font-size: 16px;
}

.page-intro {
  padding: 105px 0;
  background: #fff;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
  align-items: center;
}

.editorial-copy h2,
.page-heading h2 {
  margin: 14px 0 20px;
  font-size: clamp(38px, 4vw, 60px);
  line-height: 1.22;
  letter-spacing: -2px;
}

.editorial-copy > p,
.page-heading > p {
  color: var(--muted);
  font-size: 15px;
}

.editorial-media {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  background: #ddd;
  box-shadow: var(--shadow);
}

.editorial-media img {
  width: 100%;
  height: 100%;
  min-height: 510px;
  object-fit: cover;
}

.media-label {
  position: absolute;
  inset-inline-start: 24px;
  bottom: 24px;
  padding: 11px 16px;
  color: #fff;
  background: rgba(15, 15, 15, .86);
  font-size: 11px;
}

.facts-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 30px;
}

.fact-box {
  min-height: 120px;
  padding: 22px;
  background: var(--paper);
  border-inline-start: 3px solid var(--accent);
}

.fact-box strong {
  display: block;
  font-size: 24px;
}

.fact-box span {
  color: var(--muted);
  font-size: 11px;
}

.content-section {
  padding: 105px 0;
}

.content-section.alt {
  background: #ebeae5;
}

.page-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.page-heading.center {
  margin-inline: auto;
  text-align: center;
}

.page-heading.center .eyebrow {
  justify-content: center;
}

.info-grid,
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.info-card {
  position: relative;
  min-height: 285px;
  padding: 34px 30px;
  background: #fff;
  border-top: 3px solid var(--accent);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .05);
  transition: .3s;
}

.info-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.info-card > span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
}

.info-card h3 {
  margin: 45px 0 10px;
  font-size: 20px;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.info-card a {
  position: absolute;
  inset-inline-start: 30px;
  bottom: 25px;
  font-size: 11px;
  font-weight: 800;
}

.info-card a:hover {
  color: var(--accent);
}

.catalog-card {
  display: flex;
  flex-direction: column;
  min-height: 470px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  transition: .3s;
}

.catalog-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.catalog-image {
  height: 285px;
  display: grid;
  place-items: center;
  padding: 25px;
  background: linear-gradient(145deg, #edf0ef, #d3dad7);
  overflow: hidden;
}

.catalog-image img {
  width: 86%;
  height: 88%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 18px 16px rgba(0, 0, 0, .16));
  transition: transform .35s;
}

.catalog-card:hover img {
  transform: scale(1.05);
}

.catalog-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px 26px;
}

.catalog-copy small {
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
}

.catalog-copy h3 {
  margin: 5px 0 7px;
  font-size: 19px;
}

.catalog-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 11px;
}

.catalog-copy a {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 13px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  font-weight: 800;
}

.catalog-copy a:hover {
  color: var(--accent);
}

.dark-callout {
  padding: 90px 0;
  color: #fff;
  background: #151515;
}

.callout-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.callout-inner h2 {
  margin: 0 0 8px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.2;
}

.callout-inner p {
  margin: 0;
  color: rgba(255, 255, 255, .55);
  font-size: 13px;
}

.brand-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-inline-start: 1px solid var(--line);
}

.brand-row {
  min-height: 145px;
  padding: 26px;
  background: rgba(255, 255, 255, .45);
  border-inline-end: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brand-row small {
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
}

.brand-row h3 {
  margin: 18px 0 5px;
  font-size: 15px;
}

.brand-row p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.project-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.project-entry {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(0, 0, 0, .86)),
    var(--image) center / cover;
}

.project-entry small {
  color: #ff8b65;
  font-size: 9px;
  font-weight: 800;
}

.project-entry h3 {
  margin: 7px 0;
  font-size: 25px;
}

.project-entry p {
  margin: 0;
  color: rgba(255, 255, 255, .63);
  font-size: 11px;
}

.product-hero {
  min-height: 640px;
}

.product-hero .page-hero-content {
  width: 100%;
}

.product-kicker {
  display: inline-flex;
  padding: 6px 11px;
  color: #fff;
  background: var(--accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.product-stage {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 45px;
  background: linear-gradient(145deg, #eef0ef, #d3dad6);
  box-shadow: var(--shadow);
}

.product-stage::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, .85);
}

.product-stage img {
  position: relative;
  z-index: 2;
  width: 86%;
  height: 390px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 24px 20px rgba(0, 0, 0, .2));
}

.product-copy h2 {
  margin: 14px 0 18px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.2;
}

.product-copy > p {
  color: var(--muted);
  font-size: 15px;
}

.spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 28px 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.spec-item {
  min-height: 82px;
  padding: 15px 17px;
  background: #fff;
}

.spec-item small {
  display: block;
  color: var(--muted);
  font-size: 9px;
}

.spec-item strong {
  display: block;
  margin-top: 4px;
  font-size: 13px;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin: 25px 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-inline-start: 19px;
  color: #555;
  font-size: 12px;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  color: var(--accent);
  font-weight: 800;
}

.product-gallery {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
}

.gallery-frame {
  min-height: 400px;
  overflow: hidden;
  background: #ddd;
}

.gallery-frame img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

.gallery-frame.contain img {
  padding: 35px;
  object-fit: contain;
  background: #fff;
  mix-blend-mode: multiply;
}

.gallery-feature {
  position: relative;
  height: 520px;
  margin-bottom: 22px;
  overflow: hidden;
  color: #fff;
  background: #151515;
}

.gallery-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, .82));
}

.gallery-feature > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-feature > div {
  position: absolute;
  z-index: 2;
  inset-inline-start: 34px;
  bottom: 30px;
}

.gallery-feature small {
  display: block;
  color: #ff8b65;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
}

.gallery-feature strong {
  display: block;
  margin-top: 4px;
  font-size: 24px;
}

.rich-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-shot {
  margin: 0;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .07);
  transition: transform .3s, box-shadow .3s;
}

.gallery-shot:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.gallery-shot > div {
  height: 285px;
  display: grid;
  place-items: center;
  padding: 22px;
  overflow: hidden;
  background: linear-gradient(145deg, #f4f4f1, #e2e3df);
}

.gallery-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 15px 14px rgba(0, 0, 0, .13));
  transition: transform .35s;
  cursor: zoom-in;
}

.gallery-shot:hover img {
  transform: scale(1.045);
}

.gallery-shot.is-photo > div {
  padding: 0;
  background: #111;
}

.gallery-shot.is-photo img {
  object-fit: cover;
  mix-blend-mode: normal;
  filter: none;
}

.gallery-shot figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 66px;
  padding: 13px 18px;
  border-top: 1px solid var(--line);
}

.gallery-shot figcaption span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
}

.gallery-shot figcaption strong {
  font-size: 11px;
}

.product-video {
  position: relative;
  margin-top: 22px;
  overflow: hidden;
  color: #fff;
  background: #111;
}

.product-video video {
  display: block;
  width: 100%;
  max-height: 720px;
  background: #000;
}

.product-video > div {
  position: absolute;
  inset-inline-start: 24px;
  bottom: 24px;
  padding: 14px 18px;
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(10px);
}

.product-video small,
.product-video strong {
  display: block;
}

.product-video small {
  margin-bottom: 5px;
  color: #8ebcff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
}

.product-video strong {
  font-size: 16px;
}

.image-lightbox {
  width: min(1100px, calc(100% - 30px));
  height: min(820px, calc(100vh - 30px));
  padding: 24px;
  background: #111;
  border: 0;
  box-shadow: 0 30px 100px rgba(0, 0, 0, .5);
}

.image-lightbox::backdrop {
  background: rgba(0, 0, 0, .86);
  backdrop-filter: blur(5px);
}

.image-lightbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.image-lightbox button {
  position: absolute;
  z-index: 2;
  top: 10px;
  inset-inline-end: 10px;
  width: 40px;
  height: 40px;
  color: #fff;
  background: var(--accent);
  border: 0;
  cursor: pointer;
  font-size: 25px;
}

.quote-panel {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  color: var(--ink);
  background: #fff;
}

.quote-panel-copy {
  padding: 55px 45px;
  background: linear-gradient(150deg, var(--accent), #0d274e);
}

.quote-panel-copy h2 {
  margin: 12px 0 10px;
  font-size: 38px;
  line-height: 1.25;
}

.quote-panel-copy p {
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
}

.quote-panel-form {
  padding: 45px;
  background: #fff;
}

.quote-panel-form .field-row {
  gap: 16px;
}

.quote-panel-form label {
  display: block;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, .62);
  font-size: 10px;
}

.quote-panel-form input,
.quote-panel-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px 13px;
  color: #fff;
  background: #222;
  border: 1px solid rgba(255, 255, 255, .12);
  outline: none;
}

.quote-panel-form input:focus,
.quote-panel-form textarea:focus {
  border-color: var(--accent);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 70px;
}

.contact-panel {
  padding: 38px;
  background: #fff;
  box-shadow: 0 15px 45px rgba(0, 0, 0, .06);
}

.contact-panel h2 {
  margin: 10px 0 24px;
  font-size: 34px;
}

.contact-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.contact-line small {
  color: var(--muted);
}

.contact-page-form {
  padding: 40px;
  background: #151515;
}

.contact-page-form h2 {
  margin: 0 0 24px;
  color: #fff;
}

.contact-page-form label {
  display: block;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, .6);
  font-size: 10px;
}

.contact-page-form input,
.contact-page-form select,
.contact-page-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px 13px;
  color: #fff;
  background: #222;
  border: 1px solid rgba(255, 255, 255, .13);
  outline: none;
}

.page-map {
  height: 480px;
  margin-top: 22px;
}

.page-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1);
}

.steel-division {
  background: #f4f5f7;
}

.steel-about {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(45px, 8vw, 120px);
  align-items: start;
  margin-bottom: 110px;
}

.steel-about h2,
.steel-offer h2 {
  margin: 18px 0 0;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1.08;
}

.steel-about h2 em {
  color: var(--blue);
  font-style: normal;
}

.steel-about-copy {
  padding-top: 34px;
  border-top: 1px solid #c9cdd3;
}

.steel-about-copy p {
  margin: 0 0 22px;
  color: #555d68;
  font-size: 17px;
  line-height: 2;
}

.steel-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 45px 0 100px;
  background: #d5d9df;
  border: 1px solid #d5d9df;
}

.steel-product-card {
  min-height: 230px;
  padding: 34px;
  background: #fff;
}

.steel-product-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.steel-product-card h3 {
  margin: 42px 0 12px;
  font-size: 25px;
}

.steel-product-card p {
  margin: 0;
  color: #727983;
  line-height: 1.8;
}

.steel-why {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  padding: clamp(38px, 6vw, 80px);
  color: #fff;
  background: linear-gradient(135deg, #0b1422, #173c70);
}

.steel-why h2 {
  margin: 18px 0 0;
  font-size: clamp(35px, 4.4vw, 62px);
  line-height: 1.12;
}

.steel-why ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steel-why li {
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .82);
}

.steel-offer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
  margin-top: 24px;
  padding: clamp(35px, 5vw, 65px);
  background: #fff;
}

.steel-offer h2 {
  font-size: clamp(34px, 4vw, 56px);
}

.steel-offer p {
  max-width: 760px;
  margin: 20px 0 0;
  color: #69717b;
  line-height: 1.9;
}

.steel-gallery-group {
  margin-top: 76px;
}

.steel-gallery-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 25px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid #ccd1d8;
}

.steel-gallery-heading span {
  grid-column: 1 / -1;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.4px;
}

.steel-gallery-heading h3 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 46px);
}

.steel-gallery-heading > strong {
  color: #a4aab3;
  font-size: 24px;
}

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

.steel-rich-gallery .gallery-shot > div {
  height: 330px;
}

.steel-rich-gallery .gallery-shot img {
  object-position: center;
}

@media (max-width: 900px) {
  .editorial-grid,
  .product-layout,
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .info-grid,
  .catalog-grid,
  .brand-table {
    grid-template-columns: 1fr 1fr;
  }

  .product-gallery,
  .quote-panel {
    grid-template-columns: 1fr;
  }

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

  .project-showcase {
    grid-template-columns: 1fr;
  }

  .callout-inner {
    grid-template-columns: 1fr;
  }

  .steel-about,
  .steel-why,
  .steel-offer {
    grid-template-columns: 1fr;
  }

  .steel-product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steel-rich-gallery {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .page-hero {
    min-height: 500px;
  }

  .page-hero-content {
    padding-block: 70px 55px;
  }

  .page-hero h1 {
    font-size: 44px;
    letter-spacing: -2px;
  }

  .page-intro,
  .content-section {
    padding: 75px 0;
  }

  .info-grid,
  .catalog-grid,
  .brand-table {
    grid-template-columns: 1fr;
  }

  .facts-list,
  .spec-list,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .editorial-media,
  .editorial-media img {
    min-height: 390px;
  }

  .product-stage {
    min-height: 390px;
    padding: 25px;
  }

  .product-stage img {
    height: 300px;
  }

  .quote-panel-copy,
  .quote-panel-form,
  .contact-page-form,
  .contact-panel {
    padding: 28px 20px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .gallery-feature {
    height: 390px;
  }

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

  .gallery-shot > div {
    height: 310px;
  }

  .steel-product-grid,
  .steel-why ul {
    grid-template-columns: 1fr;
  }

  .steel-about {
    margin-bottom: 70px;
  }

  .steel-rich-gallery {
    grid-template-columns: 1fr;
  }

  .steel-rich-gallery .gallery-shot > div {
    height: 390px;
  }
}
