:root {
  --ink: #3a3a3a;
  --soft-ink: #585858;
  --muted: #767676;
  --paper: #ffffff;
  --panel: #ffffff;
  --line: #dedede;
  --deep: #3a3a3a;
  --green: #f65c00;
  --leaf: #417682;
  --ochre: #f65c00;
  --mist: #f6f6f4;
  --shadow: 0 22px 70px rgba(88, 88, 88, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
}

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

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: stretch;
  min-height: 78px;
  padding: 0 6vw;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: 166px;
  height: auto;
  display: block;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 4px;
}

.nav-item {
  position: relative;
  display: flex;
}

.nav-link {
  display: flex;
  align-items: center;
  min-height: 78px;
  padding: 0 14px;
  color: var(--soft-ink);
  font-size: 15px;
  font-weight: 800;
}

.nav-link.is-active,
.nav-link:hover {
  color: var(--green);
}

.mega-panel {
  position: absolute;
  left: 50%;
  top: 78px;
  width: min(760px, 82vw);
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 18px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 2px 0 12px 0 rgba(88, 88, 88, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-item:hover .mega-panel,
.nav-item:focus-within .mega-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mega-intro {
  min-height: 210px;
  padding: 22px;
  color: #fff;
  background: var(--deep);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.mega-intro span,
.eyebrow,
.entry-card span,
.product-line span,
.article-card span,
.location-card span {
  color: var(--ochre);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mega-intro strong {
  display: block;
  margin-top: 10px;
  font-size: 22px;
  line-height: 1.2;
}

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

.mega-links a {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid transparent;
}

.mega-links a:hover {
  border-color: var(--line);
  background: var(--mist);
}

.mega-links strong {
  font-size: 16px;
}

.mega-links small {
  color: var(--muted);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.icon-button,
.lang-switch,
.header-cta,
.primary-button,
.ghost-button,
.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.icon-button:hover,
.lang-switch:hover,
.header-cta:hover,
.primary-button:hover,
.ghost-button:hover,
.footer-cta:hover,
.search-close:hover,
.related-band a:hover {
  transform: translateY(-1px);
}

.lang-switch {
  background: rgba(255, 255, 255, 0.78);
}

.header-cta,
.primary-button {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 10px 26px rgba(246, 92, 0, 0.18);
}

.header-cta:hover,
.primary-button:hover {
  background: #e35300;
  border-color: #e35300;
}

.ghost-button {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

.ghost-button:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.nav-toggle {
  display: none;
  justify-self: end;
  align-self: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.home-hero {
  position: relative;
  min-height: calc(100vh - 78px);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 12vh 6vw;
  color: #fff;
}

.hero-video,
.home-hero > video,
.home-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.26) 54%, rgba(0, 0, 0, 0.08));
}

.hero-copy-block {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.home-hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(46px, 7.2vw, 106px);
  line-height: 1.02;
  letter-spacing: 0;
}

.home-hero h1 {
  white-space: pre-line;
}

.home-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 26px 0 34px;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 650;
}

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

.hero-story-tabs {
  position: absolute;
  right: 6vw;
  bottom: 42px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 10px;
}

.story-tab {
  min-height: 42px;
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.story-tab:hover {
  border-color: rgba(255, 255, 255, 0.72);
  transform: translateY(-1px);
}

.story-tab.is-active {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

section:not(.home-hero) {
  padding: 96px 6vw;
}

.statement-band {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 50px;
  background: var(--panel);
}

.statement-band span {
  color: var(--ochre);
  font-weight: 900;
  text-transform: uppercase;
}

.statement-band h2,
.section-copy h2,
.band-head h2,
.spotlight-card h2,
.feature-row h2,
.copy-section h2,
.cta-band h2,
.timeline-section h2,
.contact-card h2,
.detail-layout h2 {
  margin: 0;
  font-size: clamp(32px, 4.8vw, 64px);
  line-height: 1.08;
  letter-spacing: 0;
}

.statement-band p {
  grid-column: 2;
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 72px;
  align-items: start;
  background: var(--panel);
}

.section-copy p:not(.eyebrow),
.band-head p,
.spotlight-card p,
.copy-section p,
.detail-layout p,
.page-hero p,
.product-line p,
.article-card p,
.coop-card p,
.insight-card p,
.location-card p {
  color: var(--muted);
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

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

.metric-grid article,
.entry-card,
.spotlight-card,
.video-card,
.product-line,
.article-card,
.coop-card,
.insight-card,
.location-card,
.contact-card,
.contact-form,
.copy-section,
.feature-row {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.metric-grid article {
  min-height: 150px;
  padding: 28px 0 26px;
  border-top: 1px solid var(--line);
}

.metric-grid strong {
  display: block;
  color: var(--green);
  font-size: 42px;
  line-height: 1;
}

.metric-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
}

.media-band {
  padding-left: 0;
  padding-right: 0;
  color: #fff;
  background: #0a0a0a;
}

.band-head,
.visual-head {
  max-width: 980px;
  margin-bottom: 36px;
}

.visual-head {
  max-width: 1280px;
  margin: 0 auto 28px;
  padding: 0 6vw;
  text-align: center;
}

.visual-head h2 {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(28px, 3.4vw, 50px);
  text-transform: uppercase;
}

.media-band .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.video-panels {
  display: flex;
  gap: 8px;
  width: 100%;
  min-height: min(72vh, 680px);
  padding: 0 8px;
  overflow: hidden;
}

.video-panel {
  position: relative;
  flex: 0.78;
  min-width: 0;
  overflow: hidden;
  color: #fff;
  background: #111;
  cursor: pointer;
  transition: flex 620ms cubic-bezier(0.22, 1, 0.36, 1), filter 620ms ease;
}

.video-panel.is-active,
.video-panel:hover {
  flex: 3.15;
}

.video-panel video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.08) brightness(0.72);
  transform: scale(1.03);
  transition: transform 700ms ease, filter 700ms ease;
}

.video-panel.is-active video,
.video-panel:hover video {
  filter: saturate(1.05) contrast(1.08) brightness(0.66);
  transform: scale(1);
}

.video-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.52)), rgba(0, 0, 0, 0.18);
}

.video-panel-copy {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: min(340px, 82%);
  text-align: center;
  transform: translate(-50%, -50%);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.38);
}

.video-panel-copy span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 26px;
  padding: 0 12px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.video-panel-copy h3,
.entry-card h3 {
  margin: 22px 0 8px;
  font-size: 26px;
  line-height: 1.16;
}

.video-panel-copy h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(20px, 2vw, 30px);
  text-transform: uppercase;
}

.video-panel-copy p {
  max-width: 420px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.video-panel.is-active .video-panel-copy p,
.video-panel:hover .video-panel-copy p,
.video-panel:focus-visible .video-panel-copy p {
  opacity: 1;
  transform: translateY(0);
}

.entry-band {
  color: #fff;
  background: #3a3a3a;
}

.entry-band .band-head {
  max-width: 1180px;
}

.entry-grid,
.spotlight-row,
.insight-grid,
.location-grid,
.coop-paths,
.card-grid.three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.entry-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 26px 4px 0;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  transition: border-color 180ms ease, transform 180ms ease;
}

.entry-card h3 {
  margin-left: 0;
  margin-right: 0;
}

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

.solution-card {
  min-height: 330px;
  justify-content: flex-start;
  padding-top: 34px;
}

.solution-card h3 {
  margin-top: 68px;
}

.solution-card p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.62;
}

.entry-card:hover {
  border-color: #fff;
  transform: translateY(-4px);
}

.spotlight-row {
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1fr);
  gap: 64px;
  align-items: stretch;
  background: var(--mist);
}

.spotlight-image {
  margin: 0;
  min-height: 520px;
  overflow: hidden;
}

.spotlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.spotlight-list {
  display: grid;
  align-content: center;
}

.spotlight-card {
  padding: 38px 0;
  border-top: 1px solid rgba(21, 23, 22, 0.18);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.68fr);
  gap: 54px;
  align-items: center;
  min-height: 540px;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(42px, 6vw, 76px);
}

.page-hero figure {
  margin: 0;
  height: 430px;
  overflow: hidden;
}

.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 46px;
}

.side-nav {
  position: sticky;
  top: 104px;
  display: grid;
  align-content: start;
  gap: 0;
  border-top: 1px solid var(--line);
}

.side-nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-weight: 850;
}

.article-body {
  display: grid;
  gap: 20px;
}

.copy-section {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.two-column-panel,
.decision-panel,
.detail-layout,
.contact-layout,
.timeline-section,
.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: start;
}

.two-column-panel article,
.spec-list article,
.timeline article {
  padding: 26px;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
}

.two-column-panel span {
  color: var(--ochre);
  font-weight: 900;
}

.two-column-panel h3 {
  font-size: 25px;
  line-height: 1.18;
}

.feature-stack {
  display: grid;
  gap: 0;
  background: var(--panel);
}

.feature-row {
  display: grid;
  grid-template-columns: 90px minmax(260px, 0.9fr) 1fr;
  gap: 24px;
  align-items: start;
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.feature-row span {
  color: var(--ochre);
  font-size: 24px;
  font-weight: 900;
}

.feature-row h2 {
  font-size: clamp(28px, 4vw, 48px);
}

.feature-row p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

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

.insight-card,
.location-card {
  min-height: 260px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.insight-card h2,
.location-card h2,
.product-line h2,
.article-card h2,
.coop-card h2 {
  margin: 12px 0 10px;
  font-size: 30px;
  line-height: 1.15;
}

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

.location-card strong {
  display: block;
  margin-top: 28px;
  color: var(--deep);
}

.product-index {
  display: grid;
  gap: 0;
  background: var(--panel);
}

.product-line {
  display: grid;
  grid-template-columns: 190px minmax(240px, 0.7fr) 1fr;
  gap: 24px;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  transition: color 180ms ease, transform 180ms ease;
}

.product-line:hover {
  color: var(--green);
  transform: translateX(8px);
}

.product-line p {
  margin: 0;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion details {
  padding: 20px 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
}

.accordion summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
}

.tab-section {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 54px;
  background: var(--panel);
}

.tab-list {
  display: grid;
  align-content: start;
  gap: 0;
  border-top: 1px solid var(--line);
}

.tab-button {
  min-height: 48px;
  padding: 16px 0;
  color: var(--deep);
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  font-weight: 900;
  transition: color 180ms ease, padding 180ms ease;
}

.tab-button:hover {
  color: var(--green);
  padding-left: 8px;
}

.tab-button.is-active {
  color: var(--green);
  background: transparent;
  border-color: var(--line);
}

.tab-panel {
  display: none;
  min-height: 360px;
  padding: 0;
  background: transparent;
  border: 0;
}

.tab-panel.is-active {
  display: block;
}

.tab-panel h2 {
  margin: 0 0 14px;
  font-size: 46px;
  line-height: 1.1;
}

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

.timeline-section {
  color: #fff;
  background: var(--deep);
}

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

.timeline article {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.timeline span {
  color: var(--ochre);
  font-weight: 900;
}

.timeline strong {
  display: block;
  margin: 12px 0 8px;
  font-size: 23px;
}

.timeline p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.detail-layout {
  background: var(--panel);
}

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

.spec-list article {
  min-height: 110px;
  display: flex;
  align-items: flex-end;
}

.spec-list span {
  width: 10px;
  height: 10px;
  margin-right: 12px;
  background: var(--ochre);
}

.related-band {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  background: var(--mist);
}

.related-band a {
  padding: 12px 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.related-band a:hover {
  color: var(--green);
  border-color: rgba(246, 92, 0, 0.32);
  background: #fff;
}

.card-grid.three,
.coop-paths {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-card,
.coop-card {
  min-height: 270px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.coop-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.coop-card a {
  margin-top: 22px;
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.cta-band {
  align-items: center;
  color: #fff;
  background: var(--deep);
}

.cta-band .primary-button {
  justify-self: start;
  color: var(--ink);
  background: #fff;
  border-color: #fff;
  box-shadow: none;
}

.cta-band .primary-button:hover {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 30px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--deep);
  font-weight: 900;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.contact-form textarea {
  min-height: 122px;
  resize: vertical;
}

.form-status {
  margin: 0;
  color: var(--green);
  font-weight: 900;
}

.contact-card {
  padding: 32px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.contact-card hr {
  margin: 24px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.site-footer {
  padding: 54px 6vw 28px;
  color: #fff;
  background: #3a3a3a;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-logo {
  width: 190px;
  height: auto;
}

.footer-top p,
.footer-bottom,
.footer-map a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-cta {
  align-self: start;
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.footer-cta:hover {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.footer-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  padding: 42px 0;
}

.footer-map h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 15px;
}

.footer-map a {
  display: block;
  margin: 8px 0;
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 13px;
}

.search-layer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 10vh 8vw;
  background: rgba(246, 246, 244, 0.98);
}

.search-layer[hidden] {
  display: none;
}

.search-close {
  justify-self: end;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease;
}

.search-close:hover {
  color: var(--green);
  border-color: rgba(246, 92, 0, 0.32);
}

.search-layer label {
  font-size: clamp(40px, 6vw, 82px);
  font-weight: 900;
  line-height: 1;
}

.search-layer input {
  width: min(860px, 100%);
  min-height: 66px;
  padding: 0 18px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 22px;
}

.search-results {
  display: grid;
  gap: 10px;
  width: min(860px, 100%);
}

.search-results a {
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.search-results small {
  display: block;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 190px 1fr auto;
    padding: 0 24px;
  }

  .nav-link {
    padding: 0 9px;
    font-size: 14px;
  }

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

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 70px;
  }

  .brand img {
    width: 150px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .site-header.nav-open .site-nav,
  .site-header.nav-open .header-actions {
    grid-column: 1 / -1;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding-bottom: 18px;
  }

  .nav-item,
  .nav-link {
    display: block;
  }

  .nav-link {
    min-height: auto;
    padding: 14px 0;
  }

  .mega-panel {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
    padding: 0 0 10px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: transparent;
  }

  .mega-intro {
    display: none;
  }

  .mega-links {
    grid-template-columns: 1fr;
  }

  .mega-links a {
    background: rgba(255, 255, 255, 0.62);
  }

  .home-hero {
    min-height: 760px;
    padding: 120px 24px 150px;
  }

  .hero-story-tabs {
    left: 24px;
    right: 24px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  section:not(.home-hero) {
    padding: 64px 24px;
  }

  .statement-band,
  .section-grid,
  .page-hero,
  .article-layout,
  .two-column-panel,
  .decision-panel,
  .detail-layout,
  .contact-layout,
  .timeline-section,
  .cta-band,
  .tab-section,
  .feature-row,
  .product-line {
    grid-template-columns: 1fr;
  }

  .statement-band p {
    grid-column: 1;
  }

  .side-nav {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .entry-grid,
  .solution-grid,
  .insight-grid,
  .location-grid,
  .coop-paths,
  .card-grid.three {
    grid-template-columns: 1fr 1fr;
  }

  .spotlight-row {
    grid-template-columns: 1fr;
  }

  .video-panels {
    min-height: 860px;
    flex-direction: column;
  }

  .video-panel,
  .video-panel.is-active {
    flex: 1;
  }

  .video-panel.is-active {
    flex: 1.65;
  }
}

@media (max-width: 620px) {
  .home-hero {
    min-height: 700px;
    padding-bottom: 190px;
  }

  .hero-story-tabs,
  .metric-grid,
  .entry-grid,
  .solution-grid,
  .insight-grid,
  .location-grid,
  .coop-paths,
  .card-grid.three,
  .spec-list,
  .timeline,
  .footer-map {
    grid-template-columns: 1fr;
  }

  .hero-story-tabs {
    bottom: 24px;
  }

  .page-hero figure {
    height: 240px;
  }

  .side-nav {
    grid-template-columns: 1fr;
  }

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

  .visual-head {
    text-align: left;
  }

  .video-panels {
    min-height: 780px;
    padding: 0;
  }

  .video-panel-copy {
    width: 86%;
  }

}
