:root {
  --ink: #edf9fa;
  --muted: #9cb3bd;
  --paper: #061a26;
  --panel: #0a2431;
  --panel-2: #0d2d3b;
  --line: rgba(121, 225, 218, 0.18);
  --accent: #25c7b7;
  --accent-strong: #55e1d4;
  --accent-deep: #087c78;
  --max: 1280px;
  --nav: 74px;
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(92, 222, 213, .024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 222, 213, .024) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  line-height: 1.55;
}

html[lang="zh-CN"] body,
html[lang="zh-Hant"] body {
  font-family: SimSun, "Songti SC", serif;
}

html[lang="ja"] body {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
}

html[lang="ko"] body {
  font-family: Batang, "바탕", "AppleMyungjo", serif;
}

html[dir="rtl"] body {
  font-family: Tahoma, Arial, sans-serif;
}

html[dir="rtl"] .hero .eyebrow {
  direction: ltr;
  text-align: right;
}

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

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

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

button,
a,
input,
select,
textarea {
  border-radius: 8px;
}

:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 10px 14px;
  color: #fff;
  background: var(--accent);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav);
  border-bottom: 1px solid var(--line);
  background: rgba(6, 26, 38, 0.92);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: min(calc(100% - 40px), var(--max));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  object-fit: cover;
  border: 1px solid rgba(121, 225, 218, .35);
  border-radius: 10px;
  background: #d8faf7;
  box-shadow: 0 8px 24px rgba(0, 122, 132, .18);
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.1;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  font-size: 15px;
}

.nav-links a {
  color: #d5dde4;
}

.nav-links a:hover {
  color: var(--accent-strong);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-select {
  height: 40px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 0 34px 0 12px;
}

html[dir="rtl"] .lang-select {
  padding: 0 12px 0 34px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: transparent;
}

.btn {
  min-height: 46px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .02em;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

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

.btn-primary {
  color: #04252c;
  border-color: var(--accent);
  background: var(--accent);
}

.btn-primary:hover {
  border-color: var(--accent-strong);
  background: var(--accent-strong);
}

.btn-ghost {
  color: #fff;
  background: rgba(7, 17, 27, .38);
}

.btn-ghost:hover {
  border-color: var(--accent);
}

main {
  overflow: hidden;
}

.hero {
  min-height: 100dvh;
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
}

.hero-media,
.hero-media::after {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  overflow: hidden;
  background: var(--paper);
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .58;
}

.hero-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(6,26,38,.98) 0%, rgba(6,26,38,.78) 43%, rgba(6,26,38,.34) 72%, rgba(6,26,38,.72) 100%),
    linear-gradient(0deg, var(--paper) 0%, transparent 32%);
}

.hero-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: calc(var(--nav) + 72px) 0 76px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(46px, 6.7vw, 92px);
  font-weight: 600;
  line-height: .94;
  letter-spacing: -.045em;
  text-wrap: balance;
}

html[lang="zh-CN"] .hero h1,
html[lang="zh-Hant"] .hero h1 {
  line-height: 1.08;
  letter-spacing: -.04em;
}

html[lang="ja"] .hero h1,
html[lang="ko"] .hero h1 {
  max-width: 980px;
  font-size: clamp(44px, 5.4vw, 78px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.hero-copy {
  max-width: 690px;
  margin: 26px 0 0;
  color: #d2d9e0;
  font-size: clamp(18px, 2vw, 23px);
}

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

.proof-strip {
  border-block: 1px solid var(--line);
  background: rgba(10, 36, 49, .92);
}

.proof-grid {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
}

.proof-item {
  min-height: 118px;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-inline-start: 1px solid var(--line);
}

.proof-item:first-child {
  border-inline-start: 0;
}

.proof-item strong {
  font-size: 19px;
}

.proof-item span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: clamp(68px, 7vw, 104px) 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: var(--nav);
}

.section-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.section-heading {
  max-width: 860px;
  margin-bottom: clamp(34px, 4vw, 52px);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(36px, 4.6vw, 60px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.section-heading p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.product-code {
  display: block;
  margin-bottom: 50px;
  color: var(--accent-strong);
  font-size: 12px;
  letter-spacing: .18em;
}

.catalog-portfolio {
  margin: 0 0 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--panel);
}

.catalog-portfolio img {
  display: block;
  width: 100%;
  height: clamp(220px, 21vw, 290px);
  object-fit: cover;
  object-position: 50% 54%;
}

.catalog-portfolio figcaption {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 20px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.catalog-portfolio figcaption span {
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
}

.product-directory {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-inline: 1px solid var(--line);
}

.product-family {
  min-height: 218px;
  padding: 26px 28px 24px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  grid-template-rows: auto 1fr auto;
  gap: 18px 16px;
  background: var(--panel);
  transition: background .2s ease, transform .2s ease;
}

.product-family:hover {
  background: var(--panel-2);
  transform: translateY(-1px);
}

.family-index {
  grid-row: 1 / 4;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
}

.family-copy h3 {
  margin: 0;
  font-size: clamp(21px, 1.8vw, 27px);
  font-weight: 600;
  line-height: 1.12;
}

.family-copy p {
  max-width: 580px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.family-types {
  grid-column: 2 / 4;
  align-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.family-types li {
  padding: 0 11px;
  color: #b8c6cf;
  border-inline-start: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.4;
}

.family-types li:first-child {
  padding-inline-start: 0;
  border-inline-start: 0;
}

.family-link {
  align-self: start;
  color: var(--accent-strong);
  font-size: 12px;
  white-space: nowrap;
}

.family-link:hover {
  color: #fff;
}

.catalog-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--panel-2);
}

.catalog-action p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.catalog-action .btn {
  flex: 0 0 auto;
}

.process-note {
  margin: 22px 0 0;
  color: #81909b;
  font-size: 13px;
}

.application-list {
  border-top: 1px solid var(--line);
}

.application-row {
  display: grid;
  grid-template-columns: 64px 1fr 1.25fr 36px;
  gap: 20px;
  align-items: center;
  min-height: 98px;
  border-bottom: 1px solid var(--line);
  transition: background .2s ease, padding .2s ease;
}

.application-row:hover {
  padding-inline: 18px;
  background: var(--panel);
}

.application-index,
.application-arrow {
  color: var(--accent-strong);
}

.application-row h3 {
  margin: 0;
  font-size: 26px;
  font-weight: 500;
}

.application-row p {
  margin: 0;
  color: var(--muted);
}

.standard-panel {
  display: grid;
  grid-template-columns: 1fr .92fr;
  min-height: 560px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.standard-copy {
  padding: clamp(38px, 6vw, 78px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.standard-copy h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 500;
  line-height: 1;
}

.standard-copy p {
  max-width: 590px;
  color: var(--muted);
}

.standard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.standard-tags span {
  padding: 9px 13px;
  color: #d8e0e6;
  border: 1px solid var(--line);
  font-size: 13px;
}

.standard-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.standard-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.75);
}

.standard-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-inline-start: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(7,17,27,.5), transparent);
}

.material-evidence {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.material-card {
  background: var(--panel);
}

.material-card-image {
  height: 300px;
  overflow: hidden;
  background: #050c13;
}

.material-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.material-card:hover img {
  transform: scale(1.02);
}

.material-card-copy {
  padding: 30px;
}

.material-card-copy .product-code {
  margin-bottom: 22px;
}

.material-card-copy h3 {
  margin: 0;
  font-size: 27px;
  font-weight: 500;
}

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

.material-footnote {
  margin: 20px 0 0;
  color: #81909b;
  font-size: 13px;
}

.process-gallery {
  display: grid;
  grid-template-columns: 1.08fr .96fr .96fr;
  grid-template-rows: 260px;
  gap: 12px;
  margin-bottom: 30px;
}

.process-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

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

.process-gallery figure:last-child {
  grid-column: auto;
}

.process-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(1.04);
  transition: transform .5s ease;
}

.process-gallery figure:nth-child(1) img {
  object-position: 50% 28%;
}

.process-gallery figure:nth-child(2) img {
  object-position: 50% 36%;
}

.process-gallery figure:nth-child(3) img {
  object-position: 50% 34%;
}

.process-gallery figure:hover img {
  transform: scale(1.025);
}

.process-gallery figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 28px 18px 14px;
  color: #fff;
  background: linear-gradient(transparent, rgba(6,26,38,.92));
  font-size: 13px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.process-step {
  min-height: 224px;
  padding: 26px 24px 30px;
  background: var(--panel);
}

.process-step span {
  color: var(--accent-strong);
  font-size: 12px;
  letter-spacing: .16em;
}

.process-step h3 {
  margin: 24px 0 10px;
  font-size: 21px;
  font-weight: 500;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.quality-wrap {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}

.quality-sticky {
  position: sticky;
  top: calc(var(--nav) + 40px);
}

.quality-sticky h2 {
  margin: 0;
  font-size: clamp(42px, 5.2vw, 72px);
  font-weight: 500;
  line-height: 1;
}

.quality-sticky p {
  max-width: 520px;
  color: var(--muted);
}

.quality-list {
  border-top: 1px solid var(--line);
}

.quality-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.quality-item span {
  color: var(--accent-strong);
}

.quality-item h3 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 500;
}

.quality-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  grid-template-rows: 280px 280px;
  gap: 12px;
}

.gallery figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
}

.gallery figure:first-child {
  grid-row: 1 / 3;
}

.gallery figure:last-child {
  grid-column: 2 / 4;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery figure:hover img {
  transform: scale(1.025);
}

.gallery figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 14px 16px;
  color: #fff;
  background: linear-gradient(transparent, rgba(7,17,27,.88));
  font-size: 13px;
}

.rfq {
  background: var(--panel);
}

.rfq-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(48px, 8vw, 110px);
}

.rfq-copy h2 {
  margin: 0;
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 500;
  line-height: 1;
}

.rfq-copy p {
  color: var(--muted);
}

.response-note {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #ccd5dc;
  font-size: 15px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: #cdd6dc;
  font-size: 13px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: #081521;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #6f7c88;
}

.form-footer {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.form-status {
  min-height: 24px;
  color: var(--accent-strong);
  font-size: 14px;
}

.location {
  padding: 0;
  scroll-margin-top: var(--nav);
}

.map-header {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 70px 0 34px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
}

.map-header h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 500;
}

.map-header p {
  max-width: 510px;
  margin: 0;
  color: var(--muted);
}

.map-frame {
  width: 100%;
  height: 520px;
  display: block;
  border: 0;
  filter: grayscale(.72) contrast(1.06) brightness(.78);
}

.site-footer {
  padding: 58px 0 30px;
  background: #050c13;
}

.mobile-rfq {
  display: none;
}

.footer-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.footer-top h3 {
  margin: 0 0 16px;
  font-size: 17px;
}

.footer-top p,
.footer-top a {
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
  color: #768490;
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .nav-links {
    gap: 18px;
  }

  .nav-links a:nth-child(3),
  .nav-links a:nth-child(4) {
    display: none;
  }

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

  .proof-item:nth-child(3) {
    border-inline-start: 0;
    border-top: 1px solid var(--line);
  }

  .proof-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .standard-panel,
  .material-evidence,
  .quality-wrap,
  .rfq-layout {
    grid-template-columns: 1fr;
  }

  .standard-media {
    order: -1;
  }

  .quality-sticky {
    position: static;
  }

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

  .process-gallery {
    grid-template-columns: 1.08fr .96fr .96fr;
    grid-template-rows: 230px;
  }

  .process-gallery figure:first-child {
    grid-column: auto;
    grid-row: auto;
  }

  .process-gallery figure:last-child {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  :root {
    --nav: 64px;
  }

  body {
    font-size: 16px;
  }

  .nav-wrap {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand-text {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: fixed;
    inset: var(--nav) 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

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

  .nav-links a,
  .nav-links a:nth-child(3),
  .nav-links a:nth-child(4) {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-quote {
    display: none;
  }

  .lang-select {
    width: 104px;
  }

  .hero-inner,
  .section-inner,
  .map-header,
  .footer-inner {
    width: min(calc(100% - 28px), var(--max));
  }

  .hero-inner {
    padding-bottom: 48px;
  }

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

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

  .hero-actions {
    margin-bottom: 36px;
  }

  .proof-grid,
  .product-directory,
  .process-grid,
  .form-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .proof-item:nth-child(2),
  .proof-item:nth-child(4) {
    border-inline-start: 0;
    border-top: 1px solid var(--line);
  }

  .proof-item:first-child {
    border-top: 0;
  }

  .catalog-portfolio img {
    height: 176px;
    object-position: 50% 52%;
  }

  .catalog-portfolio figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding: 12px 14px;
  }

  .product-family {
    min-height: 0;
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 22px 18px;
  }

  .family-index {
    grid-row: 1 / 4;
  }

  .family-link {
    grid-column: 2;
    grid-row: 3;
    justify-self: start;
  }

  .family-types {
    grid-column: 2;
  }

  .catalog-action {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px 18px;
  }

  .process-gallery {
    grid-template-columns: none;
    grid-template-rows: 220px;
    grid-auto-flow: column;
    grid-auto-columns: 82vw;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .process-gallery figure:first-child,
  .process-gallery figure:last-child {
    grid-column: auto;
    grid-row: auto;
  }

  .process-gallery figure {
    scroll-snap-align: start;
  }

  .process-gallery::-webkit-scrollbar {
    display: none;
  }

  .application-row {
    grid-template-columns: 42px 1fr 30px;
    gap: 12px;
    min-height: 100px;
  }

  .application-row p {
    display: none;
  }

  .application-row h3 {
    font-size: 20px;
  }

  .process-step {
    min-height: auto;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 330px 220px 220px;
  }

  .gallery figure:first-child {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .gallery figure:last-child {
    grid-column: 1 / 3;
  }

  .field-full {
    grid-column: auto;
  }

  .map-header {
    align-items: start;
    flex-direction: column;
  }

  .map-frame {
    height: 420px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .mobile-rfq {
    display: none;
  }

  .site-footer {
    padding-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
