/* ===========================================================
   ROTIC ALUMINIUM EXTRUSION: Shared Stylesheet
   =========================================================== */

:root {
  --graphite: #0a0e1a;
  --graphite-soft: #121829;
  --silver: #aab4c8;
  --raw: #5e6b85;
  --ember: #2f6fed;
  --ember-dim: #1e4fb8;
  --paper: #f5f7fb;
  --paper-dim: #e8ecf4;
  --line: rgba(245, 247, 251, 0.12);
  --line-dark: rgba(10, 14, 26, 0.12);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--graphite);
  color: var(--paper);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}
::selection {
  background: var(--ember);
  color: var(--graphite);
}

h1,
h2,
h3,
.display {
  font-family: "Big Shoulders Display", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.92;
}
.mono {
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
  cursor: pointer;
}
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ---------- NAV ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border-bottom: 0.5px solid grey;
  background-color: #0a0e1a;
  margin-top: 0;
}

header a img {
  width: 150px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #4f8bff 0%, #2f6fed 45%, #0a3aad 100%);
  clip-path: polygon(50% 0%, 100% 38%, 78% 100%, 50% 65%, 22% 100%, 0% 38%);
}
.logo-text {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--paper);
}
nav ul {
  display: flex;
  gap: 36px;
  list-style: none;
}
nav a {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper);
  position: relative;
  padding-bottom: 3px;
}
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--paper);
  transition: width 0.3s ease;
}
nav a:hover::after,
nav a.active::after {
  width: 100%;
}
nav a.active {
  color: var(--paper);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  position: relative;
  z-index: 300;
}
.nav-toggle-bars {
  width: 24px;
  height: 16px;
  position: relative;
  display: block;
}
.nav-toggle-bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--paper);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    top 0.3s ease;
}
.nav-toggle-bars span:nth-child(1) {
  top: 0;
}
.nav-toggle-bars span:nth-child(2) {
  top: 7px;
}
.nav-toggle-bars span:nth-child(3) {
  top: 14px;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--graphite);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    visibility 0s linear 0.35s;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    visibility 0s linear 0s;
}
.mobile-menu ul {
  list-style: none;
}
.mobile-menu li {
  border-top: 1px solid var(--line);
}
.mobile-menu li:last-child {
  border-bottom: 1px solid var(--line);
}
.mobile-menu a {
  display: block;
  padding: 24px 4px;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 42px;
  text-transform: uppercase;
  color: var(--paper);
  font-weight: 600;
}
.mobile-menu a:active,
.mobile-menu a.active {
  color: var(--ember);
}
.mobile-menu-foot {
  margin-top: 40px;
  color: var(--raw);
  font-size: 11px;
}

/* ---------- PAGE HEADER (sub-pages) ---------- */
.page-header {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding-top: 140px;
  padding-bottom: 80px;
}
.page-header .eyebrow {
  margin-bottom: 24px;
}
.page-header h1 {
  font-size: clamp(44px, 8vw, 100px);
  font-weight: 700;
  color: var(--paper);
}
.page-header p {
  margin-top: 24px;
  max-width: 580px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--silver);
}

/* ---------- HERO (Home only) ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero .wrap h1 .extrusion {
  color: var(--ember);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-image: url("./images/AdobeStock_209216537.jpeg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.2) blur(0) opacity(1);
  transform: scale(1.08);
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 4px rgba(47, 111, 237, 0.2);
}
.hero-eyebrow span {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--silver);
}
.hero h1 {
  font-size: clamp(48px, 8.6vw, 124px);
  font-weight: 700;
  color: var(--paper);
}
.hero h1 em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--paper);
}
.hero-sub {
  margin-top: 32px;
  max-width: 600px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--silver);
  font-weight: 400;
}

.die-line {
  margin-top: 56px;
  width: 100%;
  height: 1px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.die-line .billet {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  margin-top: -1px;
  background: linear-gradient(90deg, var(--ember-dim), var(--ember));
  animation: extrude 1.8s cubic-bezier(0.16, 0.84, 0.44, 1) 0.3s forwards;
}
@keyframes extrude {
  to {
    width: 100%;
  }
}

.hero-meta {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--silver);
  text-transform: uppercase;
}

/* ---------- SECTION SHELL ---------- */
section {
  position: relative;
}
.section-pad {
  padding: 120px 0;
}
.section-pad-sm {
  padding: 80px 0;
}
.rule {
  height: 1px;
  background: var(--line);
}
.eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ember);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--ember);
}

/* ---------- STORY (Who We Are) ---------- */
.story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.story::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-image: url("./images/story\ main.jpg");
  background-size: cover;
  background-position: center;
  filter: blur(3px) opacity(0.9) brightness(0.4);
  transform: scale(1.08);
}
.story h2 {
  font-size: clamp(36px, 4.2vw, 56px);
  color: var(--paper);
  font-weight: 600;
}
.story-body p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--silver);
  margin-bottom: 20px;
  max-width: 540px;
}
.story-body p:last-child {
  margin-bottom: 0;
}
.story-body strong {
  color: var(--paper);
  font-weight: 600;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ember);
  border-bottom: 1px solid var(--ember-dim);
  padding-bottom: 4px;
}
.text-link:hover {
  color: var(--paper);
  border-color: var(--paper);
}

/* ---------- MISSION / VISION ---------- */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.mv-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 64px 56px;
  border-right: 1px solid var(--line);
}
.mv-card:last-child {
  border-right: none;
}
.mv-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--ember);
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  display: block;
}

.mv-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1rem;
}

.mv-image img {
  height: 20rem;
  width: 25rem;
}

.mv-card h3 {
  font-size: clamp(26px, 3vw, 34px);
  color: var(--paper);
  font-weight: 600;
  text-transform: none;
  line-height: 1.25;
  margin-bottom: 24px;
  max-width: 420px;
}

/* ---------- STATS ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  padding-left: 2rem;
}
.stat {
  padding: 44px 32px;
  border-right: 1px solid var(--line);
}
.stat:last-child {
  border-right: none;
}
.stat .num {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 700;
  color: var(--ember);
  line-height: 1;
}
.stat .label {
  margin-top: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--raw);
  text-transform: uppercase;
  line-height: 1.5;
}

/* ---------- VALUES ---------- */
.values-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  flex-wrap: wrap;
  gap: 24px;
}
.values-head h2 {
  font-size: clamp(36px, 4.2vw, 56px);
  color: var(--paper);
  font-weight: 600;
  max-width: 560px;
}
.values-head p {
  color: var(--raw);
  max-width: 340px;
  font-size: 15px;
  line-height: 1.6;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.value-card {
  display: flex;
  flex-direction: column;
  background: var(--graphite);
  padding: 44px 36px;
  transition: background 0.35s ease;
}
.value-card img {
  height: 70px;
  width: 70px;
  align-self: flex-start;
  margin-bottom: 1rem;
  margin-top: -2rem;
}
.value-card:hover {
  background: var(--graphite-soft);
}
.value-code {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--ember);
  letter-spacing: 0.08em;
  margin-bottom: 28px;
  display: block;
}
.value-card h3 {
  font-size: 24px;
  color: var(--paper);
  font-weight: 600;
  margin-bottom: 14px;
  text-transform: none;
}
.value-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--silver);
}

/* ---------- WHAT SETS US APART ---------- */
.apart {
  background: var(--paper);
  color: var(--graphite);
}
.apart .eyebrow {
  color: var(--ember-dim);
}
.apart .eyebrow::before {
  background: var(--ember-dim);
}
.apart h2 {
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 600;
  max-width: 620px;
  margin-bottom: 72px;
}
.apart-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.4fr;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid rgba(10, 14, 26, 0.12);
}
.apart-row:last-child {
  border-bottom: 1px solid rgba(10, 14, 26, 0.12);
}
.apart-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: var(--ember-dim);
}
.apart-row h3 {
  font-size: 22px;
  font-weight: 600;
  text-transform: none;
  color: var(--graphite);
}
.apart-row p {
  font-size: 15px;
  line-height: 1.65;
  color: #475066;
}

/* ---------- LOCATION ---------- */
.facility {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.facility-info {
  padding: 100px 64px 100px 0;
}
.facility-visual {
  margin-top: 2rem;
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 40px;
  cursor: pointer;
  margin-right: 2rem;
  margin-left: 2rem;
}
.facility-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-image: url("./images/IMG_4254.jpeg");
  background-size: cover;
  background-position: center;
  filter: blur(0px) opacity(1) brightness(0.9);
  transform: scale(1.08);
}
.facility-visual .coord {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: white;
  letter-spacing: 0.08em;
}
.facility-info h2 {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--paper);
  font-weight: 600;
  margin-bottom: 24px;
  max-width: 480px;
}
.facility-info p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--silver);
  margin-bottom: 0;
  max-width: 460px;
}

/* ---------- CAREERS ---------- */
.careers-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}
.careers-top h2 {
  font-size: clamp(34px, 4.4vw, 58px);
  color: var(--paper);
  font-weight: 600;
}
.careers-top p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--silver);
}
.careers-top .btn {
  margin-top: 8px;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  margin-bottom: 80px;
}
.pillar {
  background: var(--graphite);
  padding: 36px 28px;
}
.pillar .pillar-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--ember);
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  display: block;
}
.pillar h3 {
  font-size: 19px;
  color: var(--paper);
  font-weight: 600;
  text-transform: none;
  margin-bottom: 10px;
  line-height: 1.25;
}
.pillar p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--silver);
}

.roles-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.roles-head h3 {
  font-family: "JetBrains Mono", monospace;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--raw);
}
.role-list {
  list-style: none;
  border-top: 1px solid var(--line);
}
.role-item {
  border-bottom: 1px solid var(--line);
}
.role-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  gap: 24px;
}
.role-item summary::-webkit-details-marker {
  display: none;
}
.role-name {
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 600;
  color: var(--paper);
  font-family: "Big Shoulders Display", sans-serif;
  text-transform: uppercase;
}
.role-meta-row {
  display: flex;
  align-items: center;
  gap: 20px;
}
.role-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--raw);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.role-toggle {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.role-toggle::before,
.role-toggle::after {
  content: "";
  position: absolute;
  background: var(--paper);
}
.role-toggle::before {
  width: 10px;
  height: 1px;
}
.role-toggle::after {
  width: 1px;
  height: 10px;
  transition: transform 0.25s ease;
}
details[open] .role-toggle::after {
  transform: rotate(90deg);
}
.role-body {
  padding: 0 0 36px;
  max-width: 760px;
}
.role-body h4 {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--ember);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 22px 0 12px;
}
.role-body h4:first-child {
  margin-top: 0;
}
.role-body p,
.role-body li {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--silver);
}
.role-body ul {
  padding-left: 18px;
  margin-bottom: 4px;
}
.role-body li {
  margin-bottom: 6px;
}
.role-apply {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ember);
  border-bottom: 1px solid var(--ember-dim);
  padding-bottom: 3px;
}
.role-apply:hover {
  color: var(--paper);
  border-color: var(--paper);
}

/* ---------- CONTACT ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}
.contact-info h2 {
  font-size: clamp(34px, 4vw, 52px);
  color: var(--paper);
  font-weight: 600;
  margin-bottom: 20px;
}
.contact-info p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--silver);
  margin-bottom: 36px;
  max-width: 420px;
}
.contact-detail {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.contact-detail:last-child {
  border-bottom: 1px solid var(--line);
}
.contact-detail .k {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--raw);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.contact-detail .v {
  font-size: 15px;
  color: var(--paper);
  font-weight: 500;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field {
  margin-bottom: 20px;
}
.field.full {
  grid-column: 1 / -1;
}
.field label {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--raw);
  margin-bottom: 10px;
}
.field label .req {
  color: var(--ember);
}
.field input,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--paper);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  padding: 10px 2px;
  transition: border-color 0.25s ease;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--raw);
  opacity: 0.6;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--ember);
  outline: none;
}
.field textarea {
  resize: vertical;
  min-height: 90px;
}
.submit-btn {
  margin-top: 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 18px 36px;
  background: var(--ember);
  border: 1px solid var(--ember);
  color: var(--graphite);
  font-weight: 500;
  transition: all 0.3s ease;
}
.submit-btn:hover {
  background: var(--paper);
  border-color: var(--paper);
}

/* ---------- CTA ---------- */
.cta {
  padding: 140px 0;
  text-align: center;
  background:
    radial-gradient(ellipse 700px 400px at 50% 100%, transparent 65%),
    var(--graphite);
}
.cta .eyebrow {
  justify-content: center;
}
.cta .eyebrow::before {
  display: none;
}
.cta h2 {
  font-size: clamp(40px, 7vw, 84px);
  color: var(--paper);
  font-weight: 700;
  max-width: 880px;
  margin: 0 auto 40px;
}
.cta-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 18px 32px;
  border: 1px solid var(--paper);
  display: inline-block;
  transition: all 0.3s ease;
  border-radius: 8px;
}
.btn-solid {
  background: var(--ember);
  border-color: var(--ember);
  color: var(--graphite);
  font-weight: 500;
}
.btn-solid:hover {
  background: var(--paper);
  border-color: var(--paper);
}
.btn-outline:hover {
  background: var(--paper);
  color: var(--graphite);
}

/* ---------- FOOTER ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 48px 0;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  list-style: none;
}
.footer-links a {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--silver);
}
.footer-links a:hover {
  color: var(--ember);
}
.footer-row .mono {
  font-size: 11px;
  color: var(--raw);
}

/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 880px) {
  nav ul {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .story {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mv-grid {
    grid-template-columns: 1fr;
  }
  .mv-card {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .mv-card:last-child {
    border-bottom: none;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat:nth-child(2n) {
    border-right: none;
  }
  .value-grid {
    grid-template-columns: 1fr;
  }
  .apart-row {
    grid-template-columns: 50px 1fr;
  }
  .apart-row p {
    grid-column: 2 / 3;
  }
  .facility {
    grid-template-columns: 1fr;
  }
  .facility-info {
    padding: 64px 0;
  }
  .facility-visual {
    min-height: 280px;
  }
  .careers-top {
    grid-template-columns: 1fr;
  }
  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .role-meta-row {
    flex-direction: row-reverse;
  }
  .wrap {
    padding: 0 22px;
  }

  .mv-image {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
}
