@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/geist-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/geist-mono-latin.woff2") format("woff2");
}

:root {
  --ink: #111111;
  --paper: #f4f1e7;
  --white: #ffffff;
  --yellow: #ffcd04;
  --orange: #f46110;
  --muted: #66645f;
  --rule: rgba(17, 17, 17, 0.16);
  --max: 1220px;
  --font-sans: "Geist";
  --font-mono: "Geist Mono";
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans), Arial, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 200;
  background: var(--yellow);
  padding: 12px 18px;
  font-weight: 800;
}
.skip-link:focus {
  top: 16px;
}

.topbar {
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.topbar-inner {
  min-height: 39px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar-inner > span {
  color: rgba(255, 255, 255, 0.62);
}
.topbar-inner div {
  display: flex;
  align-items: center;
  gap: 28px;
}
.topbar-inner a {
  font-weight: 760;
}
.topbar-inner a:hover {
  color: var(--yellow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 241, 231, 0.96);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(14px);
}
.header-inner {
  height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}
.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.brand-mark img {
  width: 68px;
  max-width: none;
}
.brand-type {
  display: grid;
  line-height: 1;
}
.brand-type strong {
  font-size: 20px;
  letter-spacing: 0.075em;
}
.brand-type small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 27px;
  font-size: 14px;
  font-weight: 680;
}
.desktop-nav a {
  position: relative;
  padding-block: 12px;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  height: 3px;
  left: 0;
  right: 100%;
  bottom: 3px;
  background: var(--orange);
  transition: right 0.25s ease;
}
.desktop-nav a:hover::after {
  right: 0;
}
.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  font-weight: 790;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}
.header-cta {
  background: var(--yellow);
  padding: 14px 18px;
  font-size: 13px;
}
.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}
.arrow {
  font-size: 18px;
  line-height: 1;
}
.mobile-menu {
  display: none;
  position: relative;
}
.mobile-menu summary {
  list-style: none;
  width: 44px;
  height: 44px;
  display: grid;
  align-content: center;
  gap: 5px;
  cursor: pointer;
}
.mobile-menu summary::-webkit-details-marker {
  display: none;
}
.mobile-menu summary span {
  width: 28px;
  height: 2px;
  background: var(--ink);
  justify-self: end;
}
.mobile-menu nav {
  position: absolute;
  right: 0;
  top: 54px;
  width: min(290px, calc(100vw - 30px));
  padding: 16px;
  display: grid;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}
.mobile-menu nav a {
  padding: 13px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero {
  min-height: 690px;
  position: relative;
  overflow: hidden;
  background: var(--yellow);
}
.grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(var(--ink) 1px, transparent 1px),
    linear-gradient(90deg, var(--ink) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 72%);
}
.hero-grid {
  min-height: 690px;
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 58px;
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding: 88px 0 76px;
}
.eyebrow {
  margin: 0 0 21px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 810;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--orange);
}
.hero-eyebrow {
  color: rgba(17, 17, 17, 0.68);
}
.hero-eyebrow::before {
  display: none;
}
.hero-eyebrow span {
  background: var(--ink);
  color: var(--white);
  padding: 7px 9px;
}
.eyebrow-dark {
  color: var(--orange);
}
.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(50px, 6vw, 82px);
  line-height: 0.97;
  letter-spacing: -0.058em;
  font-weight: 840;
}
.hero-lead {
  max-width: 670px;
  margin: 30px 0 0;
  color: rgba(17, 17, 17, 0.73);
  font-size: 18px;
  line-height: 1.65;
}
.hero-actions {
  margin-top: 37px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.button {
  min-height: 53px;
  padding: 15px 21px;
}
.button-dark {
  background: var(--ink);
  color: var(--white);
}
.button-dark:hover {
  background: var(--orange);
}
.button-yellow {
  background: var(--yellow);
  color: var(--ink);
}
.button-yellow:hover {
  background: var(--orange);
  color: var(--white);
}
.text-link {
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 790;
}
.hero-tags {
  margin-top: 45px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.hero-tags span {
  border: 1px solid rgba(17, 17, 17, 0.4);
  background: rgba(255, 255, 255, 0.16);
  padding: 8px 12px;
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-visual {
  min-height: 690px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image {
  width: min(520px, 100%);
  aspect-ratio: 4/5;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--ink);
  clip-path: polygon(15% 0, 100% 0, 100% 89%, 86% 100%, 0 100%, 0 14%);
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.58));
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.76) contrast(1.12);
}
.hero-number {
  position: absolute;
  top: 30px;
  right: -10px;
  font-size: 150px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.09em;
  color: rgba(17, 17, 17, 0.075);
}
.hero-note {
  position: absolute;
  z-index: 2;
  left: -35px;
  bottom: 66px;
  width: 310px;
  padding: 19px 21px 19px 47px;
  display: grid;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.19);
}
.hero-note i {
  position: absolute;
  left: 19px;
  top: 23px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #2faf61;
  box-shadow: 0 0 0 6px rgba(47, 175, 97, 0.15);
}
.hero-note strong {
  font-size: 13px;
}
.hero-note small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.proof {
  background: var(--ink);
  color: var(--white);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.proof-grid div {
  min-height: 132px;
  padding: 25px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}
.proof-grid div:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}
.proof-grid strong {
  color: var(--yellow);
  font-size: 31px;
  letter-spacing: -0.04em;
}
.proof-grid span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 11px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.section {
  padding: 110px 0;
}
.section-heading {
  margin-bottom: 52px;
}
.split-heading {
  display: grid;
  grid-template-columns: 1.55fr 0.65fr;
  gap: 90px;
  align-items: end;
}
.section-heading h2,
.alloy-copy h2,
.about-copy h2,
.faq-intro h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(40px, 4.5vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.052em;
}
.split-heading > p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.products-section {
  background: var(--paper);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-left: 1px solid var(--rule);
  border-top: 1px solid var(--rule);
}
.product-card {
  min-height: 510px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: end;
  overflow: hidden;
  background: var(--white);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.product-card:nth-child(2),
.product-card:nth-child(3) {
  background: #e9e6dc;
}
.product-index {
  position: absolute;
  z-index: 2;
  top: 25px;
  left: 28px;
  color: var(--orange);
  font-family: var(--font-mono), monospace;
  font-size: 12px;
}
.product-image {
  align-self: stretch;
  min-width: 0;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.65);
  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}
.product-card:hover .product-image img {
  transform: scale(1.04);
  filter: saturate(1);
}
.product-content {
  position: relative;
  z-index: 2;
  padding: 40px 34px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.98),
    rgba(255, 255, 255, 0.92)
  );
}
.product-card:nth-child(2) .product-content,
.product-card:nth-child(3) .product-content {
  background: linear-gradient(
    90deg,
    rgba(233, 230, 220, 0.98),
    rgba(233, 230, 220, 0.93)
  );
}
.product-detail {
  margin: 0 0 20px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 810;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.product-content h3 {
  margin: 0;
  font-size: 29px;
  letter-spacing: -0.03em;
}
.product-content > p:not(.product-detail) {
  min-height: 66px;
  margin: 13px 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.product-content a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
}
.category-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.category-card {
  min-height: 190px;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}
.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.36;
  filter: grayscale(0.7);
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}
.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.18));
}
.category-card:hover img {
  transform: scale(1.05);
  opacity: 0.53;
}
.category-card div {
  position: relative;
  z-index: 1;
  padding: 32px;
  max-width: 290px;
}
.category-card h3 {
  margin: 0;
  font-size: 22px;
}
.category-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.5;
}

.alloy-section {
  background: var(--ink);
  color: var(--white);
}
.alloy-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
}
.alloy-copy {
  align-self: center;
}
.alloy-copy > p:not(.eyebrow) {
  margin: 27px 0 34px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
}
.alloy-row {
  min-height: 112px;
  display: grid;
  grid-template-columns: 50px 150px 1fr 25px;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.alloy-row:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.alloy-row > span {
  color: var(--orange);
  font-family: var(--font-mono), monospace;
  font-size: 11px;
}
.alloy-row h3 {
  margin: 0;
  font-size: 20px;
}
.alloy-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}
.alloy-row b {
  color: var(--yellow);
}

.industries-section {
  background: var(--yellow);
}
.centered-heading {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}
.centered-heading .eyebrow {
  justify-content: center;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(17, 17, 17, 0.25);
  border-left: 1px solid rgba(17, 17, 17, 0.25);
}
.industry {
  min-height: 145px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(17, 17, 17, 0.25);
  border-bottom: 1px solid rgba(17, 17, 17, 0.25);
}
.industry span {
  font-family: var(--font-mono), monospace;
  font-size: 10px;
}
.industry h3 {
  margin: 28px 0 0;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.about-section {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: center;
}
.about-visual {
  min-height: 620px;
  position: relative;
  background: var(--ink);
}
.about-visual > img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  filter: saturate(0.65) contrast(1.1);
}
.about-visual > div {
  position: absolute;
  right: -35px;
  bottom: 36px;
  width: 205px;
  padding: 26px;
  display: grid;
  background: var(--yellow);
}
.about-visual strong {
  font-size: 42px;
  letter-spacing: -0.06em;
}
.about-visual span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.about-copy > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
}
.values {
  margin-top: 35px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.values > div {
  padding-top: 16px;
  display: flex;
  gap: 12px;
  border-top: 1px solid var(--rule);
}
.values > div > span {
  color: var(--orange);
  font-weight: 900;
}
.values p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.values strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 14px;
}

.faq-section {
  background: #e9e6dc;
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
}
.faq-intro > p:last-child {
  color: var(--muted);
  line-height: 1.7;
}
.faq-list details {
  border-top: 1px solid rgba(17, 17, 17, 0.24);
}
.faq-list details:last-child {
  border-bottom: 1px solid rgba(17, 17, 17, 0.24);
}
.faq-list summary {
  min-height: 81px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  cursor: pointer;
  list-style: none;
  font-weight: 730;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  background: var(--yellow);
  font-size: 20px;
  transition: transform 0.2s ease;
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-list details p {
  margin: -5px 50px 26px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.contact-section {
  padding: 110px 0;
  background: var(--orange);
  color: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}
.contact-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.73);
  line-height: 1.75;
}
.contact-copy address {
  margin-top: 40px;
  display: grid;
  gap: 16px;
  color: rgba(255, 255, 255, 0.77);
  font-size: 13px;
  font-style: normal;
  line-height: 1.6;
}
.contact-copy address a {
  color: var(--white);
  font-size: 16px;
  font-weight: 760;
}
.quote-form {
  padding: 38px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.2);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.quote-form label {
  margin-bottom: 18px;
  display: grid;
  gap: 8px;
  font-size: 11px;
  font-weight: 810;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}
.quote-form input,
.quote-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #d5d2ca;
  outline: none;
  background: #f7f5ef;
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
}
.quote-form input:focus,
.quote-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244, 97, 16, 0.13);
}
.quote-form textarea {
  resize: vertical;
}
.privacy {
  grid-template-columns: 18px 1fr;
  align-items: start;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  line-height: 1.45;
  text-transform: none !important;
}
.privacy input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: var(--orange);
}
.form-submit {
  width: 100%;
}
.form-note {
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.site-footer {
  padding: 72px 0 25px;
  background: var(--ink);
  color: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 55px;
}
.footer-brand strong {
  color: var(--yellow);
  font-size: 29px;
  letter-spacing: 0.08em;
}
.footer-brand p {
  max-width: 300px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.65;
}
.footer-grid h2 {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
}
.footer-grid a:hover {
  color: var(--yellow);
}
.footer-grid span {
  color: rgba(255, 255, 255, 0.58);
}
.footer-bottom {
  margin-top: 60px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.whatsapp {
  position: fixed;
  z-index: 60;
  right: 22px;
  bottom: 22px;
  min-height: 54px;
  padding: 12px 17px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 99px;
  background: #20b858;
  color: var(--white);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  font-size: 12px;
}
.whatsapp > span {
  font-size: 25px;
}
.cookie {
  position: fixed;
  z-index: 100;
  left: 18px;
  right: 18px;
  bottom: 18px;
  max-width: 1120px;
  margin: auto;
  padding: 20px;
  display: grid;
  grid-template-columns: 45px 1fr auto;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(17, 17, 17, 0.2);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
}
.cookie-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  font-size: 23px;
}
.cookie strong {
  font-size: 14px;
}
.cookie p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}
.cookie-more {
  padding: 0;
  margin-top: 7px;
  border: 0;
  background: transparent;
  color: var(--orange);
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 9px;
}
.cookie-actions button {
  padding: 11px 14px;
  border: 1px solid var(--ink);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}
.cookie-actions .secondary {
  background: var(--white);
}
.cookie-actions .primary {
  background: var(--ink);
  color: var(--white);
}

/* Interior pages */
.breadcrumbs {
  margin-bottom: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.breadcrumbs b {
  color: var(--ink);
}
.breadcrumbs a:hover {
  color: var(--orange);
}
.breadcrumbs.light {
  color: rgba(255, 255, 255, 0.55);
}
.breadcrumbs.light b {
  color: var(--white);
}
.interior-hero {
  background: var(--yellow);
}
.interior-hero-grid {
  min-height: 630px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 80px;
}
.interior-hero h1,
.listing-hero h1,
.contact-page h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(52px, 6.7vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.065em;
}
.interior-hero-grid > div:first-child > p:not(.eyebrow) {
  max-width: 700px;
  margin: 27px 0 34px;
  color: rgba(17, 17, 17, 0.72);
  font-size: 17px;
  line-height: 1.7;
}
.interior-image {
  height: 500px;
  overflow: hidden;
  background: var(--ink);
  clip-path: polygon(12% 0, 100% 0, 100% 88%, 88% 100%, 0 100%, 0 12%);
}
.interior-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08);
}
.specs-section {
  background: var(--white);
}
.specs-intro {
  max-width: 830px;
  margin-bottom: 66px;
}
.specs-intro h2 {
  margin: 0;
  font-size: clamp(40px, 4.5vw, 65px);
  line-height: 1;
  letter-spacing: -0.052em;
}
.specs-intro > p:last-child {
  max-width: 700px;
  color: var(--muted);
  line-height: 1.7;
}
.spec-group {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  padding: 40px 0;
  border-top: 1px solid var(--rule);
}
.spec-group:last-child {
  border-bottom: 1px solid var(--rule);
}
.spec-group > div {
  display: grid;
  align-content: start;
  grid-template-columns: 35px 1fr;
  gap: 10px;
}
.spec-group > div span {
  color: var(--orange);
  font-family: var(--font-mono), monospace;
  font-size: 10px;
}
.spec-group h2 {
  margin: 0;
  font-size: 25px;
  letter-spacing: -0.03em;
}
.spec-group ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  list-style: none;
}
.spec-group li {
  padding: 11px 12px;
  border: 1px solid var(--rule);
  background: var(--paper);
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  line-height: 1.35;
}
.interior-cta {
  padding: 75px 0;
  background: var(--orange);
  color: var(--white);
}
.interior-cta > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.interior-cta h2 {
  margin: 0;
  font-size: clamp(38px, 4.6vw, 65px);
  letter-spacing: -0.05em;
}

.listing-hero {
  padding: 85px 0 95px;
  background: var(--yellow);
}
.listing-hero .container > p:not(.eyebrow) {
  max-width: 700px;
  margin: 25px 0 0;
  color: rgba(17, 17, 17, 0.7);
  font-size: 17px;
  line-height: 1.7;
}
.listing-section {
  background: var(--paper);
}
.product-listing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.product-listing article {
  min-height: 480px;
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--white);
}
.product-listing article > span {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 24px;
  color: var(--orange);
  font-family: var(--font-mono), monospace;
  font-size: 10px;
}
.product-listing article > img {
  width: 100%;
  height: 255px;
  object-fit: cover;
  filter: saturate(0.7);
}
.product-listing article > div {
  padding: 30px;
}
.product-listing article p {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.product-listing article h2 {
  margin: 0 0 22px;
  font-size: 28px;
}
.product-listing article a {
  font-size: 13px;
  font-weight: 800;
}
.equipment-section {
  background: var(--white);
}
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.equipment-grid article {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}
.equipment-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  filter: grayscale(0.6);
}
.equipment-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.92));
}
.equipment-grid article > div {
  position: absolute;
  z-index: 1;
  left: 28px;
  right: 28px;
  bottom: 28px;
}
.equipment-grid h2 {
  margin: 0;
  font-size: 25px;
}
.equipment-grid p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.55;
}
.equipment-grid a {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
}

.story-section {
  background: var(--white);
}
.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 95px;
  align-items: center;
}
.story-grid > div:first-child {
  height: 620px;
  overflow: hidden;
}
.story-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.68);
}
.story-grid h2 {
  margin: 0;
  font-size: clamp(42px, 4.7vw, 68px);
  line-height: 1;
  letter-spacing: -0.055em;
}
.story-grid > div:last-child > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
}
.story-grid blockquote {
  margin: 35px 0 0;
  padding: 25px 0 25px 28px;
  border-left: 4px solid var(--yellow);
  font-size: 20px;
  font-weight: 730;
  line-height: 1.45;
}
.values-section {
  background: #e9e6dc;
}
.large-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.large-values article {
  min-height: 310px;
  padding: 30px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.large-values span {
  color: var(--orange);
  font-family: var(--font-mono), monospace;
  font-size: 10px;
}
.large-values h3 {
  margin: 90px 0 13px;
  font-size: 23px;
}
.large-values p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.contact-page {
  padding: 90px 0 110px;
  background: var(--orange);
  color: var(--white);
}
.contact-page-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
  align-items: center;
}
.contact-page-grid > div:first-child > p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}
.contact-page address {
  margin-top: 40px;
  display: grid;
  gap: 15px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-style: normal;
  line-height: 1.55;
}
.contact-page address a {
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 18px;
  }
  .desktop-nav a:nth-child(4) {
    display: none;
  }
  .hero-grid {
    gap: 30px;
  }
  .hero-note {
    left: -10px;
  }
  .about-grid,
  .faq-grid,
  .contact-grid {
    gap: 60px;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(var(--max), calc(100% - 34px));
  }
  .desktop-nav,
  .header-cta {
    display: none;
  }
  .header-inner {
    height: 75px;
    grid-template-columns: 1fr auto;
  }
  .mobile-menu {
    display: block;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    padding-bottom: 50px;
  }
  .hero-copy {
    padding: 70px 0 25px;
  }
  .hero-visual {
    min-height: 540px;
  }
  .hero-image {
    width: 100%;
    max-width: 610px;
    height: 520px;
    aspect-ratio: auto;
  }
  .hero-note {
    left: 0;
    bottom: 35px;
  }
  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }
  .proof-grid div:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }
  .proof-grid div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
  .split-heading,
  .alloy-grid,
  .about-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .category-grid,
  .industries-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-visual {
    width: min(580px, 100%);
  }
  .about-visual > div {
    right: 0;
  }
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .footer-grid > div:last-child {
    grid-column: 1/-1;
  }
  .interior-hero-grid,
  .story-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .interior-image {
    height: 460px;
  }
  .spec-group {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .equipment-grid {
    grid-template-columns: 1fr 1fr;
  }
  .large-values {
    grid-template-columns: 1fr 1fr;
  }
  .story-grid > div:first-child {
    height: 500px;
  }
}

@media (max-width: 560px) {
  .topbar-inner > span,
  .topbar-inner div > span {
    display: none;
  }
  .topbar-inner {
    justify-content: center;
  }
  .brand {
    min-width: 0;
  }
  .brand-type small {
    display: none;
  }
  .hero {
    min-height: auto;
  }
  .hero h1 {
    font-size: 48px;
  }
  .hero-lead {
    font-size: 16px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 21px;
  }
  .hero-tags {
    margin-top: 35px;
  }
  .hero-visual {
    min-height: 425px;
  }
  .hero-image {
    height: 405px;
  }
  .hero-note {
    width: calc(100% - 16px);
    bottom: 18px;
  }
  .hero-number {
    display: none;
  }
  .proof-grid div {
    min-height: 112px;
    padding: 18px;
  }
  .proof-grid strong {
    font-size: 25px;
  }
  .section {
    padding: 78px 0;
  }
  .split-heading {
    gap: 24px;
  }
  .section-heading h2,
  .alloy-copy h2,
  .about-copy h2,
  .faq-intro h2,
  .contact-copy h2 {
    font-size: 39px;
  }
  .product-card {
    min-height: 540px;
    grid-template-columns: 1fr;
    grid-template-rows: 250px auto;
  }
  .product-content > p:not(.product-detail) {
    min-height: 0;
  }
  .category-grid,
  .industries-grid {
    grid-template-columns: 1fr;
  }
  .alloy-row {
    grid-template-columns: 36px 1fr 20px;
    gap: 10px;
    padding: 18px 0;
  }
  .alloy-row p {
    grid-column: 2/4;
  }
  .alloy-row b {
    grid-column: 3;
    grid-row: 1;
  }
  .about-visual,
  .about-visual > img {
    min-height: 450px;
    height: 450px;
  }
  .values {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .quote-form {
    padding: 25px 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand,
  .footer-grid > div:last-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
  .whatsapp b {
    display: none;
  }
  .whatsapp {
    width: 55px;
    height: 55px;
    padding: 0;
    justify-content: center;
    right: 15px;
    bottom: 15px;
  }
  .cookie {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 17px;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .cookie-icon {
    display: none;
  }
  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .interior-hero h1,
  .listing-hero h1,
  .contact-page h1 {
    font-size: 49px;
  }
  .interior-image {
    height: 390px;
  }
  .spec-group ul {
    grid-template-columns: 1fr 1fr;
  }
  .interior-cta > div {
    align-items: flex-start;
    flex-direction: column;
  }
  .product-listing,
  .equipment-grid,
  .large-values {
    grid-template-columns: 1fr;
  }
  .story-grid > div:first-child {
    height: 420px;
  }
  .contact-page-grid {
    padding-top: 30px;
    padding-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
.cookie[hidden],
.cookie-detail[hidden] {
  display: none !important;
}
