@font-face {
  font-family: "Mier A";
  src: url("./fonts/MierA-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --font-base: "Mier A", sans-serif;
  --font-display: "Mier A", sans-serif;
  --font-serif: "Mier A", sans-serif;
  --black: #111111;
  --muted: #737373;
  --line: #dedede;
  --soft: #f5f5f3;
  --white: #ffffff;
  --header-height: 88px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar { display: none; width: 0; height: 0; }
body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: var(--font-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
img, video { display: block; max-width: 100%; }

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: var(--header-height);
  padding: 0 clamp(20px, 4vw, 68px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--black);
  background: rgba(255, 255, 255, 0.20);
  border-bottom: 0;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transition: color 300ms ease, background 300ms ease, border-color 300ms ease;
}
.site-header--scrolled,
.site-header--menu {
  color: var(--black);
  background: #ffffff;
  border-bottom-color: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.brand {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(220px, 19vw, 285px);
  height: 34px;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.brand-logo {
  position: absolute;
  inset: 50% 0 auto;
  width: 100%;
  height: auto;
  transform: translateY(-50%);
  transition: opacity 250ms ease;
}

.menu-trigger {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 12px 0;
  border: 0;
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 15px;
  cursor: pointer;
}
.menu-lines { width: 31px; display: grid; gap: 8px; }
.menu-lines i { width: 100%; height: 1px; background: currentColor; transition: transform 200ms ease; }
.menu-trigger[aria-expanded="true"] .menu-lines i:first-child { transform: translateY(4px) rotate(45deg); }
.menu-trigger[aria-expanded="true"] .menu-lines i:last-child { transform: translateY(-4px) rotate(-45deg); }
.menu-label {
  width: 58px;
  flex: 0 0 58px;
  text-align: left;
}
.header-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.language-option {
  position: relative;
  min-width: auto;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(17, 17, 17, 0.48);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: color 180ms ease;
}
.language-option + .language-option::before {
  content: "/";
  margin-right: 7px;
  color: rgba(17, 17, 17, 0.28);
  font-weight: 400;
}
.language-option:hover,
.language-option:focus-visible { color: var(--black); outline: none; }
.language-option.is-active { color: var(--black); }
.language-option.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: currentColor;
}
.language-option + .language-option.is-active::after { left: 14px; }
.showroom-link {
  min-height: 34px;
  padding-left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 0;
  border-left: 1px solid rgba(17, 17, 17, 0.20);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-size: 13px;
  font-weight: 600;
  transition: opacity 180ms ease;
}
.showroom-link svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}
.showroom-link:hover,
.showroom-link:focus-visible { opacity: 0.58; outline: none; }
.menu-mobile-tools { display: none; }
.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: var(--white);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-18px);
  pointer-events: none;
  transition: opacity 280ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1), visibility 420ms;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.menu-panel::-webkit-scrollbar { display: none; width: 0; height: 0; }
.menu-panel--open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.menu-panel__inner {
  position: relative;
  width: min(1600px, calc(100% - 64px));
  min-height: 100%;
  margin: 0 auto;
  padding: calc(var(--header-height) + 36px) clamp(20px, 2.5vw, 48px) 40px;
}
.menu-intro {
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.menu-intro p { margin: 0; font-size: 14px; font-weight: 700; }
.menu-intro span { color: #8a8a8a; font-size: 14px; }
.menu-list {
  position: relative;
  min-height: 435px;
}
.menu-list::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 47%;
  width: 1px;
  background: var(--line);
}
.menu-item {
  width: 44%;
  border-top: 1px solid var(--line);
}
.menu-item:last-child { border-bottom: 1px solid var(--line); }
.menu-item summary,
.menu-direct {
  min-height: 66px;
  display: grid;
  grid-template-columns: 42px 1fr 24px;
  align-items: center;
  list-style: none;
  color: #777;
  font-family: var(--font-base);
  font-size: clamp(25px, 2.6vw, 40px);
  line-height: 1;
  cursor: pointer;
  transition: color 180ms ease;
}
.menu-item summary::-webkit-details-marker { display: none; }
.menu-item summary:hover, .menu-item summary:focus-visible,
.menu-direct:hover, .menu-direct:focus-visible { color: var(--black); outline: none; }
.menu-number {
  color: #a0a0a0;
  font-family: var(--font-base);
  font-size: 14px;
  letter-spacing: 0.15em;
}
.menu-item summary i,
.menu-direct i {
  font-family: var(--font-base);
  font-size: 15px;
  font-style: normal;
  opacity: 0;
  transform: translateX(0);
  transition: opacity 180ms ease, transform 180ms ease;
}
.menu-item summary i { opacity: 0.48; }
.menu-item[open] summary { color: var(--black); }
.menu-item[open] summary i,
.menu-item--direct .menu-direct i { opacity: 1; transform: translateX(0); }
.submenu {
  position: absolute;
  left: 51.5%;
  top: 0;
  width: 44%;
  animation: submenu-in 360ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes submenu-in {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}
.submenu p {
  margin: 0 0 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: #8a8a8a;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  font-weight: 700;
}
.submenu a {
  display: block;
  width: fit-content;
  padding: 8px 0;
  color: #777;
  font-family: var(--font-base);
  font-size: clamp(28px, 3.6vw, 54px);
  line-height: 1.08;
  transition: color 180ms ease, transform 180ms ease;
}
.submenu a:hover, .submenu a:focus-visible { color: var(--black); transform: translateX(8px); outline: none; }
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  color: var(--black);
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  background: #f3f3f1;
}
.hero__media, .hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__media {
  object-fit: cover;
  opacity: 0;
  transition: opacity 500ms ease;
}
.hero__media.is-ready { opacity: 1; }
.hero__veil { background: rgba(255, 255, 255, 0.40); }
.hero__content { position: relative; z-index: 2; padding: 30px 22px; }
.hero__content p {
  margin: 24px 0 0;
  letter-spacing: 0.025em;
  font-size: clamp(14px, 1.4vw, 20px);
  font-weight: 400;
  color: rgba(17, 17, 17, 0.68);
}
.hero h1 {
  margin: 0;
  font-family: var(--font-base);
  font-size: clamp(48px, 5.4vw, 84px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.045em;
}
.hero h1 em { font-weight: 400; }
.scroll-cue {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 14px;
}
.scroll-cue i { width: 1px; height: 32px; background: rgba(17, 17, 17, 0.72); }

.certifications {
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(64px, 7vw, 104px) clamp(22px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: var(--header-height);
}
.certifications__heading {
  margin-bottom: clamp(38px, 4vw, 58px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}
.certifications__heading .eyebrow { margin: 0; }
.certifications__heading h2 {
  margin: 0;
  font-family: var(--font-base);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
}
.certifications__row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.certification-item {
  min-width: 0;
  min-height: 128px;
  padding: 24px clamp(18px, 2.2vw, 34px);
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
}
.certification-item + .certification-item { border-left: 1px solid var(--line); }
.certification-item img {
  width: 70px;
  height: 58px;
  object-fit: contain;
}
.certification-item div { display: grid; gap: 7px; }
.certification-item strong {
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: 0.02em;
}
.certification-item span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.updates {
  min-height: 100vh;
  min-height: 100svh;
  box-sizing: border-box;
  padding: calc(var(--header-height) + 20px) clamp(22px, 6vw, 96px) 24px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--white);
}
.brand-showcase {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  align-content: center;
  overflow: hidden;
}
.brand-heading {
  margin-bottom: clamp(30px, 3vw, 46px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}
.brand-heading .eyebrow { margin-bottom: 22px; }
.brand-heading h2 {
  margin: 0;
  font-family: var(--font-base);
  font-size: clamp(44px, 5vw, 74px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}
.brand-controls { display: flex; gap: 10px; }
.brand-control {
  width: 50px;
  height: 50px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.24);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, opacity 180ms ease;
}
.brand-control svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.brand-control:hover,
.brand-control:focus-visible { color: var(--white); background: var(--black); outline: none; }
.brand-control:disabled { opacity: 0.25; cursor: default; }
.brand-control:disabled:hover { color: inherit; background: transparent; }
.brand-track {
  min-width: 0;
  display: flex;
  gap: clamp(14px, 1.6vw, 24px);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.brand-track::-webkit-scrollbar { display: none; }
.brand-card {
  position: relative;
  flex: 0 0 clamp(220px, min(23vw, calc(80svh - 240px)), 360px);
  aspect-ratio: 4 / 5;
  max-height: 470px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--soft);
  scroll-snap-align: start;
  isolation: isolate;
}
.brand-card::after {
  content: "";
  position: absolute;
  inset: 40% 0 0;
  z-index: 1;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.28));
  pointer-events: none;
}
.brand-card__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}
.brand-card:hover .brand-card__background { transform: scale(1.045); }
.brand-card__logo {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
  bottom: 16px;
  min-height: 86px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: background 220ms ease, transform 220ms ease;
}
.brand-card:hover .brand-card__logo { background: rgba(255, 255, 255, 0.96); transform: translateY(-3px); }
.brand-card__logo img { width: auto; max-width: 88%; height: auto; max-height: 56px; object-fit: contain; }
.brand-progress {
  position: relative;
  width: min(220px, 38vw);
  height: 2px;
  margin: 38px auto 0;
  overflow: hidden;
  background: #ddddda;
}
.brand-progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 44px;
  background: var(--black);
  transform: translateX(0);
  transition: transform 100ms linear;
}

@media (max-height: 780px) and (min-width: 561px) {
  .updates {
    padding-top: calc(var(--header-height) + 12px);
    padding-bottom: 16px;
  }
  .brand-heading {
    margin-bottom: 20px;
  }
  .brand-heading .eyebrow {
    margin-bottom: 10px;
  }
  .brand-heading h2 {
    font-size: clamp(36px, 4.2vw, 56px);
    line-height: 0.96;
  }
  .brand-control {
    width: 44px;
    height: 44px;
  }
  .brand-progress {
    margin-top: 20px;
  }
}
.newsletter {
  width: min(850px, 100%);
  margin: 0 auto;
  text-align: center;
}
.newsletter-section {
  min-height: 100vh;
  min-height: 100svh;
  padding: calc(var(--header-height) + 42px) clamp(22px, 6vw, 96px) 56px;
  display: flex;
  align-items: center;
  background: var(--soft);
  border-top: 1px solid var(--line);
  scroll-margin-top: var(--header-height);
}
.eyebrow {
  margin: 0 0 24px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 14px;
  font-weight: 700;
}
.newsletter h2 {
  margin: 0;
  font-family: var(--font-base);
  font-size: clamp(48px, 6.5vw, 94px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}
.newsletter__form {
  margin-top: 54px;
  display: flex;
  border-bottom: 1px solid var(--black);
}
.newsletter__form input {
  flex: 1;
  min-width: 0;
  padding: 18px 0;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 16px;
}
.newsletter__form button {
  padding: 18px 0 18px 30px;
  border: 0;
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.form-status { margin: 15px 0 0; color: var(--muted); font-size: 14px; }

.footer {
  padding: 68px 24px 36px;
  background: var(--white, #ffffff);
  border-top: 1px solid var(--line, #ebebeb);
}
.footer__top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 960px;
  margin: 0 auto;
  gap: clamp(24px, 4vw, 56px);
  padding-bottom: 48px;
}
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-content: start;
}
.footer-column > p,
.footer-column__title {
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 700;
  color: var(--black, #111);
}
.footer-column a {
  width: fit-content;
  color: #555555;
  font-size: 14px;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
  line-height: 1.4;
}
.footer-column a:hover {
  color: #e31b23;
  transform: translateX(2px);
}
.footer__bottom {
  max-width: 960px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid var(--line, #ebebeb);
  color: #888888;
  font-size: 12.5px;
  text-align: center;
  letter-spacing: 0.02em;
}
.footer__bottom--centered {
  display: block;
}

/* ==========================================================================
   VISUALIZER PAGE (HEADER - IFRAME - FOOTER)
   ========================================================================== */
.visualizer-page .site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.visualizer-main {
  padding-top: var(--header-height);
  min-height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
  background: #f8f8f7;
}
.visualizer-frame-wrap {
  width: 100%;
  height: calc(100vh - var(--header-height));
  min-height: 700px;
  position: relative;
  background: #f0f0ee;
  border-bottom: 1px solid var(--line);
}
.visualizer-frame {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  background: #ffffff;
}

/* ==========================================================================
   ABOUT US PAGE (HERO - STORY - MISSION - FACILITIES - PORTFOLIO)
   ========================================================================== */
.about-page .site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.about-main {
  padding-top: var(--header-height);
  background: var(--white);
  color: var(--black);
}

/* 1. HERO SECTION */
.about-hero {
  padding: 84px clamp(24px, 6vw, 96px) 64px;
  background: linear-gradient(180deg, #f9f9f8 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.about-hero__inner {
  max-width: 860px;
  margin: 0 auto;
}
.about-hero__eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e31b23;
}
.about-hero__title {
  margin: 0 0 20px;
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.about-hero__desc {
  margin: 0 auto;
  max-width: 680px;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.65;
  color: var(--muted);
}

/* SECTION COMMONS */
.about-section {
  padding: 80px clamp(24px, 6vw, 96px);
  border-bottom: 1px solid var(--line);
}
.about-section--soft {
  background: var(--soft);
}
.about-section__inner {
  max-width: 1140px;
  margin: 0 auto;
}
.about-section__header {
  margin-bottom: 48px;
}
.about-section__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888888;
}
.about-section__title {
  margin: 0;
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

/* 2. COMPANY STORY */
.about-story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.about-story__content p {
  margin: 0 0 20px;
  font-size: 15.5px;
  line-height: 1.75;
  color: #444444;
}
.about-story__content p strong {
  color: var(--black);
}
.about-story__milestones {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.about-milestone strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}
.about-milestone span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}
.about-story__media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--line);
  background: #f0f0ee;
}
.about-story__media img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.about-story__badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(17, 17, 17, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 16px 20px;
  border-radius: 8px;
  color: #ffffff;
}
.about-story__badge p {
  margin: 0 0 4px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff5e62;
  font-weight: 700;
}
.about-story__badge span {
  font-size: 13.5px;
  color: #e5e5e5;
  line-height: 1.4;
}

/* 3. MISSION (4 CARDS) */
.about-mission-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.about-mission-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 10px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
  transition: transform 200ms ease, box-shadow 200ms ease;
  display: flex;
  flex-direction: column;
}
.about-mission-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.07);
}
.about-mission-card__num {
  font-size: 13px;
  font-weight: 700;
  color: #e31b23;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.about-mission-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--black);
}
.about-mission-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #555555;
}

/* 4. FACILITIES & TECHNOLOGY */
.about-facilities-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.facility-stat-box {
  background: var(--white);
  padding: 28px 24px;
  border-radius: 10px;
  border: 1px solid var(--line);
  text-align: center;
}
.facility-stat-box strong {
  display: block;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 6px;
}
.facility-stat-box span {
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 500;
}
.about-facilities-details {
  background: var(--white);
  padding: 36px clamp(20px, 4vw, 40px);
  border-radius: 10px;
  border: 1px solid var(--line);
}
.about-facilities-details p {
  margin: 0 0 18px;
  font-size: 15.5px;
  line-height: 1.75;
  color: #444444;
}
.about-facilities-details p:last-child {
  margin-bottom: 0;
}
.facility-brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.facility-brand-tag {
  padding: 6px 14px;
  background: var(--soft);
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 600;
  color: #333333;
}

/* 5. PRODUCT PORTFOLIO & CAPACITY */
.about-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.portfolio-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 36px clamp(24px, 4vw, 40px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}
.portfolio-card__badge {
  display: inline-block;
  padding: 4px 10px;
  background: #f0f0ee;
  border-radius: 4px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 14px;
}
.portfolio-card--white-body .portfolio-card__badge {
  background: #111111;
  color: #ffffff;
}
.portfolio-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
}
.portfolio-card__sub {
  margin: 0 0 24px;
  font-size: 14px;
  color: var(--muted);
}
.portfolio-specs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.portfolio-spec-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
}
.portfolio-spec-row span {
  color: var(--muted);
}
.portfolio-spec-row strong {
  color: var(--black);
  text-align: right;
}

/* RESPONSIVE ABOUT */
@media (max-width: 990px) {
  .about-story-grid {
    grid-template-columns: 1fr;
  }
  .about-mission-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-facilities-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-portfolio-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .about-section {
    padding: 60px 20px;
  }
  .about-mission-grid {
    grid-template-columns: 1fr;
  }
  .about-story__milestones {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-facilities-stats {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   CONTACT US PAGE (PAGE HEADING - 2 COL FORM & INFO - MAPS EMBED)
   ========================================================================== */
.contact-page .site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.contact-main {
  padding-top: var(--header-height);
  background: var(--white);
  color: var(--black);
}

/* 1. PAGE HEADING */
.contact-hero {
  padding: 72px clamp(24px, 6vw, 96px) 56px;
  background: linear-gradient(180deg, #f9f9f8 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.contact-hero__inner {
  max-width: 800px;
  margin: 0 auto;
}
.contact-hero__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e31b23;
}
.contact-hero__title {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.contact-hero__desc {
  margin: 0 auto;
  max-width: 620px;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.65;
  color: var(--muted);
}

/* 2. CONTACT 2-COLUMN SECTION */
.contact-section {
  padding: 72px clamp(24px, 6vw, 96px);
  border-bottom: 1px solid var(--line);
}
.contact-section__inner {
  max-width: 1140px;
  margin: 0 auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}

/* FORM KONTAK */
.contact-form-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: clamp(28px, 4vw, 40px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.03);
}
.contact-card-title {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
}
.contact-card-sub {
  margin: 0 0 28px;
  font-size: 14px;
  color: var(--muted);
}
.contact-form {
  display: grid;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #333333;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #dcdcd8;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--black);
  background: #fafaf8;
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #111111;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}
.form-group textarea {
  min-height: 130px;
  resize: vertical;
}
.contact-submit-btn {
  padding: 15px 32px;
  background: #111111;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 200ms ease, transform 150ms ease;
  justify-self: start;
}
.contact-submit-btn:hover {
  background: #e31b23;
  transform: translateY(-1px);
}
.contact-submit-btn:active {
  transform: translateY(0);
}
.contact-form-feedback {
  margin-top: 14px;
  font-size: 13.5px;
  display: none;
  padding: 12px 16px;
  border-radius: 6px;
  line-height: 1.5;
}
.contact-form-feedback.is-success {
  display: block;
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

/* INFO KONTAK */
.contact-info-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.info-block {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
}
.info-block__tag {
  display: inline-block;
  padding: 3px 8px;
  background: #e9e9e6;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #555555;
  margin-bottom: 12px;
}
.info-block h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
}
.info-block p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.6;
  color: #555555;
}
.info-block-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13.5px;
}
.info-block-links a {
  color: #111111;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 150ms ease;
}
.info-block-links a:hover {
  color: #e31b23;
}

/* 3. GOOGLE MAPS EMBED SECTION */
.contact-map-section {
  padding: 60px clamp(24px, 6vw, 96px) 80px;
  background: #f8f8f7;
}
.contact-map-section__inner {
  max-width: 1140px;
  margin: 0 auto;
}
.map-header {
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}
.map-tabs {
  display: flex;
  gap: 8px;
}
.map-tab-btn {
  padding: 8px 18px;
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #555555;
  cursor: pointer;
  transition: all 150ms ease;
}
.map-tab-btn.is-active {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}
.map-frame-wrapper {
  width: 100%;
  height: 440px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
  background: #e5e3df;
}
.map-frame-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* RESPONSIVE CONTACT */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .map-frame-wrapper {
    height: 360px;
  }
}

/* ==========================================================================
   CAREER PAGE (HERO - WHY JOIN US - JOB LISTINGS WITH FILTERS - MODAL)
   ========================================================================== */
.career-page .site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.career-main {
  padding-top: var(--header-height);
  background: var(--white);
  color: var(--black);
}

/* 1. HERO SECTION */
.career-hero {
  padding: 80px clamp(24px, 6vw, 96px) 60px;
  background: linear-gradient(180deg, #f9f9f8 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.career-hero__inner {
  max-width: 820px;
  margin: 0 auto;
}
.career-hero__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e31b23;
}
.career-hero__title {
  margin: 0 0 16px;
  font-size: clamp(30px, 4.2vw, 50px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.career-hero__desc {
  margin: 0 auto;
  max-width: 640px;
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.65;
  color: var(--muted);
}

/* 2. KENAPA BERKARIR BERSAMA KAMI */
.career-why-section {
  padding: 72px clamp(24px, 6vw, 96px);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}
.career-why__inner {
  max-width: 1140px;
  margin: 0 auto;
}
.career-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.career-why-card {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.career-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  border-color: #d0d0cc;
}
.career-why-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #111111;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.career-why-icon svg {
  width: 26px;
  height: 26px;
}
.career-why-card h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
}
.career-why-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
}

/* 3. LOWONGAN PEKERJAAN */
.career-jobs-section {
  padding: 72px clamp(24px, 6vw, 96px) 100px;
  background: #f8f8f7;
  border-bottom: 1px solid var(--line);
}
.career-jobs__inner {
  max-width: 1140px;
  margin: 0 auto;
}
.career-filter-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0 36px;
  background: #ffffff;
  padding: 16px 20px;
  border-radius: 10px;
  border: 1px solid var(--line);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}
.filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.filter-group label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #777777;
}
.filter-select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #dededc;
  border-radius: 6px;
  background: #fafaf8;
  font-family: inherit;
  font-size: 14px;
  color: var(--black);
  cursor: pointer;
  outline: none;
  transition: border-color 150ms ease;
}
.filter-select:focus {
  border-color: #111111;
}

/* JOB LIST ROWS */
.job-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.job-row-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.job-row-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border-color: #111111;
}
.job-row-card.is-hidden {
  display: none !important;
}
.job-row-info h3 {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
}
.job-row-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  font-size: 13px;
  color: #666666;
}
.job-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.job-tag svg {
  width: 15px;
  height: 15px;
  color: #888888;
}
.job-status-badge {
  display: inline-block;
  padding: 3px 9px;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.job-btn-detail {
  padding: 12px 24px;
  background: #111111;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 150ms ease, transform 150ms ease;
  flex-shrink: 0;
}
.job-btn-detail:hover {
  background: #e31b23;
  transform: translateY(-1px);
}

/* MODAL DETAIL LOKER */
.job-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 250ms ease, visibility 250ms ease;
}
.job-modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}
.job-modal {
  background: #ffffff;
  border-radius: 16px;
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  transform: scale(0.95);
  transition: transform 250ms ease;
}
.job-modal-backdrop.is-open .job-modal {
  transform: scale(1);
}
.job-modal-header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.job-modal-header h2 {
  margin: 4px 0 6px;
  font-size: 22px;
  font-weight: 700;
}
.job-modal-close {
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #777777;
  padding: 4px;
  line-height: 1;
}
.job-modal-close:hover {
  color: #111111;
}
.job-modal-body {
  padding: 28px;
  overflow-y: auto;
  font-size: 14.5px;
  line-height: 1.7;
  color: #444444;
}
.job-modal-body h4 {
  margin: 20px 0 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
}
.job-modal-body h4:first-child {
  margin-top: 0;
}
.job-modal-body ul {
  margin: 0 0 16px;
  padding-left: 20px;
}
.job-modal-body li {
  margin-bottom: 6px;
}
.job-modal-footer {
  padding: 20px 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  background: #fafaf8;
}

/* RESPONSIVE CAREER */
@media (max-width: 990px) {
  .career-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .career-filter-bar {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 680px) {
  .career-why__grid {
    grid-template-columns: 1fr;
  }
  .job-row-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .job-btn-detail {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 860px) {
  :root { --header-height: 78px; }
  .site-header { padding-inline: 20px; }
  .site-header > .header-actions { display: none; }
  .menu-mobile-tools {
    margin-bottom: 26px;
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .menu-mobile-tools .language-switch { gap: 8px; }
  .menu-mobile-tools .language-option { height: 38px; font-size: 13px; }
  .menu-mobile-tools .showroom-link {
    min-height: 38px;
    padding-left: 0;
    gap: 9px;
    border-left: 0;
    font-size: 12px;
  }
  .menu-mobile-tools .showroom-link svg { width: 20px; height: 20px; }
  .menu-mobile-tools .showroom-link__label { display: none; }
  .brand { width: 210px; }
  .header-actions { gap: 12px; }
  .language-switch { gap: 6px; }
  .language-option { font-size: 13px; }
  .language-option + .language-option::before { margin-right: 6px; }
  .showroom-link { padding-left: 12px; }
  .showroom-link__label { display: none; }
  .menu-panel__inner { width: calc(100% - 36px); padding: calc(var(--header-height) + 28px) 0 36px; }
  .menu-list::after { left: 47%; }
  .menu-item { width: 43%; }
  .menu-item summary,
.menu-direct { min-height: 60px; grid-template-columns: 30px 1fr 18px; font-size: clamp(20px, 4vw, 30px); }
  .submenu { left: 52%; width: 46%; }
  .submenu a { font-size: clamp(21px, 4.4vw, 33px); }
  .footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 520px; gap: 40px 32px; }
}

@media (max-width: 560px) {
  .brand-heading { align-items: flex-end; }
  .brand-heading h2 { font-size: clamp(38px, 10vw, 54px); }
  .brand-card { flex-basis: min(78vw, 320px); border-radius: 13px; }
  .brand-card__logo { min-height: 76px; left: 13px; right: 13px; bottom: 13px; }
  .brand-controls { gap: 7px; }
  .brand-control { width: 44px; height: 44px; }
  .certifications { padding: 64px 22px; overflow: hidden; }
  .certifications__heading { display: block; }
  .certifications__heading .eyebrow { margin-bottom: 16px; }
  .certifications__heading h2 { font-size: 40px; }
  .certifications__row {
    display: flex;
    margin-inline: -22px;
    padding-inline: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .certifications__row::-webkit-scrollbar { display: none; }
  .certification-item {
    flex: 0 0 265px;
    min-height: 116px;
    padding: 20px 24px;
    scroll-snap-align: start;
  }
  .menu-trigger { padding: 14px 0; }
  .menu-lines { width: 30px; gap: 8px; }
  .menu-label { display: none; }
  .brand { width: 190px; }
  .header-actions { gap: 10px; }
  .language-option { height: 40px; font-size: 13px; }
  .showroom-link { min-height: 40px; padding-left: 13px; }
  .showroom-link svg { width: 22px; height: 22px; }
  .menu-panel__inner { width: calc(100% - 28px); padding-top: calc(var(--header-height) + 22px); padding-bottom: 38px; }
  .menu-intro { margin-bottom: 17px; }
  .menu-intro span { display: none; }
  .menu-list { min-height: 390px; }
  .menu-list::after { left: 45%; }
  .menu-item { width: 42%; }
  .menu-item summary,
.menu-direct { min-height: 55px; grid-template-columns: 21px 1fr 13px; font-size: clamp(16px, 5vw, 21px); }
  .menu-number { font-size: 13px; }
  .menu-item summary i,
.menu-direct i { font-size: 13px; }
  .submenu { left: 50%; width: 48%; }
  .submenu p { margin-bottom: 15px; padding-bottom: 11px; font-size: 15px; }
  .submenu a { padding: 7px 0; font-size: clamp(18px, 5.5vw, 25px); }
  .hero h1 { font-size: clamp(42px, 12vw, 60px); }
  .certifications {
  padding: clamp(64px, 7vw, 104px) clamp(22px, 6vw, 96px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: var(--header-height);
}
.certifications__heading {
  margin-bottom: clamp(38px, 4vw, 58px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}
.certifications__heading .eyebrow { margin: 0; }
.certifications__heading h2 {
  margin: 0;
  font-family: var(--font-base);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
}
.certifications__row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.certification-item {
  min-width: 0;
  min-height: 128px;
  padding: 24px clamp(18px, 2.2vw, 34px);
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
}
.certification-item + .certification-item { border-left: 1px solid var(--line); }
.certification-item img {
  width: 70px;
  height: 58px;
  object-fit: contain;
}
.certification-item div { display: grid; gap: 7px; }
.certification-item strong {
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: 0.02em;
}
.certification-item span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
  .updates { padding: calc(var(--header-height) + 36px) 22px 44px; }
  .newsletter-section { padding: calc(var(--header-height) + 36px) 22px 44px; }
  .newsletter h2 { font-size: 47px; }
  .newsletter__form { display: grid; }
  .newsletter__form button { padding-left: 0; border-top: 1px solid var(--line); }
  .footer { padding: 48px 20px 24px; }
  .footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 16px; padding-bottom: 32px; }
  .footer__bottom { line-height: 1.6; }
}

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

@media (max-width: 390px) {
  .site-header { padding-inline: 16px; }
  .brand { width: 180px; }
  .header-actions { gap: 9px; }
  .language-switch { gap: 5px; }
  .language-option + .language-option::before { margin-right: 5px; }
  .showroom-link { padding-left: 10px; }
}
