:root {
  --ink: #17201d;
  --muted: #5f6c66;
  --line: #dfe4e1;
  --paper: #f5f2ea;
  --white: #ffffff;
  --forest: #1f5f50;
  --rust: #b66138;
  --steel: #2c3437;
  --mist: #eef2ef;
  --page-gutter: max(20px, calc((100vw - 1200px) / 2));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, "Microsoft YaHei", sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  align-items: center;
  background: rgba(245, 242, 234, 0.95);
  border-bottom: 1px solid rgba(23, 32, 29, 0.12);
  display: flex;
  gap: 22px;
  justify-content: space-between;
  left: 0;
  min-height: 74px;
  padding: 8px var(--page-gutter) 8px clamp(14px, 2vw, 28px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
  flex-shrink: 0;
  gap: 12px;
}

.brand-mark {
  align-items: center;
  background: var(--forest);
  color: var(--white);
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  width: 48px;
}

.brand-logo {
  height: auto;
  max-height: 54px;
  object-fit: contain;
  width: clamp(220px, 23vw, 320px);
}

.contact-flag {
  display: inline-block;
  height: 16px;
  margin-left: 5px;
  object-fit: cover;
  vertical-align: -3px;
  width: 32px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: clamp(12px, 1.8vw, 24px);
  font-size: 14px;
  font-weight: 600;
}

.menu-toggle {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  display: none;
  font: inherit;
  font-weight: 700;
  padding: 9px 12px;
}

.hero {
  min-height: 82vh;
  overflow: hidden;
  position: relative;
}

.hero > img {
  height: 82vh;
  object-fit: cover;
  object-position: 62% center;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(15, 24, 24, 0.86), rgba(15, 24, 24, 0.54), rgba(15, 24, 24, 0.14));
  inset: 0;
  position: absolute;
}

.hero-inner {
  align-items: end;
  color: var(--white);
  display: grid;
  gap: clamp(32px, 6vw, 76px);
  grid-template-columns: minmax(0, 780px) 1fr;
  inset: 0;
  justify-items: start;
  padding: 104px clamp(24px, 5vw, 72px) clamp(42px, 7vh, 72px);
  position: absolute;
}

.hero-copy {
  justify-self: start;
  margin: 0;
  max-width: 780px;
  text-align: left;
}

.eyebrow,
.section-kicker {
  color: var(--rust);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(36px, 4.8vw, 62px);
  line-height: 1.06;
  margin-bottom: 20px;
  max-width: 900px;
}

h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.14;
  margin-bottom: 0;
}

h3 {
  font-size: 19px;
  line-height: 1.3;
  margin-bottom: 10px;
}

.hero-copy p:not(.eyebrow) {
  font-size: clamp(17px, 1.8vw, 21px);
  max-width: 670px;
}

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

.button,
.enquiry-form button {
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-width: 144px;
  padding: 11px 16px;
}

.button.primary,
.enquiry-form button {
  background: var(--rust);
  color: var(--white);
}

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

.hero-stats {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-stats div {
  background: rgba(23, 32, 29, 0.38);
  min-height: 130px;
  padding: 26px;
}

.hero-stats strong {
  color: #e4a06e;
  display: block;
  font-size: 34px;
  line-height: 1;
}

.hero-stats span {
  color: #e8efea;
  display: block;
  font-size: 13px;
  margin-top: 10px;
}

.trust-bar {
  background: var(--steel);
  color: var(--white);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-bar div {
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
  padding: 18px clamp(18px, 4vw, 36px);
}

.section,
.band {
  padding: clamp(48px, 5.5vw, 72px) var(--page-gutter);
}

.band {
  background: var(--white);
}

.section-heading {
  margin-bottom: 28px;
  max-width: 1200px;
  width: 100%;
}

.section-heading p:not(.section-kicker) {
  color: var(--muted);
  font-size: 17px;
  margin: 16px 0 0;
  max-width: 730px;
}

.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.why-grid,
.products-grid,
.coverage-grid {
  display: grid;
  gap: 20px;
}

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

.why-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  min-height: 230px;
  padding: 22px;
}

.why-grid span {
  color: var(--rust);
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 28px;
}

.why-grid p,
.product-body p,
.bonded-content p,
.bonded-features span,
.flow-panel span,
.coverage-card p,
.form-note,
footer p {
  color: var(--muted);
}

.products {
  background: var(--mist);
}

.products-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.product-supplier {
  color: var(--rust);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 18px 0;
}

.product-tags span {
  background: var(--mist);
  border: 1px solid var(--line);
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 9px;
}

.product-card a {
  color: var(--forest);
  font-weight: 700;
  margin-top: auto;
  padding-top: 18px;
}

.product-size {
  color: var(--forest);
  font-size: 14px;
  font-weight: 700;
  margin: 10px 0 0;
}

.catalogue-photo-heading {
  align-items: flex-end;
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 32px;
  min-height: 360px;
  overflow: hidden;
  padding: clamp(28px, 5vw, 64px);
  position: relative;
}

.catalogue-photo-heading::before {
  background: linear-gradient(90deg, rgba(18, 35, 31, 0.9), rgba(18, 35, 31, 0.34));
  content: "";
  inset: 0;
  position: absolute;
}

.catalogue-photo-heading > * {
  max-width: 720px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.catalogue-photo-heading h2,
.catalogue-photo-heading p,
.catalogue-photo-heading .section-kicker {
  color: var(--white);
}

.tile-photo-heading {
  background-image: url("assets/mt-peak-decorative/tile-collection.webp");
}

.glass-photo-heading {
  background-image: url("assets/mt-peak-decorative/glass-brick-collection.webp");
}

.bonded {
  align-items: center;
  display: grid;
  gap: clamp(30px, 5vw, 70px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
}

.bonded-content > p {
  font-size: 18px;
}

.bonded-features {
  display: grid;
  gap: 12px;
  margin: 28px 0 30px;
}

.bonded-features article {
  border: 1px solid var(--line);
  display: grid;
  gap: 6px;
  padding: 18px;
}

.bonded-zone-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(199, 96, 46, 0.28), transparent 28%),
    linear-gradient(135deg, #1d2929, #30413c);
  min-height: 620px;
}

.bonded-zone-hero h1 {
  font-size: clamp(36px, 4.8vw, 62px);
}

.supply-route {
  display: grid;
  gap: 14px;
}

.supply-route div {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: grid;
  gap: 7px;
  padding: 24px;
  position: relative;
}

.supply-route div:not(:last-child)::after {
  bottom: -15px;
  color: #e4a06e;
  content: "↓";
  font-size: 22px;
  left: 28px;
  position: absolute;
  z-index: 1;
}

.supply-route span,
.bonded-function-grid article > span {
  color: #e4a06e;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.supply-route strong {
  font-size: 22px;
}

.supply-route small {
  color: #d7dfda;
  font-size: 14px;
}

.bonded-functions {
  background: var(--mist);
}

.bonded-function-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bonded-function-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--rust);
  min-height: 190px;
  padding: 22px;
}

.bonded-function-grid p,
.payment-intro > p,
.payment-timeline p,
.bonded-benefits p,
.bonded-final-card p {
  color: var(--muted);
}

.flexible-payment-section {
  align-items: start;
  background: var(--steel);
  color: var(--white);
  display: grid;
  gap: clamp(38px, 7vw, 90px);
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
}

.flexible-payment-section .section-kicker {
  color: #e4a06e;
}

.flexible-payment-section .payment-intro > p,
.flexible-payment-section .payment-timeline p {
  color: #d7dfda;
}

.payment-highlight {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  display: grid;
  gap: 18px;
  grid-template-columns: auto 1fr;
  margin-top: 34px;
  padding: 24px 0;
}

.payment-highlight strong {
  color: #e4a06e;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
}

.payment-highlight span {
  color: #eef3ef;
  font-weight: 700;
}

.payment-timeline {
  counter-reset: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

.payment-timeline li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  display: grid;
  gap: 20px;
  grid-template-columns: 54px 1fr;
  padding: 21px 0;
}

.payment-timeline li > span {
  align-items: center;
  background: var(--rust);
  color: var(--white);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.payment-timeline strong {
  font-size: 19px;
}

.payment-timeline p {
  margin: 6px 0 0;
}

.bonded-benefits {
  align-items: start;
  display: grid;
  gap: clamp(36px, 7vw, 90px);
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
}

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

.benefit-list span {
  background: var(--mist);
  border: 1px solid var(--line);
  font-weight: 700;
  min-height: 80px;
  padding: 20px;
}

.benefit-list span::before {
  color: var(--rust);
  content: "✓";
  font-weight: 900;
  margin-right: 10px;
}

.bonded-final {
  background: var(--paper);
}

.bonded-final-card {
  background: var(--forest);
  color: var(--white);
  margin-bottom: 26px;
  padding: clamp(32px, 6vw, 72px);
}

.bonded-final-card p {
  color: #d7dfda;
  max-width: 820px;
}

.bonded-final-card .button {
  margin-top: 18px;
}

@media (max-width: 1080px) {
  .bonded-function-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .flexible-payment-section,
  .bonded-benefits {
    grid-template-columns: 1fr;
  }

  .bonded-zone-hero {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .bonded-function-grid,
  .benefit-list {
    grid-template-columns: 1fr;
  }

  .payment-highlight {
    grid-template-columns: 1fr;
  }
}

.flow-panel {
  background: var(--steel);
  color: var(--white);
  padding: clamp(28px, 4vw, 44px);
}

.flow-panel h3 {
  font-size: 26px;
  margin-bottom: 28px;
}

.flow-panel ol {
  counter-reset: steps;
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.flow-panel li {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  gap: 6px;
  padding: 19px 0 19px 54px;
  position: relative;
}

.flow-panel li::before {
  background: var(--rust);
  color: var(--white);
  content: counter(steps, decimal-leading-zero);
  counter-increment: steps;
  font-size: 12px;
  font-weight: 800;
  left: 0;
  padding: 7px 9px;
  position: absolute;
  top: 18px;
}

.flow-panel span {
  color: #d7dfda;
}

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

.coverage article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 180px;
  padding: 24px;
}

.coverage article.primary {
  background: var(--steel);
  color: var(--white);
}

.coverage article.primary p {
  color: #d7dfda;
}

.coverage article span {
  background: var(--rust);
  color: var(--white);
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  margin-top: 12px;
  padding: 5px 9px;
}

.gallery {
  background: var(--mist);
}

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

.gallery-grid img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
}

.gallery-grid img:first-child {
  grid-row: auto;
  height: 100%;
}

.guardrail-gallery-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guardrail-gallery-grid img {
  background: var(--white);
  height: auto;
  justify-self: center;
  max-width: 100%;
  width: auto;
}

.product-gallery figure {
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  margin: 0;
  overflow: hidden;
}

.product-gallery img,
.product-gallery img:first-child {
  aspect-ratio: 4 / 3;
  grid-row: auto;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.product-gallery figcaption {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 13px;
  font-weight: 700;
  min-height: 44px;
  padding: 10px 14px;
}

.resource-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.resource-list a {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--forest);
  display: flex;
  font-weight: 800;
  justify-content: space-between;
  padding: 14px 16px;
}

.resource-list a::after {
  content: "PDF";
  color: var(--rust);
  font-size: 12px;
}

.form-wrap {
  margin: 0 auto;
  max-width: 920px;
}

.enquiry {
  background: #f3f6f4;
}

.enquiry .section-heading {
  margin-bottom: 30px;
}

.contact-details {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 22px;
}

.contact-details > * {
  background: var(--white);
  border: 1px solid #d7dfda;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 16px 18px;
}

.contact-details a:hover {
  border-color: var(--forest);
}

.contact-details span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-details strong {
  color: var(--ink);
  font-size: 15px;
  overflow-wrap: anywhere;
}

.enquiry-form {
  background: var(--white);
  border: 1px solid #d7dfda;
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(23, 32, 29, 0.08);
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 42px);
}

.form-row {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.enquiry-form label,
.enquiry-form legend {
  color: var(--ink);
  display: grid;
  font-size: 14px;
  font-weight: 600;
  gap: 8px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  background: var(--white);
  border: 1px solid #cbd5cf;
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 12px 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
  width: 100%;
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
  color: #89948f;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(31, 95, 80, 0.12);
  outline: none;
}

.enquiry-form textarea {
  line-height: 1.55;
  min-height: 160px;
  resize: vertical;
}

fieldset {
  border: 0;
  display: grid;
  gap: 10px 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
}

fieldset legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
}

fieldset label {
  align-items: center;
  background: #f7f9f8;
  border: 1px solid #d7dfda;
  border-radius: 6px;
  display: inline-flex !important;
  gap: 10px;
  min-height: 48px;
  padding: 10px 12px;
  transition: background 160ms ease, border-color 160ms ease;
}

fieldset label:hover {
  background: #eef4f1;
  border-color: #aabbb3;
}

fieldset input {
  accent-color: var(--forest);
  min-height: auto !important;
  width: auto !important;
}

.enquiry-form button {
  border-radius: 6px;
  justify-self: start;
  min-width: 220px;
}

.form-note {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
  padding-top: 18px;
  text-align: left;
}

.form-note a {
  color: var(--forest);
  font-weight: 700;
}

footer {
  background: var(--steel);
  color: #d9e2dd;
  padding: clamp(40px, 6vw, 64px) var(--page-gutter) 26px;
}

.footer-grid {
  display: grid;
  gap: 38px;
  grid-template-columns: 2fr 1fr 1fr 1fr;
}

.footer-brand {
  color: var(--white);
  display: block;
  font-size: 22px;
  margin-bottom: 12px;
}

.abn-badge {
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #d9e2dd;
  display: inline-flex;
  font-size: 12px;
  margin-top: 10px;
  padding: 6px 10px;
}

footer h4 {
  color: var(--white);
  margin: 0 0 14px;
  text-transform: uppercase;
}

footer a {
  color: #d9e2dd;
  display: block;
  margin-bottom: 8px;
}

.footer-address {
  color: #d9e2dd;
  display: block;
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 20px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-legal a {
  margin: 0;
}

.legal-page {
  margin: 0 auto;
  max-width: 980px;
  padding: 128px clamp(20px, 5vw, 72px) 80px;
}

.legal-page h1 {
  font-size: clamp(42px, 7vw, 72px);
  margin-bottom: 12px;
}

.legal-page h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin: 42px 0 12px;
}

.legal-page li,
.legal-page p {
  color: var(--muted);
  line-height: 1.75;
}

.legal-page .legal-intro {
  border-left: 4px solid var(--rust);
  font-size: 18px;
  padding-left: 20px;
}

.page-hero {
  align-items: center;
  background: var(--steel);
  color: var(--white);
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  min-height: 620px;
  padding: 104px var(--page-gutter) clamp(48px, 5.5vw, 72px);
}

.page-hero img {
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.page-hero p:not(.section-kicker) {
  color: #d7dfda;
  font-size: 17px;
  max-width: 720px;
}

.decorative-hero {
  background:
    radial-gradient(circle at 86% 18%, rgba(222, 128, 71, 0.2), transparent 25%),
    radial-gradient(circle at 64% 82%, rgba(170, 202, 195, 0.16), transparent 28%),
    linear-gradient(135deg, #263234 0%, #1d2929 62%, #32413d 100%);
  overflow: hidden;
  position: relative;
}

.decorative-hero::before,
.decorative-hero::after {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  position: absolute;
}

.decorative-hero::before {
  height: 360px;
  right: -170px;
  top: -190px;
  width: 360px;
}

.decorative-hero::after {
  bottom: -230px;
  height: 480px;
  left: 38%;
  width: 480px;
}

.decorative-hero-copy {
  align-self: center;
  position: relative;
  z-index: 2;
}

.decorative-hero-art {
  min-height: 500px;
  position: relative;
  z-index: 2;
}

.page-hero .hero-art-card {
  aspect-ratio: auto;
  border: 8px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 60px rgba(4, 12, 12, 0.38);
  height: auto;
  object-fit: cover;
  position: absolute;
  transition: transform 180ms ease;
}

.page-hero .hero-art-main {
  right: 2%;
  top: 3%;
  transform: rotate(2deg);
  width: 69%;
}

.page-hero .hero-art-glass {
  bottom: 0;
  left: -2%;
  transform: rotate(-6deg);
  width: 45%;
}

.page-hero .hero-art-plum {
  left: 2%;
  top: 6%;
  transform: rotate(-4deg);
  width: 32%;
}

.page-hero .hero-art-emerald {
  bottom: 3%;
  right: 0;
  transform: rotate(5deg);
  width: 34%;
}

.page-hero .hero-art-card:hover {
  transform: rotate(0) scale(1.025);
  z-index: 4;
}

@media (max-width: 860px) {
  .decorative-hero-art {
    min-height: 480px;
  }
}

@media (max-width: 620px) {
  .decorative-hero-art {
    min-height: 390px;
  }

  .page-hero .hero-art-card {
    border-width: 5px;
  }
}

.steel-profile-hero {
  background:
    linear-gradient(90deg, rgba(23, 32, 29, 0.88), rgba(23, 32, 29, 0.42)),
    url("assets/improve-machinery-factory-aerial.png") center / cover no-repeat;
  grid-template-columns: minmax(0, 760px);
  min-height: 620px;
}

.page-hero h1,
.steel-profile-hero h1,
.huada-windows-hero h1 {
  font-size: clamp(36px, 4.8vw, 62px);
  line-height: 1.06;
  margin-bottom: 18px;
}

.huada-windows-hero {
  background:
    linear-gradient(90deg, rgba(23, 32, 29, 0.9), rgba(23, 32, 29, 0.48)),
    url("assets/huada-windows/beijing-skyline-hero.jpg") center / cover no-repeat;
  grid-template-columns: minmax(0, 780px);
  min-height: 620px;
}

.hero-points {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 30px;
  padding-left: 1.15em;
}

.hero-points li {
  margin: 8px 0;
}

.company-intro {
  background: var(--white);
}

.company-intro-grid {
  display: grid;
  gap: clamp(30px, 5vw, 70px);
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
}

.company-intro-copy p {
  color: var(--muted);
  font-size: 17px;
}

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

.company-facts div {
  background: var(--mist);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 126px;
  padding: 20px;
}

.company-facts strong {
  color: var(--rust);
  font-size: clamp(26px, 2.6vw, 36px);
}

.company-facts span {
  color: var(--muted);
  font-weight: 700;
}

.guardrail-facts div {
  align-items: flex-start;
}

.guardrail-facts strong {
  font-size: clamp(23px, 2.2vw, 32px);
  line-height: 1.1;
  white-space: nowrap;
}

.guardrail-facts span {
  line-height: 1.45;
}

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

.miolism-intro-grid .company-intro-copy {
  max-width: 860px;
}

.miolism-intro-grid .company-facts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-reference-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-reference-grid img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
}

.factory-reference-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.factory-reference-grid img,
.factory-reference-grid img:first-child {
  aspect-ratio: 4 / 3;
  grid-row: auto;
  height: 100%;
  object-fit: cover;
}

.factory-reference-grid .crop-top-text {
  object-position: center bottom;
}

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

.catalogue-card {
  height: 100%;
}

.catalogue-card .product-body {
  min-height: 92px;
  padding: 16px;
}

.catalogue-card h3 {
  margin-bottom: 0;
}


.product-disclaimer {
  background: #fff8f2;
  border-left: 4px solid var(--rust);
  color: var(--ink);
  max-width: 980px;
  padding: 20px 22px;
}

.breadcrumb {
  color: #d7dfda;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 24px;
}

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

.detail-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 190px;
  padding: 20px;
}

.detail-card span {
  color: var(--rust);
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

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

.spec-list div {
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  gap: 6px;
  padding: 18px;
}

.reserved-panel {
  background: var(--white);
  border: 1px solid var(--line);
  max-width: 880px;
  padding: clamp(24px, 4vw, 44px);
}

.reserved-panel p {
  color: var(--muted);
  font-size: 18px;
}

.about-layout {
  display: grid;
  gap: clamp(28px, 5vw, 68px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
}

.about-copy {
  display: grid;
  gap: 18px;
}

.about-copy p {
  color: var(--muted);
  font-size: 19px;
  margin: 0;
}

.about-panel {
  background: var(--steel);
  color: var(--white);
  display: grid;
  gap: 1px;
}

.about-panel div {
  background: rgba(255, 255, 255, 0.05);
  padding: 24px;
}

.about-panel strong {
  color: #e4a06e;
  display: block;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 8px;
}

.about-panel span {
  color: #d7dfda;
  display: block;
}

.about-simple {
  background: var(--white);
  padding-top: 126px;
}

.about-simple article {
  max-width: 920px;
}

.about-simple h1 {
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 28px;
}

.about-simple p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 18px;
  max-width: 820px;
}

.page-cta {
  align-items: center;
  background: var(--steel);
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  padding: clamp(32px, 5vw, 56px) clamp(20px, 5vw, 72px);
}

.page-cta h2 {
  max-width: 760px;
}

.page-cta .button.secondary {
  border-color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1080px) {
  .products-grid,
  .why-grid,
  .detail-grid,
  .gallery-grid,
  .project-reference-grid,
  .factory-reference-grid,
  .catalogue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 880px) {
  .site-header {
    align-items: flex-start;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    gap: 14px;
    left: 0;
    padding: 18px;
    position: absolute;
    right: 0;
    top: 86px;
  }

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

  .hero-inner,
  .bonded,
  .coverage-grid,
  .gallery-grid,
  .footer-grid,
  .page-hero,
  .company-intro-grid,
  .project-reference-grid,
  .factory-reference-grid,
  .guardrail-gallery-grid,
  .about-layout,
  .spec-list {
    grid-template-columns: 1fr;
  }


  .hero-inner {
    align-content: end;
    position: absolute;
  }

  .trust-bar,
  .form-row {
    grid-template-columns: 1fr;
  }

  .gallery-grid img:first-child {
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: absolute;
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    max-height: 48px;
    width: 210px;
  }


  .hero,
  .hero > img {
    min-height: 920px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(15, 24, 24, 0.32), rgba(15, 24, 24, 0.94));
  }

  .hero-inner,
  .products-grid,
  .why-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .miolism-intro-grid .company-facts {
    grid-template-columns: 1fr;
  }

  .guardrail-facts div {
    min-height: 138px;
    padding: 14px;
  }

  .guardrail-facts strong {
    font-size: 22px;
  }

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

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

  .enquiry-form button {
    justify-self: stretch;
    width: 100%;
  }

  .hero-stats div {
    min-height: 112px;
    padding: 20px;
  }
}
