:root {
  color-scheme: dark;
  --bg: #090a0b;
  --bg-soft: #0d0e10;
  --surface: #111214;
  --surface-2: #151619;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.24);
  --white: #f4f2ed;
  --muted: #a6a5a2;
  --muted-2: #777875;
  --gold: #deb052;
  --gold-bright: #f0c565;
  --green: #19bf62;
  --display: Arial, Helvetica, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 12%, rgba(222, 176, 82, 0.075), transparent 24%),
    var(--bg);
  color: var(--white);
  font-family: var(--display);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

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

.shell {
  width: min(1500px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 14px;
  left: 14px;
  padding: 12px 16px;
  background: var(--gold-bright);
  color: #090a0b;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin-bottom: 24px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.45;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(9, 10, 11, 0.82);
  backdrop-filter: blur(18px);
  transition: border-color 200ms ease, background-color 200ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(9, 10, 11, 0.96);
}

.header-inner {
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  width: min(1500px, calc(100% - 48px));
  min-height: 88px;
  margin-inline: auto;
}

.brand {
  width: 174px;
}

.brand img {
  width: 100%;
  height: 50px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 2.7vw, 42px);
}

.main-nav a,
.header-cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.main-nav a {
  position: relative;
  padding: 34px 0;
  color: #cececb;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 27px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 250ms var(--ease);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 46px;
  padding: 0 17px;
  border: 1px solid rgba(222, 176, 82, 0.48);
  color: var(--gold-bright);
  transition: color 180ms ease, background-color 180ms ease;
}

.header-cta:hover {
  background: var(--gold-bright);
  color: #090a0b;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  height: clamp(580px, calc(100svh - 150px), 680px);
  min-height: 0;
  margin-top: 32px;
  border: 1px solid var(--line);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 4.2vw, 70px);
}

.hero h1 {
  max-width: 740px;
  margin-bottom: 24px;
  font-size: clamp(52px, 4.7vw, 78px);
  font-weight: 400;
  letter-spacing: -0.066em;
  line-height: 0.95;
}

.hero h1 span,
.location h2 span {
  color: var(--gold);
}

.hero-intro {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 60px;
  padding: 0 22px;
  border: 0;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms var(--ease);
}

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

.button--gold {
  background: var(--gold-bright);
  color: #090a0b;
}

.button--gold:hover {
  background: #f4d17f;
}

.button--outline {
  border: 1px solid rgba(222, 176, 82, 0.46);
  background: transparent;
  color: var(--gold-bright);
}

.button--outline:hover {
  background: var(--gold-bright);
  color: #090a0b;
}

.text-link {
  color: #d5d4d0;
  font-size: 13px;
  text-underline-offset: 6px;
}

.text-link span {
  margin-left: 8px;
  color: var(--gold);
}

.hero-visual {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-left: 1px solid var(--line);
}

.hero-visual::before,
.factory-visual::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 10, 11, 0.05) 45%, rgba(9, 10, 11, 0.9));
  content: "";
  pointer-events: none;
}

.hero-visual img,
.factory-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.hero-visual:hover img,
.factory-visual:hover > img {
  transform: scale(1.025);
}

.hero-visual figcaption {
  position: absolute;
  z-index: 2;
  right: clamp(26px, 4vw, 62px);
  bottom: clamp(26px, 4vw, 62px);
  left: clamp(26px, 4vw, 62px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.hero-visual figcaption span {
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-visual figcaption strong {
  max-width: 420px;
  font-size: clamp(19px, 1.55vw, 26px);
  font-weight: 400;
  line-height: 1.3;
  text-align: right;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 18px;
  border: 1px solid var(--line);
}

.proof-strip > div {
  display: flex;
  min-height: 126px;
  padding: 28px 32px;
  border-right: 1px solid var(--line);
  flex-direction: column;
  justify-content: center;
}

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

.proof-strip strong {
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-size: 22px;
  font-weight: 400;
}

.proof-strip span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.section {
  padding-block: clamp(100px, 10vw, 168px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: clamp(50px, 9vw, 150px);
  margin-bottom: 58px;
}

.section-heading h2,
.factory-copy h2,
.service-heading h2,
.contact-copy h2,
.location h2,
.campaign h2 {
  margin-bottom: 0;
  font-size: clamp(44px, 5vw, 78px);
  font-weight: 400;
  letter-spacing: -0.058em;
  line-height: 1;
}

.section-heading > p {
  max-width: 560px;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.product-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.product-filters button {
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.product-filters button:hover {
  border-color: var(--line-strong);
  color: var(--white);
}

.product-filters button.is-active {
  border-color: var(--gold);
  background: var(--gold);
  color: #090a0b;
}

.product-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.product-card {
  display: flex;
  min-height: 530px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.018), transparent 50%);
  flex-direction: column;
  transition: background-color 240ms ease;
}

.product-card:hover {
  background-color: var(--surface);
}

.product-card--feature {
  display: grid;
  grid-column: span 2;
  grid-template-columns: minmax(0, 1.15fr) minmax(230px, 0.85fr);
}

.product-card__image {
  position: relative;
  display: grid;
  min-height: 280px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 55%, rgba(222, 176, 82, 0.13), transparent 38%),
    #0d0e10;
  place-items: center;
}

.product-card__image::after {
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 42px;
  height: 42px;
  border-right: 1px solid rgba(222, 176, 82, 0.34);
  border-bottom: 1px solid rgba(222, 176, 82, 0.34);
  content: "";
}

.product-card__image img {
  width: 86%;
  height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.38));
  transition: transform 420ms var(--ease);
}

.product-card--feature .product-card__image img {
  height: 400px;
}

.product-card__image--photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: none;
}

.product-card__image--model {
  min-height: 100%;
  background:
    radial-gradient(circle at 52% 48%, rgba(222, 176, 82, 0.16), transparent 40%),
    linear-gradient(145deg, #111214, #090a0b 68%);
}

.product-card__image--model::before {
  position: absolute;
  z-index: 0;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(222, 176, 82, 0.14);
  border-radius: 50%;
  content: "";
}

.product-card__image--model model-viewer {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: transparent;
  --poster-color: transparent;
  --progress-bar-color: var(--gold-bright);
  --progress-bar-height: 2px;
}

.model-badge,
.model-hint {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.model-badge {
  top: 20px;
  left: 20px;
  padding: 8px 10px;
  border: 1px solid rgba(222, 176, 82, 0.38);
  background: rgba(9, 10, 11, 0.66);
  color: var(--gold-bright);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  backdrop-filter: blur(8px);
}

.model-hint {
  right: 22px;
  bottom: 18px;
  color: #959693;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card:hover .product-card__image img {
  transform: translateY(-7px) scale(1.025);
}

.product-card__content {
  display: flex;
  padding: 30px 30px 28px;
  flex: 1;
  flex-direction: column;
}

.product-type {
  margin-bottom: 13px;
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-card h3 {
  margin-bottom: 22px;
  font-size: clamp(27px, 2.2vw, 38px);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.product-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 28px;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  list-style: none;
}

.product-card li::before {
  margin-right: 8px;
  color: var(--gold);
  content: "—";
}

.product-card__content > a {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #deddd9;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.product-card__content > a:hover {
  color: var(--gold-bright);
}

.machine-stack {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, rgba(222, 176, 82, 0.14), transparent 45%);
}

.machine-stack img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58%;
  max-height: 410px;
  object-fit: contain;
  filter: drop-shadow(0 22px 22px rgba(0, 0, 0, 0.45));
  transform: translate(-60%, -50%);
  transition: transform 420ms var(--ease);
}

.machine-stack img:nth-child(2) {
  transform: translate(-30%, -48%);
}

.machine-stack img:nth-child(3) {
  transform: translate(-46%, -50%) scale(0.72);
  opacity: 0;
}

.product-card:hover .machine-stack img:first-child {
  transform: translate(-68%, -50%);
}

.product-card:hover .machine-stack img:nth-child(2) {
  transform: translate(-22%, -48%);
}

.product-note {
  margin: 20px 0 0;
  color: var(--muted-2);
  font-size: 11px;
  line-height: 1.5;
}

.factory {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: 610px;
  border: 1px solid var(--line);
}

.factory-visual {
  position: relative;
  min-height: 610px;
  overflow: hidden;
}

.factory-stamp {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 138px;
  height: 138px;
  padding: 18px;
  border: 1px solid rgba(240, 197, 101, 0.62);
  background: rgba(9, 10, 11, 0.7);
  backdrop-filter: blur(10px);
}

.factory-stamp span {
  align-self: start;
  color: var(--gold-bright);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.factory-stamp strong {
  align-self: end;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
}

.factory-copy {
  display: flex;
  padding: clamp(32px, 3.5vw, 54px);
  border-left: 1px solid var(--line);
  flex-direction: column;
  justify-content: center;
}

.factory-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 3.4vw, 54px);
}

.factory-copy > p:not(.eyebrow) {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.52;
}

.factory-points {
  margin-bottom: 20px;
  border-top: 1px solid var(--line);
}

.factory-points article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.factory-points article > span {
  padding-top: 3px;
  color: var(--gold-bright);
  font-size: 10px;
}

.factory-points h3 {
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 600;
}

.factory-points p {
  margin-bottom: 0;
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.5;
}

.factory-copy > .button {
  width: fit-content;
}

.campaign {
  display: grid;
  grid-template-columns: minmax(290px, 0.9fr) minmax(280px, 0.65fr) auto;
  align-items: center;
  gap: clamp(34px, 6vw, 90px);
  margin-top: 18px;
  padding: clamp(38px, 5vw, 70px);
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(222, 176, 82, 0.075), transparent 45%),
    var(--surface);
}

.campaign .eyebrow {
  margin-bottom: 16px;
}

.campaign h2 {
  font-size: clamp(38px, 4vw, 62px);
}

.campaign > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.campaign .button {
  min-width: 280px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.catalog-card {
  display: flex;
  min-height: 590px;
  padding: 30px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
  text-decoration: none;
  flex-direction: column;
  transition: background-color 220ms ease;
}

.catalog-card:hover {
  background: var(--surface);
}

.catalog-card img {
  width: 100%;
  height: 350px;
  margin-bottom: 26px;
  object-fit: contain;
  filter: saturate(0.86) contrast(1.05);
  transition: transform 420ms var(--ease), filter 220ms ease;
}

.catalog-card:hover img {
  filter: saturate(1) contrast(1.02);
  transform: translateY(-5px);
}

.catalog-card__meta {
  margin-bottom: 12px;
  color: var(--gold-bright);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.catalog-card strong {
  margin-bottom: 26px;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
}

.catalog-card__link {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.catalog-card__link b {
  color: var(--gold-bright);
  font-size: 16px;
  font-weight: 400;
}

.catalog-card--compact {
  min-height: 520px;
}

.catalog-card--compact img {
  height: 280px;
}

.service {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  margin-bottom: clamp(100px, 10vw, 168px);
  border: 1px solid var(--line);
}

.service-heading {
  display: flex;
  padding: clamp(46px, 6vw, 92px);
  background:
    radial-gradient(circle at 20% 80%, rgba(222, 176, 82, 0.1), transparent 36%),
    var(--surface);
  flex-direction: column;
  justify-content: center;
}

.service-grid {
  border-left: 1px solid var(--line);
}

.service-grid article {
  display: grid;
  grid-template-columns: 46px minmax(170px, 0.65fr) minmax(220px, 1fr);
  align-items: start;
  gap: 22px;
  min-height: 190px;
  padding: 38px;
  border-bottom: 1px solid var(--line);
}

.service-grid article:last-child {
  border-bottom: 0;
}

.service-grid article > span {
  padding-top: 4px;
  color: var(--gold-bright);
  font-size: 10px;
}

.service-grid h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
}

.service-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.service-grid a {
  grid-column: 3;
  color: var(--gold-bright);
  font-size: 11px;
  text-underline-offset: 5px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  border: 1px solid var(--line);
}

.contact-copy {
  display: flex;
  padding: clamp(46px, 6vw, 92px);
  flex-direction: column;
  justify-content: center;
}

.contact-copy h2 {
  margin-bottom: 30px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.contact-copy dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin: 0;
}

.contact-copy dl > div:last-child {
  grid-column: 1 / -1;
}

.contact-copy dt {
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-copy dd {
  margin: 0;
  color: #deddd9;
  font-size: 14px;
  line-height: 1.6;
}

.contact-copy dd a {
  text-decoration: none;
}

.contact-copy dd a:hover {
  color: var(--gold-bright);
}

.contact-form {
  position: relative;
  padding: clamp(46px, 6vw, 92px);
  border-top: 2px solid var(--gold);
  border-left: 1px solid var(--line);
  background: var(--surface);
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.form-heading > span {
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.form-heading p {
  margin: 0;
  color: var(--muted-2);
  font-size: 10px;
}

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

.form-grid label {
  display: grid;
  gap: 10px;
}

.form-grid label > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #deddd9;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.form-grid small {
  color: var(--muted-2);
  font-size: 8px;
  font-weight: 400;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  background: transparent;
  color: var(--white);
  font-size: 15px;
  line-height: 1.4;
}

.form-grid input,
.form-grid select {
  height: 52px;
}

.form-grid textarea {
  min-height: 88px;
  padding: 14px 0;
  resize: vertical;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: #666865;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-bottom-color: var(--gold);
  outline: 0;
}

.form-grid select {
  color: #a7a7a4;
}

.form-grid select option {
  background: var(--surface);
  color: var(--white);
}

.form-grid__wide {
  grid-column: 1 / -1;
}

.form-submit {
  width: 100%;
  margin-top: 34px;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.form-status {
  min-height: 20px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.form-status.is-success {
  color: #7ae4a4;
}

.form-status.is-error {
  color: #ff9b8f;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.location {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.42fr) auto;
  align-items: end;
  gap: 50px;
  margin-block: 18px clamp(100px, 10vw, 160px);
  padding: clamp(42px, 5vw, 72px);
  border: 1px solid var(--line);
  background: linear-gradient(100deg, rgba(222, 176, 82, 0.07), transparent 45%);
}

.location .eyebrow {
  margin-bottom: 16px;
}

.location h2 {
  font-size: clamp(38px, 4vw, 62px);
}

.location address {
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.7;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #070809;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(150px, 0.65fr));
  gap: clamp(40px, 7vw, 110px);
  padding-block: 72px;
}

.footer-main > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-direction: column;
}

.footer-brand img {
  width: 170px;
  height: 50px;
  margin-bottom: 12px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  max-width: 300px;
  margin: 0;
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.55;
}

.footer-main strong {
  margin-bottom: 10px;
  color: var(--gold-bright);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-main a,
.footer-main span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-block: 22px 34px;
  border-top: 1px solid var(--line);
  color: #60615f;
  font-size: 10px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 66px;
  height: 66px;
  border: 1px solid rgba(25, 191, 98, 0.64);
  border-radius: 50%;
  background: rgba(9, 10, 11, 0.8);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(8px);
  place-items: center;
  transition: transform 220ms var(--ease);
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.02);
}

.floating-whatsapp img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[hidden] {
  display: none !important;
}

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

  .main-nav {
    gap: 20px;
  }

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

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

  .campaign {
    grid-template-columns: 1fr 0.7fr;
  }

  .campaign .button {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .service-grid article {
    grid-template-columns: 38px 1fr;
  }

  .service-grid p,
  .service-grid a {
    grid-column: 2;
  }

  .location {
    grid-template-columns: 1fr 0.55fr;
  }

  .location .button {
    grid-column: 1 / -1;
    width: fit-content;
  }
}

@media (max-width: 980px) {
  .shell,
  .header-inner {
    width: min(100% - 34px, 760px);
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 76px;
  }

  .brand {
    width: 148px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .menu-toggle__lines {
    display: grid;
    gap: 5px;
  }

  .menu-toggle__lines i {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--gold-bright);
    transition: transform 220ms ease;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines i:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines i:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 99;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    height: calc(100svh - 76px);
    padding: 36px 24px;
    background: rgba(9, 10, 11, 0.99);
    flex-direction: column;
    justify-content: flex-start;
  }

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

  .main-nav a {
    width: min(100%, 760px);
    margin-inline: auto;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    font-size: 22px;
    font-weight: 400;
  }

  .main-nav a::after {
    display: none;
  }

  .hero,
  .factory,
  .contact {
    grid-template-columns: 1fr;
  }

  .factory {
    min-height: 0;
  }

  .hero {
    height: auto;
    min-height: 0;
    margin-top: 17px;
  }

  .hero-copy {
    min-height: 610px;
    padding: 68px 52px;
  }

  .hero-visual {
    min-height: 560px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

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

  .proof-strip > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .product-card--feature {
    grid-column: 1 / -1;
  }

  .factory-visual {
    min-height: 560px;
  }

  .factory-copy {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service {
    grid-template-columns: 1fr;
  }

  .service-heading {
    min-height: 460px;
  }

  .service-grid {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .contact-form {
    border-left: 0;
  }

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

@media (max-width: 680px) {
  .shell,
  .header-inner {
    width: calc(100% - 28px);
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
  }

  .hero-copy {
    min-height: 540px;
    padding: 54px 24px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .hero-intro {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-actions .text-link {
    padding: 8px 2px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-visual figcaption {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual figcaption strong {
    text-align: left;
  }

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

  .proof-strip > div {
    min-height: 104px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .section {
    padding-block: 92px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .factory-copy h2,
  .service-heading h2,
  .contact-copy h2,
  .location h2 {
    font-size: clamp(41px, 12vw, 58px);
  }

  .section-heading > p {
    font-size: 15px;
  }

  .product-filters {
    margin-right: -14px;
    padding-right: 14px;
  }

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

  .product-card,
  .product-card--feature {
    display: flex;
    grid-column: auto;
    min-height: 510px;
  }

  .product-card--feature .product-card__image img {
    height: 280px;
  }

  .product-card__image--model,
  .product-card__image--model model-viewer {
    min-height: 340px;
  }

  .machine-stack {
    min-height: 300px;
  }

  .factory-visual {
    min-height: 480px;
  }

  .factory-stamp {
    right: 22px;
    bottom: 22px;
    width: 140px;
    height: 140px;
    padding: 19px;
  }

  .factory-copy,
  .service-heading,
  .contact-copy,
  .contact-form {
    padding: 52px 24px;
  }

  .factory-copy > .button {
    width: 100%;
  }

  .campaign {
    grid-template-columns: 1fr;
    padding: 42px 24px;
  }

  .campaign .button {
    grid-column: auto;
    width: 100%;
    min-width: 0;
  }

  .catalog-card,
  .catalog-card--compact {
    min-height: 540px;
  }

  .catalog-card img,
  .catalog-card--compact img {
    height: 340px;
  }

  .service-heading {
    min-height: 410px;
  }

  .service-grid article {
    grid-template-columns: 34px 1fr;
    min-height: 0;
    padding: 30px 24px;
  }

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

  .form-grid__wide {
    grid-column: auto;
  }

  .form-heading {
    align-items: flex-start;
    gap: 12px;
    flex-direction: column;
  }

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

  .contact-copy dl > div:last-child {
    grid-column: auto;
  }

  .location {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 30px;
    padding: 42px 24px;
  }

  .location .button {
    grid-column: auto;
    width: 100%;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
  }

  .floating-whatsapp img {
    width: 44px;
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
