:root {
  --blue: #006ab3;
  --blue-dark: #006ab3;
  --blue-medium: #8ab2df;
  --blue-soft: #cfe0f5;
  --ink: black;
  --muted: rgba(0, 0, 0, .62);
  --line: rgba(0, 106, 179, .2);
  --surface: rgba(207, 224, 245, .34);
  --white: #fff;
  --card-radius: 1rem;
  --max-width: 1380px;
  --page-gutter: clamp(20px, 4.2vw, 72px);
  --header-height: 82px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --shadow: 0 24px 70px rgba(0, 106, 179, .12);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

button, select, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { 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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue);
  border-radius: 4px;
  transform: translateY(-150%);
}

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

:focus-visible {
  outline: 3px solid rgba(0, 106, 179, .34);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid transparent;
  backdrop-filter: saturate(180%) blur(18px);
  transition: border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  border-color: rgba(0, 106, 179, .12);
  box-shadow: 0 6px 28px rgba(0, 106, 179, .06);
}

.header-inner {
  width: min(100%, calc(var(--max-width) + var(--page-gutter) * 2));
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--page-gutter);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand { width: 160px; display: inline-flex; }
.brand-logo { width: 160px; height: auto; }

.header-tools { display: flex; align-items: center; gap: 12px; }
.site-search { position: static; }
.search-trigger,
.search-close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
}
.search-trigger svg { width: 22px; height: 22px; }
.search-trigger:hover,
.search-trigger[aria-expanded="true"] { color: var(--blue); }
.search-panel {
  position: absolute;
  z-index: 110;
  top: 100%;
  right: 0;
  left: 0;
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
  background: rgba(255, 255, 255, .98);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 22px 48px rgba(0, 106, 179, .12);
  backdrop-filter: saturate(180%) blur(18px);
}
.search-inner,
.search-results {
  width: min(100%, calc(var(--max-width) + var(--page-gutter) * 2));
  margin: 0 auto;
  padding-right: var(--page-gutter);
  padding-left: var(--page-gutter);
}
.search-inner {
  min-height: 94px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}
.search-inner > svg { width: 26px; height: 26px; color: var(--blue); }
.search-inner input {
  width: 100%;
  min-width: 0;
  padding: 18px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: -.025em;
}
.search-inner input::placeholder { color: var(--muted); opacity: .72; }
.search-inner input::-webkit-search-cancel-button { display: none; }
.search-close svg { width: 21px; height: 21px; }
.search-results { padding-bottom: 20px; }
.search-results[hidden] { display: none; }
.search-result {
  padding: 17px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--line);
  text-decoration: none;
}
.search-result strong { display: block; font-size: clamp(18px, 1.8vw, 24px); font-weight: 560; letter-spacing: -.02em; }
.search-result small { display: block; margin-top: 2px; color: var(--muted); font-size: 13px; }
.search-result > svg { width: 20px; height: 20px; color: var(--blue); transition: transform .35s var(--ease-out); }
.search-result:hover > svg { transform: translate(3px, -3px); }
.search-empty { margin: 0; padding: 20px 0 24px; color: var(--muted); border-top: 1px solid var(--line); }
.language-switcher { position: relative; }

.language-trigger {
  min-height: 42px;
  padding: 8px 4px 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 14px;
}

.language-trigger svg { width: 18px; height: 18px; transition: transform .2s ease; }
.language-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }

.language-menu {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  width: 176px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
}

.language-menu button {
  width: 100%;
  padding: 10px 12px;
  color: var(--ink);
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
}

.language-menu button:hover,
.language-menu button[aria-selected="true"] { color: var(--blue); background: rgba(207, 224, 245, .55); }

.language-flag,
.language-menu button span:first-child { font-size: 19px; line-height: 1; }

.loading-view {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
}

.loading-view[hidden] { display: none; }
.loading-mark { width: 36px; height: 36px; border: 2px solid var(--line); border-top-color: var(--blue); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

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

.overview-hero {
  padding: clamp(76px, 11vw, 166px) var(--page-gutter) clamp(70px, 9vw, 130px);
  overflow: hidden;
}

.hero-copy {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.overview-hero h1 {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(52px, 8.2vw, 126px);
  font-weight: 620;
  letter-spacing: -.065em;
  line-height: .94;
}

.hero-intro {
  max-width: 680px;
  margin: clamp(30px, 4.5vw, 58px) 0 0;
  color: var(--muted);
  font-size: clamp(20px, 2.1vw, 30px);
  letter-spacing: -.025em;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  display: block;
  width: min(calc(100% - var(--page-gutter) * 2), var(--max-width));
  height: min(62vw, 720px);
  min-height: 390px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--blue-soft);
  border-radius: var(--card-radius);
  color: inherit;
  text-decoration: none;
}

.hero-visual::after {
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  background: linear-gradient(transparent, rgba(0, 106, 179, .6));
  content: "";
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: calc(100% + 60px);
  object-fit: cover;
  transform: translateY(var(--hero-shift, -30px)) scale(1.015);
  will-change: transform;
}

.hero-caption {
  position: absolute;
  z-index: 1;
  right: clamp(24px, 4vw, 58px);
  bottom: clamp(22px, 4vw, 50px);
  left: clamp(24px, 4vw, 58px);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
}

.hero-caption strong { font-size: clamp(22px, 2.4vw, 34px); font-weight: 560; }
.hero-caption span { font-size: 14px; opacity: .86; }

.references-section {
  margin-top: clamp(80px, 10vw, 150px);
  padding: 0 var(--page-gutter) clamp(100px, 12vw, 180px);
}

.references-inner { width: min(100%, var(--max-width)); margin: 0 auto; }

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 500px);
  align-items: end;
  gap: 50px;
  margin-bottom: 50px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 570;
  letter-spacing: -.045em;
  line-height: 1;
}

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

.filter-panel {
  position: sticky;
  z-index: 20;
  top: calc(var(--header-height) + 14px);
  margin-bottom: 38px;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 10px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  box-shadow: 0 14px 36px rgba(0, 106, 179, .08);
  backdrop-filter: saturate(180%) blur(18px);
}

.select-field { position: relative; }
.select-field label { position: absolute; z-index: 1; top: 8px; left: 16px; color: var(--muted); font-size: 11px; font-weight: 660; letter-spacing: .04em; text-transform: uppercase; pointer-events: none; }
.select-field select {
  width: 100%;
  height: 62px;
  padding: 24px 44px 6px 16px;
  color: var(--ink);
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 20 20'%3E%3Cpath d='m6 8 4 4 4-4' fill='none' stroke='%23006ab3' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 16px center;
  border: 1px solid var(--line);
  border-radius: 8px;
  appearance: none;
  cursor: pointer;
}

.reset-button {
  min-width: 126px;
  height: 62px;
  padding: 0 18px;
  align-self: end;
  color: var(--blue);
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 650;
}

.reset-button:hover { background: var(--blue-soft); }

.results-meta { min-height: 28px; margin-bottom: 24px; display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 14px; }

.reference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 3vw, 44px) clamp(18px, 2vw, 30px);
}

.reference-card { min-width: 0; }
.reference-card.is-featured { grid-column: span 2; }

.reference-card a { display: block; text-decoration: none; }
.card-image { position: relative; width: 100%; aspect-ratio: 430 / 310; margin-bottom: 20px; overflow: hidden; background: var(--surface); border-radius: var(--card-radius); transition: transform .55s var(--ease-out), box-shadow .55s var(--ease-out); }
.reference-card.is-featured .card-image { aspect-ratio: 12 / 5; }
.card-image picture { width: 100%; height: 100%; display: block; }
.card-image::after { position: absolute; inset: 0; background: linear-gradient(110deg, transparent 55%, rgba(255,255,255,.13)); content: ""; opacity: 0; transition: opacity .45s ease; }
.card-image img { width: 100%; height: 100%; object-fit: cover; }
.reference-card a:hover .card-image { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(0, 106, 179, .12); }
.reference-card a:hover .card-image::after { opacity: 1; }
.card-image.is-low-resolution {
  padding: clamp(16px, 2vw, 28px);
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--line);
}
.card-image.is-low-resolution img { width: auto; height: auto; max-width: 100%; max-height: 100%; object-fit: contain; transform: none; }
.reference-card a:hover .card-image.is-low-resolution img { transform: none; }
.card-image.is-low-resolution::after { display: none; }

.card-meta { margin-bottom: 8px; display: flex; flex-wrap: wrap; align-items: center; gap: 6px 12px; color: var(--blue); font-size: 12px; font-weight: 660; letter-spacing: .035em; text-transform: uppercase; }
.card-meta span + span::before { margin-right: 12px; color: var(--blue-medium); content: "·"; }
.card-title-row { display: flex; align-items: start; justify-content: space-between; gap: 18px; }
.card-title { margin: 0; font-size: clamp(22px, 2vw, 30px); font-weight: 550; letter-spacing: -.03em; line-height: 1.15; }
.card-location { margin: 7px 0 0; color: var(--muted); }
.card-arrow, .circle-arrow {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  transition: transform .4s var(--ease-out), background .2s ease;
}
.card-arrow svg, .circle-arrow svg { width: 17px; height: 17px; }
.reference-card a:hover .card-arrow { transform: translate(3px, -3px); background: var(--blue-dark); }

.empty-state { grid-column: 1 / -1; padding: 80px 20px; color: var(--muted); background: var(--surface); border-radius: var(--card-radius); text-align: center; }

.load-more-wrap { padding-top: 60px; display: flex; justify-content: center; }
.primary-button, .outline-button {
  min-height: 52px;
  padding: 13px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 650;
  text-decoration: none;
  transition: transform .25s var(--ease-out), background .2s ease, color .2s ease;
}
.primary-button { color: var(--white); background: var(--blue); border: 1px solid var(--blue); }
.primary-button:hover { background: var(--blue-dark); transform: translateY(-2px); }
.outline-button { color: var(--blue); background: transparent; border: 1px solid var(--blue); }
.outline-button:hover { color: var(--white); background: var(--blue); transform: translateY(-2px); }

.detail-page { overflow: hidden; }
.detail-intro { padding: clamp(64px, 8vw, 118px) var(--page-gutter) clamp(48px, 6vw, 86px); }
.detail-intro-inner { width: min(100%, var(--max-width)); margin: 0 auto; }
.detail-title-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(250px, 380px); align-items: end; gap: 60px; }
.detail-title-layout h1 { max-width: 980px; margin: 0; font-size: clamp(52px, 7.8vw, 116px); font-weight: 620; letter-spacing: -.062em; line-height: .94; }
.detail-meta-list { margin: 0; display: grid; gap: 15px; }
.detail-meta-list div { padding-bottom: 15px; display: grid; grid-template-columns: 100px 1fr; gap: 14px; border-bottom: 1px solid var(--line); }
.detail-meta-list dt { color: var(--muted); font-size: 12px; font-weight: 660; letter-spacing: .06em; text-transform: uppercase; }
.detail-meta-list dd { margin: 0; font-weight: 580; }

.detail-hero { width: min(calc(100% - var(--page-gutter) * 2), var(--max-width)); height: min(59vw, 800px); min-height: 420px; margin: 0 auto; overflow: hidden; background: var(--surface); border-radius: var(--card-radius); }
.detail-hero img { width: 100%; height: calc(100% + 70px); object-fit: cover; transform: translateY(var(--hero-shift, -35px)) scale(1.01); will-change: transform; }
.detail-hero.is-low-resolution {
  height: clamp(360px, 38vw, 520px);
  min-height: 360px;
  padding: clamp(24px, 4vw, 58px);
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--line);
}
.detail-hero.is-low-resolution img { width: auto; height: auto; max-width: 100%; max-height: 100%; object-fit: contain; transform: none; will-change: auto; }

.story-section { padding: clamp(100px, 13vw, 190px) var(--page-gutter); }
.story-inner { width: min(100%, 1120px); margin: 0 auto; display: grid; grid-template-columns: 280px 1fr; gap: clamp(50px, 8vw, 120px); }
.story-aside { color: var(--muted); font-size: 14px; }
.story-aside .eyebrow { margin-bottom: 14px; }
.story-copy { font-size: clamp(22px, 2.2vw, 31px); letter-spacing: -.025em; line-height: 1.52; }
.story-copy p { margin: 0 0 1.1em; }
.translation-note { margin: 28px 0 0; padding: 14px 16px; color: var(--muted); background: var(--surface); border-left: 3px solid var(--blue); font-size: 14px; }

.product-section { padding: clamp(86px, 10vw, 150px) var(--page-gutter); background: var(--surface); }
.product-inner { width: min(100%, var(--max-width)); margin: 0 auto; }
.product-heading { margin-bottom: clamp(60px, 8vw, 110px); display: grid; grid-template-columns: 1fr 1fr; align-items: start; gap: 60px; }
.product-heading h2 { margin: 0; color: var(--blue); font-size: clamp(50px, 7vw, 100px); font-weight: 610; letter-spacing: -.06em; line-height: .95; }
.product-type { margin: 0 0 10px; color: var(--muted); font-size: 14px; font-weight: 660; letter-spacing: .08em; text-transform: uppercase; }
.product-description { font-size: clamp(18px, 1.8vw, 24px); line-height: 1.55; }
.product-description p { margin: 0 0 1em; }

.feature-list { display: grid; gap: clamp(80px, 10vw, 150px); }
.feature { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: clamp(40px, 7vw, 110px); }
.feature:nth-child(even) { grid-template-columns: .85fr 1.15fr; }
.feature:nth-child(even) .feature-media { order: 2; }
.feature-media {
  min-height: 360px;
  aspect-ratio: 16 / 10;
  padding: clamp(18px, 2.5vw, 38px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--card-radius);
}
.feature-media img { width: 100%; height: 100%; min-height: 0; object-fit: contain; }
.feature-media.is-small-source img { width: auto; height: auto; max-width: 100%; max-height: 100%; }
.feature-copy h3 { margin: 0 0 24px; font-size: clamp(30px, 3.7vw, 54px); font-weight: 560; letter-spacing: -.045em; line-height: 1.06; }
.feature-copy { color: var(--muted); font-size: 18px; }
.feature-copy p { margin: 0 0 1em; }

.media-section { padding: clamp(90px, 11vw, 160px) var(--page-gutter); }
.media-inner { width: min(100%, var(--max-width)); margin: 0 auto; }
.media-title { margin: 0 0 42px; font-size: clamp(38px, 5vw, 70px); font-weight: 570; letter-spacing: -.045em; }
.video-frame { position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; background: black; border-radius: var(--card-radius); }
.video-frame iframe { width: 100%; height: 100%; border: 0; }

.download-section { padding: clamp(80px, 10vw, 140px) var(--page-gutter); color: var(--white); background: var(--blue); }
.download-inner { width: min(100%, var(--max-width)); margin: 0 auto; display: grid; grid-template-columns: minmax(260px, .75fr) 1.25fr; gap: clamp(50px, 8vw, 120px); }
.download-heading h2 { margin: 0; font-size: clamp(42px, 5vw, 72px); font-weight: 570; letter-spacing: -.045em; line-height: 1; }
.download-heading p { max-width: 420px; color: rgba(255,255,255,.68); }
.download-list { display: grid; align-content: start; }
.download-item { padding: 22px 0; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 25px; border-bottom: 1px solid rgba(255,255,255,.2); text-decoration: none; }
.download-item:first-child { border-top: 1px solid rgba(255,255,255,.2); }
.download-item small { display: block; margin-bottom: 4px; color: var(--blue-soft); font-weight: 650; letter-spacing: .06em; text-transform: uppercase; }
.download-item strong { font-size: clamp(17px, 1.7vw, 22px); font-weight: 540; }
.download-icon { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; transition: background .2s ease, transform .3s var(--ease-out); }
.download-icon svg { width: 19px; }
.download-item:hover .download-icon { color: var(--blue); background: var(--white); transform: translateY(3px); }

.related-section { padding: clamp(100px, 12vw, 170px) var(--page-gutter); }
.related-inner { width: min(100%, var(--max-width)); margin: 0 auto; }
.related-heading { margin-bottom: 50px; display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.related-heading h2 { margin: 0; font-size: clamp(38px, 5vw, 70px); font-weight: 570; letter-spacing: -.045em; line-height: 1; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.related-grid .card-image { height: clamp(260px, 26vw, 380px); }

.site-footer { padding: 0; color: var(--white); background: var(--blue); }
.footer-wave { height: clamp(62px, 9vw, 122px); overflow: hidden; background: var(--white); line-height: 0; }
.footer-wave svg { width: 100%; height: 100%; display: block; }
.footer-inner {
  width: min(100%, calc(var(--max-width) + var(--page-gutter) * 2));
  margin: 0 auto;
  padding: clamp(28px, 4vw, 52px) var(--page-gutter) clamp(34px, 4.5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.footer-brand { width: 164px; display: block; flex: 0 0 auto; text-decoration: none; }
.footer-brand svg { width: 100%; height: auto; display: block; filter: brightness(0) invert(1); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px clamp(20px, 3vw, 38px); }
.footer-links a { color: rgba(255,255,255,.82); font-size: 14px; text-decoration: none; transition: color .3s ease; }
.footer-links a:hover { color: var(--white); }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.05s cubic-bezier(.25, .46, .45, .94), transform 1.15s cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  .brand, .brand-logo { width: 145px; }
  .reference-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reference-card.is-featured { grid-column: span 2; }
  .detail-title-layout { grid-template-columns: 1fr; }
  .detail-meta-list { max-width: 520px; grid-template-columns: repeat(2, 1fr); }
  .detail-meta-list div { grid-template-columns: 1fr; }
}

@media (max-width: 880px) {
  :root { --header-height: 70px; }
  .language-trigger { padding-left: 4px; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .filter-panel { position: relative; top: 0; grid-template-columns: 1fr; }
  .reset-button { width: 100%; }
  .story-inner { grid-template-columns: 1fr; gap: 24px; }
  .story-aside { display: flex; justify-content: space-between; gap: 20px; }
  .product-heading { grid-template-columns: 1fr; gap: 30px; }
  .feature, .feature:nth-child(even) { grid-template-columns: 1fr; }
  .feature:nth-child(even) .feature-media { order: 0; }
  .download-inner { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { align-items: flex-start; flex-direction: column; gap: 26px; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 620px) {
  .brand, .brand-logo { width: 132px; }
  .language-trigger [data-current-language] { display: none; }
  .overview-hero h1, .detail-title-layout h1 { font-size: clamp(48px, 15vw, 72px); }
  .hero-visual, .detail-hero { width: calc(100% - 24px); min-height: 360px; height: 76vh; max-height: 620px; }
  .hero-caption { display: block; }
  .hero-caption span { display: block; margin-top: 4px; }
  .references-section { padding-right: 14px; padding-left: 14px; }
  .section-heading { padding-right: 6px; padding-left: 6px; }
  .reference-grid { grid-template-columns: 1fr; gap: 45px; }
  .reference-card.is-featured { grid-column: auto; }
  .reference-card.is-featured .card-image, .card-image { height: auto; min-height: 0; max-height: none; aspect-ratio: 430 / 310; }
  .detail-meta-list { grid-template-columns: 1fr; }
  .detail-intro { padding-top: 42px; }
  .story-section { padding-top: 80px; padding-bottom: 80px; }
  .story-copy { font-size: 21px; }
  .feature-media { min-height: 270px; }
  .related-heading { align-items: start; flex-direction: column; }
  .related-grid { grid-template-columns: 1fr; }
  .download-item { align-items: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-visual img, .detail-hero img { transform: none !important; }
}
