@font-face {
  font-family: "Helvetica Now Text";
  src: url("/public/assets/fonts/helveticanowtext-bold-demo.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Now Text";
  src: url("/public/assets/fonts/helveticanowtext-black-demo.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #ded8cd;
  --paper-card: #e7e2d9;
  --ink: #515153;
  --muted: #9ba7ad;
  --accent: #ff6d2d;
  --footer: #a8a5a6;
  --dark: #1c1a1b;
  --deep: #071016;
  --white: #f4f4f1;
  --line: rgba(81, 81, 83, 0.25);
  --dark-line: rgba(255, 255, 255, 0.28);
  --header-h: 76px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.18;
}

body.is-dark {
  background: var(--dark);
}

body,
button,
input {
  letter-spacing: 0;
}

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

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

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

h1,
h2,
h3,
strong,
.arrow-link,
.role-card span {
  font-family: "Helvetica Now Text", Helvetica, Arial, sans-serif;
}

button {
  color: inherit;
  font: inherit;
}

.page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.wrap {
  width: calc(100% - 112px);
  max-width: 1600px;
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 56px;
  background: #b9b5b3;
}

.landing-header {
  position: absolute;
  inset: 0 0 auto;
  color: var(--white);
  background: rgba(214, 209, 202, 0.72);
}

.product-header {
  position: absolute;
  inset: 0 0 auto;
  color: white;
  background: transparent;
}

.brand-link,
.footer-logo {
  display: inline-flex;
}

.artegall-logo {
  position: relative;
  display: inline-flex;
  width: 34px;
  height: 38px;
  gap: 6px;
  color: currentColor;
}

.artegall-logo i {
  display: block;
  width: 8px;
  background: currentColor;
}

.artegall-logo i:nth-child(1) {
  height: 32px;
  margin-top: 0;
}

.artegall-logo i:nth-child(2) {
  height: 12px;
  margin-top: 11px;
}

.artegall-logo i:nth-child(3) {
  height: 32px;
  margin-top: 6px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  margin-right: 28px;
  font-size: 11px;
  font-weight: 700;
}

.desktop-nav a {
  white-space: nowrap;
}

.desktop-nav .join-link {
  border: 1px solid var(--accent);
  padding: 7px 10px;
  color: var(--accent);
}

.menu-button {
  position: relative;
  z-index: 3;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 10px 4px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 34px;
  height: 2px;
  background: currentColor;
}

.menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: min(420px, 100vw);
  min-height: 100vh;
  align-content: center;
  gap: 8px;
  padding: 80px 56px 40px;
  color: #ece9e2;
  background: rgba(28, 27, 28, 0.98);
  transform: translateX(102%);
  transition: transform 220ms ease;
}

.menu-panel.open {
  transform: translateX(0);
}

.menu-panel a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  font-family: "Helvetica Now Text", Helvetica, sans-serif;
  font-size: 28px;
  padding: 12px 0;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 180px 180px 1fr;
  grid-template-rows: 1fr auto;
  min-height: 300px;
  gap: 24px 70px;
  padding: 44px 56px 28px;
  color: #505052;
  background: var(--footer);
}

.site-footer .artegall-logo {
  width: 44px;
  height: 52px;
}

.site-footer .artegall-logo i {
  width: 11px;
}

.site-footer .artegall-logo i:nth-child(1),
.site-footer .artegall-logo i:nth-child(3) {
  height: 46px;
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
}

.site-footer .linkedin {
  font-family: "Helvetica Now Text", Helvetica, sans-serif;
  font-weight: 900;
}

.site-footer small {
  align-self: end;
  font-size: 10px;
}

.site-footer .legal {
  grid-column: 4;
  text-align: right;
}

.footer-dark {
  color: #4e4c4d;
  background: #aaa7a8;
}

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.arrow-link span {
  font-size: 22px;
  line-height: 0.7;
}

.terrain {
  background-color: var(--paper);
  background-image:
    radial-gradient(ellipse 28% 22% at 20% 14%, transparent 95%, rgba(81, 81, 83, 0.12) 96%, transparent 98%),
    radial-gradient(ellipse 32% 25% at 76% 48%, transparent 95%, rgba(81, 81, 83, 0.1) 96%, transparent 98%),
    radial-gradient(ellipse 26% 30% at 37% 84%, transparent 95%, rgba(81, 81, 83, 0.1) 96%, transparent 98%);
}

/* Landing */
.landing-page {
  color: #f2f2ef;
  background: #030506;
}

.landing-intro {
  position: relative;
}

.landing-intro .intro-ocean {
  height: 810px;
  object-fit: cover;
}

.landing-intro > h1 {
  position: absolute;
  z-index: 2;
  top: 610px;
  left: 58px;
  max-width: 1100px;
  color: white;
  font-size: clamp(68px, 6.4vw, 110px);
  font-weight: 700;
  line-height: 0.88;
}

.intro-red {
  position: relative;
  height: 900px;
  overflow: hidden;
  background: #030202;
}

.intro-red > img {
  position: absolute;
  inset: 0 0 0 auto;
  width: 74%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.intro-red::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #020202 0 26%, rgba(2, 2, 2, 0.93) 36%, transparent 68%);
}

.intro-red h2,
.intro-red h3,
.intro-red p {
  position: relative;
  z-index: 2;
  width: 42%;
  margin-left: 58px;
}

.intro-red h2 {
  padding-top: 42px;
  font-size: clamp(36px, 3.4vw, 58px);
  line-height: 0.92;
  text-align: center;
}

.intro-red h3 {
  margin-top: 76px;
  font-size: clamp(24px, 2.25vw, 42px);
  line-height: 0.96;
}

.intro-red p {
  max-width: 510px;
  margin-top: 90px;
  font-size: 15px;
  line-height: 1.28;
}

.intro-red p + p {
  margin-top: 24px;
}

.product-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: #020304;
}

.product-tile {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.52);
  background: #050607;
}

.product-tile.wide {
  grid-column: 1 / -1;
  min-height: 790px;
}

.product-tile.half:first-of-type {
  border-right: 1px solid rgba(255, 255, 255, 0.42);
}

.product-tile img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.product-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(10deg, rgba(0, 0, 0, 0.7), transparent 45%);
}

.product-tile:hover img {
  transform: scale(1.018);
}

.tile-copy {
  position: absolute;
  z-index: 2;
  left: 58px;
  bottom: 65px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tile-copy strong {
  font-size: 30px;
}

.tile-copy em {
  font-size: 26px;
  font-style: normal;
}

.tile-copy small {
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 7px 12px;
  font-size: 10px;
}

.landing-careers,
.landing-news {
  color: var(--ink);
  padding: 46px 58px 70px;
}

.landing-careers h2 {
  max-width: 1500px;
  margin: 12px 0 34px;
  font-size: clamp(24px, 2.25vw, 40px);
  line-height: 0.96;
}

.career-split {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.career-split img {
  height: 560px;
  object-fit: cover;
}

.career-split div {
  padding-right: 40px;
}

.career-split p {
  max-width: 470px;
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.24;
}

.landing-news {
  padding-top: 36px;
}

.landing-news .news-grid {
  margin-top: 20px;
}

/* Light pages */
.light-page {
  background-color: var(--paper);
}

.section-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  padding: 0 56px;
  color: #e9e6df;
  background: #2e2d2e;
}

.section-bar h1 {
  font-size: 34px;
  line-height: 1;
}

.section-bar nav {
  display: flex;
  gap: 28px;
  font-weight: 700;
}

.news-hero {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 40px;
  min-height: 590px;
  padding: 32px 56px;
  background: #e8e4dc;
}

.news-hero > div {
  padding-top: 4px;
}

.news-hero small,
.news-card small {
  color: #9cabb3;
  font-size: 11px;
  font-weight: 700;
}

.news-hero h2 {
  max-width: 650px;
  margin: 18px 0 30px;
  font-size: clamp(35px, 3.2vw, 58px);
  line-height: 0.94;
}

.news-hero img {
  height: 516px;
  object-fit: cover;
}

.news-list {
  padding-top: 80px;
  padding-bottom: 58px;
}

.news-list > h2,
.media-assets > h2,
.article-latest > h2 {
  margin-bottom: 28px;
  font-size: 36px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.news-card {
  overflow: hidden;
  border-radius: 3px;
  background: var(--paper-card);
}

.news-card img {
  height: 294px;
  object-fit: cover;
}

.news-card small {
  display: block;
  padding: 16px 16px 0;
}

.news-card h3 {
  min-height: 90px;
  padding: 8px 16px 18px;
  font-size: 24px;
  line-height: 0.96;
}

.news-grid.compact .news-card img {
  height: 270px;
}

.center-link {
  display: flex;
  justify-content: center;
  padding-top: 50px;
}

.media-assets {
  padding-top: 20px;
  padding-bottom: 92px;
}

.media-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.media-layout img {
  height: 570px;
  object-fit: cover;
}

.media-layout > div {
  padding: 10px 24px;
  font-size: 16px;
}

.media-layout .text-link {
  display: inline-block;
  margin: 30px 0 88px;
  color: var(--accent);
  text-decoration: underline;
}

/* Article */
.article-layout {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 36px 32px;
  padding-top: 42px;
  padding-bottom: 100px;
}

.article-layout > header {
  grid-column: 1;
}

.tags {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.tags span {
  border: 1px solid var(--ink);
  border-radius: 4px;
  padding: 5px 9px;
  font-size: 14px;
}

.article-layout h1 {
  max-width: 650px;
  font-size: clamp(35px, 3.5vw, 60px);
  line-height: 0.9;
}

.article-hero {
  grid-column: 2;
  height: 515px;
  object-fit: cover;
}

.article-copy {
  grid-column: 2;
  max-width: 860px;
  padding-top: 42px;
  font-size: 16px;
  line-height: 1.27;
}

.article-copy p {
  margin-bottom: 20px;
}

.article-copy .media-contact {
  margin-top: 74px;
}

.article-copy a {
  text-decoration: underline;
}

.article-latest {
  padding-bottom: 70px;
}

/* Company */
.subnav {
  display: flex;
  justify-content: flex-end;
  gap: 26px;
  height: 54px;
  padding: 18px 56px;
  color: #e9e6df;
  background: #2e2d2e;
  font-size: 12px;
  font-weight: 700;
}

.company-hero,
.careers-hero {
  position: relative;
}

.company-hero img {
  height: 770px;
  object-fit: cover;
}

.company-hero h1,
.careers-hero h1 {
  position: absolute;
  left: 56px;
  bottom: 26px;
  color: var(--accent);
  font-size: 30px;
}

.company-intro {
  padding-top: 78px;
}

.company-intro > h2 {
  max-width: 1270px;
  margin-top: 24px;
  font-size: clamp(34px, 3.4vw, 62px);
  line-height: 0.94;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  width: 940px;
  max-width: 90%;
  margin: 36px auto 70px;
}

.mission-grid img {
  height: 650px;
  object-fit: cover;
}

.mission-grid > div {
  padding-top: 6px;
}

.mission-grid p {
  margin-bottom: 22px;
  font-size: 15px;
  line-height: 1.27;
}

.leadership {
  padding-top: 30px;
}

.leader-group {
  display: grid;
  grid-template-columns: 32% 68%;
  min-height: 210px;
  margin-bottom: 70px;
}

.person-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  border-top: 1px solid var(--line);
}

.person-row strong,
.person-row small {
  display: block;
}

.person-row strong {
  font-size: 23px;
}

.person-row small {
  margin-top: 2px;
  font-size: 12px;
  font-weight: 700;
}

.person-row button {
  width: 40px;
  border: 0;
  background: transparent;
  color: rgba(81, 81, 83, 0.45);
  font-size: 24px;
  cursor: pointer;
}

.person-row.open {
  background: rgba(255, 255, 255, 0.17);
}

.ethics {
  padding: 20px 0 120px;
}

.ethics-row {
  display: grid;
  grid-template-columns: 32% 68%;
  min-height: 330px;
  padding-top: 30px;
}

.ethics-row h2 {
  margin-top: 16px;
  font-size: 30px;
}

.ethics-row > p {
  max-width: 1000px;
  font-size: 15px;
  line-height: 1.3;
}

/* Careers */
.careers-hero img {
  height: 805px;
  object-fit: cover;
  object-position: center;
}

.careers-intro {
  padding-top: 82px;
  padding-bottom: 76px;
}

.careers-intro h2,
.career-mission h2,
.values > h2,
.locations > h2 {
  max-width: 1160px;
  font-size: clamp(29px, 2.7vw, 50px);
  line-height: 0.95;
}

.careers-intro > img {
  height: 780px;
  margin-top: 40px;
  object-fit: cover;
}

.right-link {
  display: flex;
  justify-content: flex-end;
  padding-top: 24px;
}

.career-mission {
  padding-bottom: 60px;
}

.career-mission h2 {
  margin: 16px 0 36px;
  max-width: 1050px;
}

.career-mission img {
  width: 520px;
  height: 680px;
  margin: auto;
  object-fit: cover;
}

.featured-roles {
  min-height: 720px;
  padding-top: 320px;
  padding-bottom: 55px;
  background: #e8e4dc;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.role-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  padding: 18px;
  color: #f0efec;
  background: #5b5a5c;
}

.role-card small {
  margin-top: 12px;
  font-size: 9px;
}

.role-card small:first-child {
  margin-top: 0;
}

.role-card strong {
  min-height: 42px;
  font-size: 17px;
}

.role-card span {
  font-size: 16px;
}

.values {
  min-height: 980px;
  padding-top: 180px;
}

.value-layout {
  display: grid;
  grid-template-columns: 44% 56%;
  gap: 38px;
  padding-top: 96px;
}

.value-layout ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-right: 1px solid var(--line);
}

.value-layout li {
  margin-bottom: 20px;
  color: #aaa6a2;
  font-family: "Helvetica Now Text", Helvetica, sans-serif;
  font-size: 24px;
}

.value-layout li.active {
  color: var(--ink);
}

.value-layout p {
  max-width: 600px;
  font-size: 22px;
  line-height: 1.14;
}

.locations > h2 {
  padding-bottom: 34px;
}

.city-image {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 610px;
}

.city-image img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.city-image span {
  position: relative;
  z-index: 2;
  align-self: end;
  padding: 0 18px 20px;
  color: white;
}

/* Positions */
.positions {
  padding-top: 70px;
  padding-bottom: 90px;
}

.back-link {
  color: var(--accent);
  font-size: 12px;
}

.positions > .eyebrow {
  margin-top: 34px;
}

.positions > h1 {
  max-width: 1260px;
  margin: 20px 0 100px;
  font-size: clamp(31px, 2.35vw, 40px);
  line-height: 0.94;
}

.position-filters {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 8px;
  margin-bottom: 38px;
}

.position-filters span {
  border: 1px solid var(--line);
  padding: 13px 14px;
  color: #aaa6a2;
  font-size: 12px;
}

.position-head,
.position-list a {
  display: grid;
  grid-template-columns: 2.2fr 1fr 0.7fr 1.25fr 24px;
  align-items: center;
  gap: 18px;
}

.position-head {
  min-height: 44px;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  font-weight: 700;
}

.position-list a {
  min-height: 56px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}

.position-list strong {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 400;
}

.position-list b {
  color: #aaa6a2;
  font-size: 18px;
}

/* Dark product pages */
.dark-page {
  color: #ececeb;
  background: var(--dark);
}

.dark-hero {
  position: relative;
  min-height: 870px;
  overflow: hidden;
  background: #030607;
}

.dark-hero > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.dark-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent 38%);
}

.dark-hero > div {
  position: absolute;
  z-index: 2;
  left: 58px;
  bottom: 48px;
  font-family: "Courier New", monospace;
}

.dark-hero h1,
.dark-hero p {
  font-family: "Courier New", monospace;
  font-size: 32px;
  font-weight: 400;
  line-height: 0.95;
}

.dark-image-block img {
  height: 900px;
  object-fit: cover;
}

.dark-copy {
  padding-top: 26px;
  padding-bottom: 92px;
  border-top: 1px solid var(--dark-line);
}

.dark-copy.two-col {
  display: grid;
  grid-template-columns: 34% 66%;
  gap: 30px;
}

.dark-copy h2,
.components h2,
.key-properties h2 {
  font-size: 20px;
}

.dark-copy p {
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.3;
}

.components {
  padding-bottom: 80px;
}

.components > h2 {
  padding: 18px 0;
  border-top: 1px solid var(--dark-line);
}

.component-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  height: 660px;
}

.component-grid > img,
.component-stack img {
  height: 100%;
  object-fit: cover;
}

.component-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  overflow: hidden;
}

.component-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding-top: 16px;
  color: var(--accent);
  font-family: "Courier New", monospace;
  font-size: 11px;
}

.key-properties {
  min-height: 680px;
  padding-top: 24px;
  padding-bottom: 100px;
  border-top: 1px solid var(--dark-line);
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.13) 1px, transparent 1.5px);
  background-size: 52px 52px;
}

.key-properties ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px 130px;
  max-width: 1000px;
  margin: 48px 0 0 auto;
  font-family: "Courier New", monospace;
  line-height: 1.25;
}

.key-properties li::marker {
  color: white;
}

.dark-finale img {
  height: 740px;
  object-fit: cover;
}

.europa-page,
.europa-page .dark-copy,
.europa-page .components {
  background-color: var(--deep);
}

.europa-page .dark-hero {
  min-height: 900px;
}

.europa-page .dark-image-block img {
  height: 1050px;
}

.dark-copy.stacked {
  display: grid;
  gap: 32px;
}

.dark-copy.stacked > div {
  display: grid;
  grid-template-columns: 34% 66%;
}

.europa-spec {
  display: grid;
  grid-template-columns: 74% 26%;
  gap: 28px;
  padding-top: 90px;
  padding-bottom: 90px;
}

.europa-spec img {
  height: 760px;
  object-fit: cover;
}

.europa-spec dl {
  margin: 0;
  font-family: "Courier New", monospace;
}

.europa-spec dt {
  margin-top: 10px;
  color: #8d8f91;
  font-size: 11px;
}

.europa-spec dd {
  margin: 8px 0 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--dark-line);
  color: #f14d49;
  font-size: 18px;
}

.aircraft-outline {
  position: relative;
  min-height: 1180px;
  color: #9b9fa1;
}

.plane-shape {
  position: absolute;
  top: 80px;
  left: 50%;
  width: 370px;
  height: 930px;
  border: 3px solid #7d8487;
  border-radius: 48% 48% 28% 28% / 13% 13% 8% 8%;
  transform: translateX(-50%);
}

.plane-shape::before,
.plane-shape::after {
  content: "";
  position: absolute;
  top: 380px;
  width: 520px;
  height: 200px;
  border: 3px solid #7d8487;
  border-radius: 70% 12%;
}

.plane-shape::before {
  right: 78%;
  transform: rotate(-16deg);
}

.plane-shape::after {
  left: 78%;
  transform: rotate(16deg);
}

.plane-shape span {
  position: absolute;
  top: 480px;
  left: 50%;
  font-size: 36px;
  font-weight: 900;
  transform: translateX(-50%);
}

.aircraft-outline small {
  position: absolute;
  font-family: "Courier New", monospace;
}

.aircraft-outline small:nth-of-type(1) {
  top: 70px;
  right: 10%;
}

.aircraft-outline small:nth-of-type(2) {
  top: 600px;
  right: 4%;
}

.aircraft-outline small:nth-of-type(3) {
  bottom: 80px;
  left: 10%;
}

.europa-finale img {
  height: 880px;
}

.factories-page .dark-hero {
  min-height: 875px;
}

.factory-statement {
  position: relative;
  min-height: 830px;
  padding-top: 130px;
}

.factory-statement span {
  display: block;
  font-size: clamp(65px, 7.8vw, 138px);
  line-height: 0.88;
}

.factory-statement span:nth-child(2) {
  margin-top: 40px;
  text-align: right;
}

.factory-statement p {
  max-width: 940px;
  margin: 70px 0 0 auto;
  padding-top: 16px;
  border-top: 1px solid var(--dark-line);
  font-size: 14px;
  line-height: 1.3;
}

.factory-feature {
  padding-bottom: 130px;
}

.factory-feature > img {
  height: 850px;
  object-fit: cover;
}

.factory-feature .dark-copy {
  width: 100%;
}

.factory-unit {
  position: relative;
}

.factory-unit > img {
  height: 900px;
  object-fit: cover;
}

.unit-copy {
  position: absolute;
  inset: auto 0 35px;
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: end;
  gap: 30px;
}

.unit-copy h2 {
  font-size: 24px;
  line-height: 1.3;
}

.unit-copy p {
  font-size: 14px;
  line-height: 1.3;
}

.factory-details {
  padding-top: 130px;
  padding-bottom: 110px;
}

.detail-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  height: 640px;
}

.detail-images img {
  height: 100%;
  object-fit: cover;
}

.factory-details .dark-copy {
  margin-top: 30px;
}

/* Responsive */
@media (max-width: 900px) {
  :root {
    --header-h: 52px;
  }

  .wrap {
    width: calc(100% - 32px);
  }

  .site-header {
    padding: 0 16px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-panel {
    padding-inline: 28px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 34px;
    min-height: 370px;
    padding: 32px 18px 20px;
  }

  .site-footer .footer-logo {
    grid-column: 1 / -1;
  }

  .site-footer .linkedin {
    position: absolute;
    top: 40px;
    right: 20px;
  }

  .site-footer small {
    align-self: end;
  }

  .site-footer .legal {
    grid-column: 2;
  }

  .landing-intro .intro-ocean {
    height: 540px;
  }

  .landing-intro > h1 {
    top: 390px;
    left: 18px;
    font-size: 58px;
  }

  .intro-red {
    height: 760px;
  }

  .intro-red > img {
    width: 100%;
    opacity: 0.72;
  }

  .intro-red::after {
    background: linear-gradient(180deg, #020202 0 16%, transparent 55%, #020202 100%);
  }

  .intro-red h2,
  .intro-red h3,
  .intro-red p {
    width: calc(100% - 36px);
    margin-left: 18px;
  }

  .intro-red h2 {
    padding-top: 28px;
    font-size: 36px;
  }

  .intro-red h3 {
    margin-top: 370px;
    font-size: 26px;
  }

  .intro-red p {
    margin-top: 38px;
    font-size: 12px;
  }

  .product-showcase {
    display: block;
  }

  .product-tile,
  .product-tile.wide {
    display: block;
    min-height: 560px;
  }

  .tile-copy {
    left: 18px;
    bottom: 30px;
  }

  .tile-copy strong {
    font-size: 25px;
  }

  .tile-copy em {
    font-size: 21px;
  }

  .landing-careers,
  .landing-news {
    padding: 34px 18px 52px;
  }

  .career-split,
  .news-hero,
  .media-layout,
  .mission-grid,
  .article-layout,
  .leader-group,
  .ethics-row,
  .value-layout,
  .dark-copy.two-col,
  .dark-copy.stacked > div,
  .europa-spec,
  .unit-copy {
    grid-template-columns: 1fr;
  }

  .career-split img {
    height: 400px;
  }

  .section-bar {
    height: auto;
    padding: 14px 16px;
  }

  .section-bar nav,
  .subnav {
    display: none;
  }

  .news-hero {
    gap: 24px;
    min-height: auto;
    padding: 28px 16px 16px;
  }

  .news-hero img {
    height: 340px;
  }

  .news-grid,
  .role-grid {
    grid-template-columns: 1fr;
  }

  .news-card img,
  .news-grid.compact .news-card img {
    height: 230px;
  }

  .media-layout img {
    height: 360px;
  }

  .article-layout {
    gap: 24px;
    padding-top: 28px;
  }

  .article-layout > header,
  .article-hero,
  .article-copy {
    grid-column: 1;
  }

  .article-hero {
    height: 320px;
  }

  .company-hero img,
  .careers-hero img {
    height: 560px;
  }

  .company-hero h1,
  .careers-hero h1 {
    left: 18px;
  }

  .mission-grid {
    width: auto;
    max-width: none;
  }

  .mission-grid img {
    height: 520px;
  }

  .leader-group {
    min-height: auto;
  }

  .leader-group > .eyebrow {
    margin-bottom: 18px;
  }

  .ethics-row {
    gap: 25px;
    min-height: 430px;
  }

  .careers-intro > img {
    height: 440px;
  }

  .career-mission img {
    width: 100%;
    height: 520px;
  }

  .featured-roles {
    padding-top: 150px;
  }

  .values {
    min-height: 850px;
    padding-top: 120px;
  }

  .value-layout {
    padding-top: 60px;
  }

  .value-layout ol {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .city-image {
    height: 440px;
  }

  .positions > h1 {
    margin-bottom: 60px;
  }

  .position-filters {
    grid-template-columns: 1fr 1fr;
  }

  .position-head {
    display: none;
  }

  .position-list a {
    grid-template-columns: 1fr 24px;
    gap: 4px;
    padding: 12px 0;
  }

  .position-list a span {
    grid-column: 1;
    color: #848184;
  }

  .position-list a b {
    grid-column: 2;
    grid-row: 1 / 4;
  }

  .dark-hero {
    min-height: 720px;
  }

  .dark-hero > div {
    left: 18px;
    bottom: 28px;
  }

  .dark-hero h1,
  .dark-hero p {
    font-size: 22px;
  }

  .dark-image-block img,
  .europa-page .dark-image-block img {
    height: 580px;
  }

  .dark-copy.two-col {
    gap: 22px;
  }

  .component-grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .component-grid > img {
    height: 480px;
  }

  .component-stack {
    height: 480px;
  }

  .key-properties {
    min-height: 880px;
  }

  .key-properties ul {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-left: 20px;
  }

  .dark-finale img,
  .europa-finale img {
    height: 520px;
  }

  .europa-spec img {
    height: 460px;
  }

  .aircraft-outline {
    min-height: 820px;
  }

  .plane-shape {
    top: 80px;
    width: 180px;
    height: 620px;
  }

  .plane-shape::before,
  .plane-shape::after {
    top: 260px;
    width: 180px;
    height: 100px;
  }

  .factory-statement {
    min-height: 620px;
  }

  .factory-statement span {
    font-size: 50px;
  }

  .factory-feature > img,
  .factory-unit > img {
    height: 560px;
  }

  .unit-copy {
    bottom: 20px;
    gap: 18px;
  }

  .detail-images {
    height: 380px;
  }
}

/* Helsing-inspired editorial framing and motion system */
#app {
  opacity: 1;
  transition: opacity 450ms ease;
}

body.route-entering #app {
  opacity: 0;
}

body.menu-open {
  overflow: hidden;
}

.site-header {
  z-index: 98;
  height: var(--header-h);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), background-color 300ms ease, color 300ms ease;
  will-change: transform;
}

.landing-header,
.product-header {
  position: fixed;
  inset: 0 0 auto;
}

.landing-header {
  background: transparent;
}

.light-page > .site-header {
  position: sticky;
  top: 0;
}

.site-header.nav-hidden {
  transform: translateY(-100%);
}

.menu-button {
  z-index: 102;
  display: block;
}

.menu-button span {
  position: absolute;
  left: 4px;
  width: 34px;
  transition: transform 300ms ease, opacity 200ms ease, background-color 150ms ease;
}

.menu-button span:nth-child(1) {
  top: 11px;
}

.menu-button span:nth-child(2) {
  top: 20px;
}

.menu-button span:nth-child(3) {
  top: 29px;
}

.menu-button[aria-expanded="true"] {
  color: var(--ink);
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.menu-scrim {
  position: fixed;
  inset: 0;
  z-index: 99;
  border: 0;
  background: rgba(0, 0, 0, 0.58);
  opacity: 0;
  visibility: hidden;
  cursor: default;
  transition: opacity 500ms ease, visibility 0s linear 500ms;
}

body.menu-open .menu-scrim {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.menu-panel {
  position: fixed;
  z-index: 100;
  width: min(62.5vw, 685px);
  min-width: 270px;
  height: 100svh;
  min-height: 0;
  overflow-y: auto;
  color: var(--ink);
  background: var(--paper-card);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1), opacity 500ms ease, visibility 0s linear 500ms;
}

.menu-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition-delay: 0s;
}

.menu-panel a {
  opacity: 0;
  transform: translateX(20px);
  transition: color 150ms ease, opacity 400ms ease, transform 400ms ease;
}

.menu-panel.open a {
  opacity: 1;
  transform: translateX(0);
}

.menu-panel.open a:nth-child(1) { transition-delay: 100ms; }
.menu-panel.open a:nth-child(2) { transition-delay: 130ms; }
.menu-panel.open a:nth-child(3) { transition-delay: 160ms; }
.menu-panel.open a:nth-child(4) { transition-delay: 190ms; }
.menu-panel.open a:nth-child(5) { transition-delay: 220ms; }
.menu-panel.open a:nth-child(6) { transition-delay: 250ms; }
.menu-panel.open a:nth-child(7) { transition-delay: 280ms; }
.menu-panel.open a:nth-child(8) { transition-delay: 310ms; }
.menu-panel.open a:nth-child(9) { transition-delay: 340ms; }
.menu-panel.open a:nth-child(10) { transition-delay: 370ms; }
.menu-panel.open a:nth-child(11) { transition-delay: 400ms; }

.menu-panel a:hover,
.desktop-nav a:hover {
  color: var(--accent);
}

.landing-intro .intro-ocean {
  height: 100svh;
}

.landing-intro > h1 {
  top: auto;
  bottom: calc(100% - 100svh + 58px);
}

.intro-red {
  min-height: 100svh;
  height: 100svh;
}

.intro-red > img {
  width: 100%;
}

.intro-red::after {
  background: linear-gradient(90deg, #020202 0 18%, rgba(2, 2, 2, 0.82) 37%, rgba(2, 2, 2, 0.08) 76%);
}

.product-tile,
.product-tile.wide {
  min-height: 620px;
  height: 75svh;
  max-height: 900px;
}

.product-tile img.scroll-zoom {
  --scroll-scale: 1;
  transform: scale(var(--scroll-scale));
  transform-origin: center;
  transition: transform 90ms linear;
  will-change: transform;
}

.product-tile:hover img.scroll-zoom {
  transform: scale(calc(var(--scroll-scale) + 0.025));
}

.tile-copy {
  bottom: 48px;
}

.tile-copy small,
.arrow-link,
.desktop-nav .join-link {
  transition: color 150ms ease, border-color 150ms ease, background-color 150ms ease, transform 200ms ease;
}

.tile-copy small:hover,
.desktop-nav .join-link:hover {
  color: var(--dark);
  border-color: var(--accent);
  background: var(--accent);
}

.arrow-link:hover {
  transform: translateX(4px);
}

.motion-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 850ms cubic-bezier(0.22, 0.61, 0.36, 1), transform 850ms cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.media-settle {
  transition: transform 1000ms cubic-bezier(0.4, 0, 0.2, 1), opacity 900ms ease !important;
}

body.route-entering .landing-intro .intro-ocean,
body.route-entering .dark-hero > img,
body.route-entering .company-hero > img,
body.route-entering .careers-hero > img,
body.route-entering .news-hero > img,
body.route-entering .article-hero {
  opacity: 0;
  transform: scale(1.04);
}

body.route-ready .landing-intro .intro-ocean,
body.route-ready .dark-hero > img,
body.route-ready .company-hero > img,
body.route-ready .careers-hero > img,
body.route-ready .news-hero > img,
body.route-ready .article-hero {
  opacity: 1;
  transform: scale(1);
  transition: transform 1200ms cubic-bezier(0.4, 0, 0.2, 1), opacity 900ms ease;
}

.news-card a {
  display: block;
  height: 100%;
}

.news-card img,
.career-split img,
.media-layout img,
.careers-intro > img,
.role-card {
  transition: transform 1000ms cubic-bezier(0.4, 0, 0.2, 1), background-color 250ms ease;
}

.news-card:hover img,
.career-split:hover img,
.media-layout:hover img,
.careers-intro > img:hover {
  transform: scale(1.05);
}

.news-card,
.career-split,
.media-layout,
.careers-intro {
  overflow: hidden;
}

.role-card:hover {
  background: #4d4c4e;
  transform: translateY(-4px);
}

.person-row {
  transition: background-color 250ms ease;
}

.person-row > p {
  display: block;
  max-height: 0;
  overflow: hidden;
  padding-bottom: 0;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height 450ms ease, opacity 300ms ease, transform 300ms ease, padding 450ms ease;
}

.person-row.open > p {
  max-height: 220px;
  padding-bottom: 24px;
  opacity: 1;
  transform: translateY(0);
}

.person-row button b {
  transition: transform 300ms ease;
}

.person-row.open button b {
  transform: rotate(180deg);
}

.dark-hero {
  min-height: 100svh;
}

.product-detail .dark-hero > img {
  left: 11%;
  width: 78%;
}

.product-stage {
  width: 100%;
  max-width: none;
}

.product-stage img {
  height: 75svh;
  min-height: 650px;
}

.product-detail::before,
.product-detail::after {
  content: "";
  position: absolute;
  z-index: 22;
  top: 0;
  bottom: 300px;
  width: 12px;
  pointer-events: none;
  opacity: 0.58;
  background: repeating-linear-gradient(to bottom, transparent 0 29px, rgba(255, 255, 255, 0.75) 29px 30px, transparent 30px 79px);
}

.product-detail::before { left: 8px; }
.product-detail::after { right: 8px; }

.product-sections article,
.position-list a {
  transition: background-color 220ms ease, color 220ms ease;
}

.product-sections article:hover,
.position-list a:hover {
  background: rgba(255, 255, 255, 0.045);
}

.position-list a:hover b {
  color: var(--accent);
  transform: translateX(4px);
}

.position-list b {
  transition: color 180ms ease, transform 180ms ease;
}

@media (max-width: 900px) {
  :root {
    --header-h: 40px;
  }

  .site-header {
    padding-inline: 32px;
  }

  .brand-word {
    display: none;
  }

  .artegall-logo {
    width: 20px;
    height: 27px;
    transform: scale(0.82);
    transform-origin: left center;
  }

  .menu-button {
    width: 24px;
    height: 36px;
    padding: 0;
  }

  .menu-button span {
    left: 0;
    width: 24px;
    height: 2px;
  }

  .menu-button span:nth-child(1) { top: 10px; }
  .menu-button span:nth-child(2) { top: 17px; }
  .menu-button span:nth-child(3) { top: 24px; }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .menu-panel {
    width: min(87vw, 420px);
    padding: 64px 32px 32px;
  }

  .menu-panel a {
    font-size: 22px;
  }

  .landing-intro .intro-ocean,
  .intro-red {
    height: 100svh;
    min-height: 100svh;
  }

  .landing-intro > h1 {
    top: auto;
    bottom: calc(100% - 100svh + 32px);
    left: 32px;
    max-width: calc(100% - 64px);
    font-size: 34px;
    line-height: 0.92;
  }

  .intro-red::after {
    background: linear-gradient(180deg, rgba(2, 2, 2, 0.7) 0%, rgba(2, 2, 2, 0.03) 48%, rgba(2, 2, 2, 0.82) 100%);
  }

  .intro-red h2,
  .intro-red h3,
  .intro-red p {
    width: calc(100% - 64px);
    margin-left: 32px;
  }

  .intro-red h2 {
    padding-top: 84px;
    font-size: 24px;
    line-height: 0.96;
    text-align: left;
  }

  .intro-red h3 {
    margin-top: 18px;
    font-size: 18px;
    line-height: 1;
  }

  .intro-red p {
    position: absolute;
    bottom: 92px;
    font-size: 13px;
    line-height: 1.22;
  }

  .intro-red p + p {
    bottom: 24px;
    margin-top: 0;
  }

  .product-tile,
  .product-tile.wide {
    min-height: 640px;
    height: 83svh;
    max-height: 760px;
  }

  .tile-copy {
    left: 32px;
    bottom: 26px;
  }

  .tile-copy strong,
  .tile-copy em {
    font-size: 21px;
  }

  .landing-careers,
  .landing-news {
    padding-inline: 32px;
  }

  .company-hero img,
  .careers-hero img {
    height: calc(100svh - var(--header-h));
  }

  .company-hero h1,
  .careers-hero h1 {
    left: 32px;
    bottom: 24px;
  }

  .dark-hero {
    min-height: 100svh;
  }

  .product-detail .dark-hero > img {
    left: 0;
    width: 100%;
  }

  .product-stage img {
    height: 76svh;
    min-height: 560px;
  }

  .product-detail::before,
  .product-detail::after {
    width: 7px;
  }

  .product-detail::before { left: 3px; }
  .product-detail::after { right: 3px; }
}

body.route-entering .landing-intro > h1 {
  opacity: 0;
  transform: translateY(20px);
}

body.route-ready .landing-intro > h1 {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 850ms ease 350ms, transform 850ms cubic-bezier(0.22, 0.61, 0.36, 1) 350ms;
}

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

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

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

  .scroll-zoom,
  .media-settle {
    transform: none !important;
  }
}

/* Artegall identity and product system */
.brand-link,
.footer-logo {
  align-items: center;
  gap: 12px;
}

.brand-word {
  font-family: "Helvetica Now Text", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.artegall-logo {
  position: relative;
  display: inline-block;
  width: 25px;
  height: 30px;
  color: currentColor;
}

.artegall-logo i {
  position: absolute;
  display: block;
  background: currentColor;
}

.artegall-logo i:nth-child(1) {
  left: 5px;
  width: 5px;
  height: 30px;
  transform: skew(-13deg);
}

.artegall-logo i:nth-child(2) {
  right: 5px;
  width: 5px;
  height: 30px;
  transform: skew(13deg);
}

.artegall-logo i:nth-child(3) {
  top: 17px;
  left: 7px;
  width: 12px;
  height: 4px;
}

.site-footer .artegall-logo {
  width: 35px;
  height: 42px;
  transform: scale(1.35);
  transform-origin: left center;
}

.site-footer .artegall-logo i:nth-child(1),
.site-footer .artegall-logo i:nth-child(2) {
  width: 5px;
  height: 30px;
}

.site-footer .artegall-logo i:nth-child(3) {
  width: 12px;
  height: 4px;
}

.site-footer .brand-word {
  margin-left: 6px;
  font-size: 18px;
}

.product-kicker {
  font-family: "Helvetica Now Text", Helvetica, Arial, sans-serif;
  font-size: clamp(32px, 4.3vw, 78px);
  line-height: 0.93;
}

.product-intro {
  display: grid;
  grid-template-columns: 58% 42%;
  gap: 70px;
  padding-top: 80px;
  padding-bottom: 110px;
  border-bottom: 1px solid var(--dark-line);
}

.product-intro > p:last-child {
  align-self: end;
  max-width: 650px;
  font-size: 16px;
  line-height: 1.35;
}

.dark-hero > div small {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-family: "Courier New", monospace;
  font-size: 11px;
  text-transform: uppercase;
}

.product-detail .dark-hero > img,
.product-stage img {
  object-position: center;
}

.product-detail .dark-hero::after {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.88), transparent 52%);
}

.product-stage {
  width: calc(100% - 112px);
  max-width: 1600px;
  margin: 0 auto;
}

.product-stage img {
  height: 840px;
}

.product-sections {
  padding-top: 100px;
  padding-bottom: 110px;
}

.product-sections article {
  display: grid;
  grid-template-columns: 70px 34% 1fr;
  gap: 28px;
  min-height: 190px;
  padding: 28px 0;
  border-top: 1px solid var(--dark-line);
}

.product-sections span,
.product-sections h2,
.product-sections p {
  font-family: "Courier New", monospace;
}

.product-sections span {
  color: var(--accent);
  font-size: 11px;
}

.product-sections h2 {
  font-size: 18px;
  font-weight: 400;
}

.product-sections p {
  max-width: 760px;
  font-size: 14px;
  line-height: 1.45;
}

.product-spec {
  display: grid;
  grid-template-columns: 72% 28%;
  gap: 30px;
  padding-top: 40px;
  padding-bottom: 120px;
}

.product-spec img {
  height: 720px;
  object-fit: cover;
}

.product-spec dl {
  margin: 0;
  font-family: "Courier New", monospace;
}

.product-spec dt {
  margin-top: 8px;
  color: #8e9396;
  font-size: 10px;
  text-transform: uppercase;
}

.product-spec dd {
  margin: 8px 0 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--dark-line);
  color: var(--accent);
  font-size: 18px;
}

.product-detail .key-properties {
  min-height: 560px;
}

.product-detail .key-properties ul {
  grid-template-columns: repeat(2, 1fr);
}

.product-detail .dark-finale img {
  height: 820px;
}

.proofward-page {
  --dark: #232425;
}

.proofward-page .product-intro,
.proofward-page .product-sections,
.proofward-page .product-spec,
.proofward-page .key-properties {
  background-color: #242526;
}

.career-panorama {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 610px;
  overflow: hidden;
}

.career-panorama::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.56), transparent 35%);
}

.career-panorama img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.career-panorama span {
  position: relative;
  z-index: 2;
  align-self: end;
  padding: 0 18px 20px;
  color: white;
}

.person-row {
  display: block;
}

.person-row button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 74px;
  padding: 0;
  text-align: left;
}

.person-row button b {
  font-size: 24px;
  font-weight: 400;
}

.person-row > p {
  display: none;
  max-width: 700px;
  padding: 0 70px 24px 0;
  font-size: 14px;
  line-height: 1.35;
}

.person-row.open > p {
  display: block;
}

@media (max-width: 1250px) {
  .desktop-nav {
    display: none;
  }
}

@media (max-width: 900px) {
  .brand-word {
    font-size: 11px;
  }

  .product-intro,
  .product-sections article,
  .product-spec {
    grid-template-columns: 1fr;
  }

  .product-intro {
    gap: 32px;
    padding-top: 55px;
    padding-bottom: 70px;
  }

  .product-stage {
    width: calc(100% - 32px);
  }

  .product-stage img {
    height: 540px;
  }

  .product-sections {
    padding-top: 60px;
    padding-bottom: 70px;
  }

  .product-sections article {
    gap: 14px;
    min-height: 0;
    padding: 24px 0 40px;
  }

  .product-spec img {
    height: 470px;
  }

  .product-detail .key-properties ul {
    grid-template-columns: 1fr;
  }

  .product-detail .dark-finale img {
    height: 520px;
  }

  .career-panorama {
    grid-template-columns: 1fr 1fr;
    height: 440px;
  }

  .career-panorama span {
    font-size: 12px;
  }
}

/* Final motion cascade */
.product-stage {
  width: 100%;
  max-width: none;
}

.product-stage img {
  height: 75svh;
  min-height: 650px;
}

.person-row > p {
  display: block;
  max-height: 0;
  padding-bottom: 0;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height 450ms ease, opacity 300ms ease, transform 300ms ease, padding 450ms ease;
}

.person-row.open > p {
  display: block;
  max-height: 220px;
  padding-bottom: 24px;
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .product-stage {
    width: 100%;
  }

  .product-stage img {
    height: 76svh;
    min-height: 560px;
  }
}

/* Interactive Artegall footer */
.site-footer,
.site-footer.footer-dark {
  --pointer-x: 50%;
  --pointer-y: 52%;
  position: relative;
  display: block;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  color: #f0efeb;
  background: #404140;
}

.site-footer::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(81, 65, 55, 0.38), transparent 45%),
    linear-gradient(285deg, rgba(90, 101, 99, 0.22), transparent 52%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.008) 0 1px, transparent 1px 4px);
}

.footer-grid-canvas,
.footer-ambient {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.footer-grid-canvas {
  z-index: 1;
}

.footer-ambient {
  z-index: 0;
  opacity: 0.54;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(226, 230, 221, 0.13) 0, rgba(226, 230, 221, 0.045) 15%, transparent 34%),
    radial-gradient(ellipse at 17% 72%, rgba(153, 104, 76, 0.2), transparent 38%),
    radial-gradient(ellipse at 84% 28%, rgba(115, 132, 128, 0.16), transparent 40%);
  transition: opacity 250ms ease;
}

.site-footer:hover .footer-ambient {
  opacity: 0.82;
}

.footer-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: auto minmax(300px, 1fr) auto;
  width: 100%;
  min-height: clamp(680px, 80svh, 820px);
  padding: 18px 18px 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(180px, 1fr) minmax(300px, 360px);
  gap: 48px;
}

.site-footer .footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 14px;
  line-height: 1.25;
  text-transform: uppercase;
}

.site-footer .footer-column a {
  position: relative;
  padding: 7px 0;
  color: rgba(244, 243, 239, 0.88);
  transition: color 180ms ease, transform 180ms ease;
}

.site-footer .footer-column a::after {
  position: absolute;
  right: -18px;
  content: "→";
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-footer .footer-column a:hover,
.site-footer .footer-column a:focus-visible {
  color: #ff784d;
  transform: translateX(5px);
}

.site-footer .footer-column a:hover::after,
.site-footer .footer-column a:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}

.footer-heading,
.footer-newsletter > label {
  display: block;
  margin: 0 0 16px;
  color: #f4f3ef;
  font-family: "Helvetica Now Text", Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: none;
}

.footer-newsletter {
  width: 100%;
}

.footer-signup {
  display: grid;
  grid-template-columns: 1fr 110px;
  width: 100%;
  height: 52px;
}

.footer-signup input,
.footer-signup button {
  min-width: 0;
  border: 0;
  border-radius: 0;
  color: #f4f3ef;
  background: rgba(255, 255, 255, 0.13);
  outline: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-signup input {
  padding: 0 17px;
  font-size: 14px;
}

.footer-signup input::placeholder {
  color: rgba(255, 255, 255, 0.63);
}

.footer-signup button {
  cursor: pointer;
  font-size: 14px;
  transition: color 180ms ease, background 180ms ease;
}

.footer-signup button:hover,
.footer-signup button:focus-visible {
  color: #1f201f;
  background: #ff784d;
}

.footer-signup input:focus-visible {
  outline-color: #ff784d;
}

.footer-form-status {
  min-height: 18px;
  padding-top: 8px;
  color: rgba(244, 243, 239, 0.7);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 10px;
}

.site-footer .footer-logo {
  align-self: center;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  color: #f7f6f2;
  transition: color 220ms ease, transform 350ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.site-footer .footer-logo:hover,
.site-footer .footer-logo:focus-visible {
  color: #ff784d;
  transform: rotate(3deg) scale(1.04);
}

.footer-logo-mark {
  display: block;
  width: 108px;
  height: 112px;
}

.site-footer .footer-logo .artegall-logo {
  display: block;
  width: 108px;
  height: 112px;
  transform: none;
}

.site-footer .footer-logo .artegall-logo i:nth-child(1),
.site-footer .footer-logo .artegall-logo i:nth-child(2) {
  top: 5px;
  width: 17px;
  height: 100px;
}

.site-footer .footer-logo .artegall-logo i:nth-child(1) {
  left: 25px;
}

.site-footer .footer-logo .artegall-logo i:nth-child(2) {
  right: 25px;
}

.site-footer .footer-logo .artegall-logo i:nth-child(3) {
  top: 60px;
  left: 34px;
  width: 40px;
  height: 12px;
}

.site-footer .footer-logo .brand-word {
  display: none;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: end;
  gap: 28px;
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 12px;
  line-height: 1.2;
}

.site-footer .footer-bottom small,
.site-footer .footer-bottom a,
.site-footer .footer-bottom time {
  align-self: auto;
  color: rgba(244, 243, 239, 0.82);
  font-size: inherit;
}

.footer-bottom a {
  justify-self: center;
  transition: color 180ms ease;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #ff784d;
}

.footer-time {
  min-width: 42px;
  text-align: right;
}

@media (max-width: 900px) {
  .footer-content {
    grid-template-rows: auto minmax(210px, 1fr) auto;
    min-height: 780px;
    padding: 26px 18px 18px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px 22px;
  }

  .footer-newsletter {
    grid-column: 1 / -1;
  }

  .footer-signup {
    max-width: 440px;
  }

  .site-footer .footer-logo {
    position: static;
    width: 120px;
    height: 120px;
  }

  .footer-logo-mark,
  .site-footer .footer-logo .artegall-logo {
    width: 78px;
    height: 82px;
  }

  .site-footer .footer-logo .artegall-logo i:nth-child(1),
  .site-footer .footer-logo .artegall-logo i:nth-child(2) {
    top: 3px;
    width: 12px;
    height: 74px;
  }

  .site-footer .footer-logo .artegall-logo i:nth-child(1) {
    left: 18px;
  }

  .site-footer .footer-logo .artegall-logo i:nth-child(2) {
    right: 18px;
  }

  .site-footer .footer-logo .artegall-logo i:nth-child(3) {
    top: 44px;
    left: 24px;
    width: 30px;
    height: 9px;
  }

  .footer-bottom {
    grid-template-columns: 1fr 1fr;
    gap: 15px 20px;
    font-size: 10px;
  }

  .footer-bottom a {
    justify-self: start;
  }
}

@media (max-width: 520px) {
  .footer-content {
    min-height: 800px;
  }

  .site-footer .footer-column {
    font-size: 11px;
  }

  .footer-heading,
  .footer-newsletter > label {
    margin-bottom: 11px;
    font-size: 13px;
  }

  .footer-signup {
    grid-template-columns: minmax(0, 1fr) 92px;
    height: 48px;
  }

  .footer-signup input,
  .footer-signup button {
    font-size: 12px;
  }

  .footer-bottom {
    font-size: 9px;
  }
}

/* Right-side navigation drawer */
.menu-panel {
  position: fixed;
  z-index: 100;
  inset: 0 0 0 auto;
  display: block;
  align-content: start;
  width: clamp(420px, 34vw, 680px);
  max-width: 100vw;
  min-width: 0;
  height: 100svh;
  min-height: 0;
  padding: clamp(78px, 7svh, 96px) clamp(30px, 3vw, 52px) 40px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  color: #464648;
  background: #ded6ca;
  opacity: 0;
  visibility: hidden;
  box-shadow: -24px 0 64px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 480ms cubic-bezier(0.4, 0, 0.2, 1), opacity 260ms ease, visibility 0s linear 480ms;
}

.menu-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition-delay: 0s;
}

.menu-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: clamp(26px, 3.5svh, 40px);
  margin-top: 0;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 360ms ease 150ms, transform 500ms cubic-bezier(0.22, 0.61, 0.36, 1) 150ms;
}

.menu-panel.open .menu-links {
  opacity: 1;
  transform: translateY(0);
}

.menu-panel .menu-links a,
.menu-panel.open .menu-links a {
  border: 0;
  padding: 0;
  opacity: 1;
  transform: none;
  transition: color 160ms ease, transform 220ms ease;
}

.menu-panel .menu-main-link {
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(22px, 1.45vw, 27px);
  font-weight: 400;
  line-height: 1.08;
}

.menu-products {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(18px, 2.4svh, 26px);
}

.menu-product-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(14px, 2svh, 20px);
  padding-left: clamp(16px, 1.8vw, 28px);
}

.menu-panel .menu-product-links a {
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(18px, 1.15vw, 22px);
  font-weight: 400;
  line-height: 1.08;
}

.menu-panel .menu-links a:hover,
.menu-panel .menu-links a:focus-visible {
  color: var(--accent);
  transform: translateX(6px);
}

.menu-button[aria-expanded="true"] {
  position: fixed;
  top: 26px;
  right: 30px;
  width: 50px;
  height: 50px;
  padding: 0;
  color: #464648;
  outline: none;
}

.menu-button[aria-expanded="true"]:focus-visible {
  color: var(--accent);
}

.menu-button[aria-expanded="true"] span {
  top: 24px !important;
  left: 5px;
  width: 40px;
  height: 2px;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

body.menu-open .menu-scrim {
  opacity: 1;
  background: rgba(2, 4, 5, 0.55);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

@media (max-width: 600px) {
  .menu-panel {
    width: min(88vw, 420px);
    padding: 76px 24px 30px;
  }

  .menu-links {
    gap: 24px;
  }

  .menu-product-links {
    gap: 14px;
    padding-left: 18px;
  }

  .menu-button[aria-expanded="true"] {
    top: 18px;
    right: 16px;
    width: 42px;
    height: 42px;
  }

  .menu-button[aria-expanded="true"] span {
    top: 20px !important;
    left: 4px;
    width: 34px;
    height: 2px;
  }
}

/* Legible navigation over photographic heroes */
.landing-header,
.product-header {
  color: #f6f5f1;
  background: transparent;
}

.landing-header::before,
.product-header::before {
  position: absolute;
  z-index: 0;
  inset: 0 0 -44px;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(3, 5, 5, 0.84) 0%, rgba(3, 5, 5, 0.58) 52%, rgba(3, 5, 5, 0) 100%);
  -webkit-backdrop-filter: blur(12px) saturate(0.82);
  backdrop-filter: blur(12px) saturate(0.82);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 58%, rgba(0, 0, 0, 0.72) 76%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 58%, rgba(0, 0, 0, 0.72) 76%, transparent 100%);
}

.landing-header .brand-link,
.landing-header .desktop-nav,
.landing-header .menu-button,
.product-header .brand-link,
.product-header .desktop-nav,
.product-header .menu-button {
  position: relative;
  z-index: 1;
}

.desktop-nav {
  gap: clamp(24px, 2vw, 36px);
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(12px, 0.9vw, 15px);
  font-weight: 400;
  line-height: 1;
}

.desktop-nav .join-link {
  padding: 8px 12px;
}

@media (max-width: 900px) {
  .landing-header::before,
  .product-header::before {
    bottom: -30px;
  }
}

/* Artegall two-pillar identity */
.brand-link .artegall-logo {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 28px;
  height: 52px;
  transform: none;
}

.brand-link .artegall-logo i {
  position: absolute;
  top: 0;
  display: block;
  width: 42%;
  height: 100%;
  margin: 0;
  background: currentColor;
  transform: none;
}

.brand-link .artegall-logo i:nth-child(1) {
  left: 0;
  clip-path: polygon(0 14%, 100% 0, 100% 100%, 0 100%);
}

.brand-link .artegall-logo i:nth-child(2) {
  right: 0;
  clip-path: polygon(0 0, 100% 14%, 100% 100%, 0 100%);
}

.footer-logo-mark {
  width: 70px;
  height: 136px;
}

.site-footer .footer-logo .artegall-logo {
  position: relative;
  display: block;
  width: 70px;
  height: 136px;
  transform: none;
}

.site-footer .footer-logo .artegall-logo i:nth-child(1),
.site-footer .footer-logo .artegall-logo i:nth-child(2) {
  top: 0;
  width: 42%;
  height: 100%;
  margin: 0;
  background: currentColor;
  transform: none;
}

.site-footer .footer-logo .artegall-logo i:nth-child(1) {
  left: 0;
  right: auto;
  clip-path: polygon(0 14%, 100% 0, 100% 100%, 0 100%);
}

.site-footer .footer-logo .artegall-logo i:nth-child(2) {
  right: 0;
  left: auto;
  clip-path: polygon(0 0, 100% 14%, 100% 100%, 0 100%);
}

@media (max-width: 900px) {
  .brand-link .artegall-logo {
    width: 18px;
    height: 36px;
  }

  .footer-logo-mark,
  .site-footer .footer-logo .artegall-logo {
    width: 50px;
    height: 98px;
  }
}

body.menu-open .menu-button {
  z-index: 102;
}

/* Landing statement typography */
@media (min-width: 901px) {
  .intro-red h2,
  .intro-red h3 {
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 400;
  }

  .intro-red h2 {
    width: 62%;
    padding-top: clamp(44px, 5.5svh, 70px);
    font-size: clamp(54px, 4vw, 78px);
    line-height: 1.03;
    text-align: center;
  }

  .intro-red h3 {
    width: 44%;
    max-width: 780px;
    margin-top: clamp(64px, 10svh, 110px);
    font-size: clamp(34px, 2.4vw, 46px);
    line-height: 1.02;
  }

  .intro-red p {
    position: absolute;
    bottom: clamp(140px, 17svh, 170px);
    width: 38%;
    max-width: 760px;
    margin-top: 0;
    font-family: Helvetica, Arial, sans-serif;
    font-size: clamp(18px, 1.35vw, 24px);
    line-height: 1.24;
  }

  .intro-red p + p {
    bottom: clamp(40px, 6svh, 62px);
    width: 44%;
    max-width: 880px;
    margin-top: 0;
  }
}
