:root {
  --ink: #0d0d0f;
  --ice: #9ec9e8;
  --bolt: #b07bff;
  --paper: #111114;
  --card: #1a1a1f;
  --mute: #9aa3ad;
  --line: #2c2c34;
  --cream: #f0d8b8;
  --glow: rgba(158, 201, 232, 0.35);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-rounded, "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--paper);
  color: #e8eef3;
  line-height: 1.55;
}
a { color: var(--ice); }
img { max-width: 100%; height: auto; display: block; }

/* ——— Hero with overlay tagline ——— */
.hero {
  position: relative;
  background: #000;
  margin: 0;
  overflow: hidden;
}
.hero-art {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: min(52vh, 420px);
  min-height: 200px;
  object-position: center 35%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 2.5rem 1.25rem 1.75rem;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.55) 45%,
    rgba(0, 0, 0, 0.15) 75%,
    transparent 100%
  );
}
.hero-overlay .tag {
  margin: 0;
  font-style: italic;
  color: var(--cream);
  font-size: 1.02rem;
  letter-spacing: .04em;
}
.hero-overlay .call {
  margin: .45rem 0 0;
  color: var(--ice);
  font-weight: 700;
  font-size: clamp(1.2rem, 3.5vw, 1.7rem);
  letter-spacing: .05em;
}
.hero-overlay .call::before,
.hero-overlay .call::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  margin: .45rem auto;
  background: var(--bolt);
  border-radius: 1px;
}
.hero-overlay .sub {
  margin: .35rem 0 0;
  color: #c9b3f0;
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .03em;
}
.slim-hero .hero-art {
  max-height: 160px;
  min-height: 100px;
  object-position: center top;
}
.slim-hero .hero-overlay {
  padding: 1rem 1rem .9rem;
  background: linear-gradient(to top, rgba(0,0,0,.75), transparent 70%);
}
.slim-hero .hero-overlay .call { font-size: 1.1rem; }
.slim-hero .hero-overlay .tag,
.slim-hero .hero-overlay .sub { display: none; }

/* ——— Sticky nav ——— */
.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .65rem 1.05rem;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  padding: .7rem 1rem;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(158, 201, 232, 0.08), 0 4px 18px rgba(0, 0, 0, 0.35);
  position: sticky;
  top: 0;
  z-index: 20;
}
.site-nav a {
  color: var(--ice);
  text-decoration: none;
  text-transform: uppercase;
  font-size: .8rem;
  letter-spacing: .05em;
  font-weight: 600;
  transition: color .15s ease, text-shadow .15s ease;
}
.site-nav a:hover {
  color: #fff;
  text-shadow: 0 0 12px var(--glow);
}
.site-nav a[aria-current="page"] {
  color: #fff;
  text-shadow: 0 0 14px var(--glow);
  border-bottom: 2px solid var(--bolt);
  padding-bottom: .1rem;
}
@media (max-width: 520px) {
  .site-nav { gap: .4rem .65rem; padding: .6rem .55rem; }
  .site-nav a { font-size: .7rem; }
}

main { max-width: 1040px; margin: 0 auto; padding: 1.5rem 1.1rem 2.5rem; }
.lead {
  font-size: 1.1rem;
  text-align: center;
  color: var(--mute);
  margin: 0 0 1.6rem;
}

/* ——— Lane bubbles ——— */
.lanes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem .6rem;
  margin: 0 0 2rem;
  justify-items: center;
}
@media (min-width: 720px) {
  .lanes { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.lane {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
  width: min(42vw, 148px);
  text-align: center;
  text-decoration: none;
  color: var(--ice);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 700;
  font-size: .76rem;
  transition: transform .2s ease, color .15s ease;
}
.lane picture,
.lane img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
}
.lane img {
  background: #0a0a0c;
  box-shadow: 0 0 0 2px #2a2a32, 0 0 0 0 transparent;
  transition: box-shadow .22s ease, transform .22s ease;
}
.lane:hover {
  color: #fff;
  transform: translateY(-4px);
}
.lane:hover img {
  box-shadow: 0 0 0 3px var(--ice), 0 8px 24px var(--glow);
  transform: translateY(-2px);
}

/* ——— Work sections ——— */
.work {
  margin: 1.5rem 0;
  padding: 1.35rem 1.2rem 1.45rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.work h2 {
  margin: 0 0 .55rem;
  color: var(--ice);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 1.05rem;
}
.work p { margin: 0; color: #c5ced6; }
.work-more { margin-top: .75rem !important; }
.work-more a {
  color: var(--bolt);
  text-decoration: none;
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .03em;
}
.work-more a:hover { color: #fff; text-shadow: 0 0 12px rgba(176, 123, 255, 0.45); }

/* Meet block — once */
.meet {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin: 2rem 0;
  padding: 1.35rem 1.3rem;
  background: linear-gradient(135deg, #1a1a22 0%, #15151a 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 0 0 1px rgba(176, 123, 255, 0.08);
}
.meet picture,
.meet img {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
}
.meet img {
  object-fit: cover;
  border: 3px solid #3a3a44;
  box-shadow: 0 0 20px rgba(158, 201, 232, 0.15);
}
.meet h2 {
  margin: 0 0 .35rem;
  color: var(--cream);
  font-size: 1.05rem;
  letter-spacing: .04em;
}
.meet p { margin: 0; color: var(--mute); font-size: .95rem; }
.meet strong { color: #e8eef3; }
@media (max-width: 480px) {
  .meet { flex-direction: column; text-align: center; }
}

/* Contact CTA strip */
.cta {
  margin: 2.2rem 0 1.5rem;
  padding: 1.6rem 1.3rem;
  text-align: center;
  background: linear-gradient(160deg, #16161c 0%, #1c1528 55%, #121218 100%);
  border: 1px solid #3a2f55;
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(176, 123, 255, 0.12);
}
.cta h2 {
  margin: 0 0 .4rem;
  color: var(--ice);
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: 1.1rem;
}
.cta p { margin: .4rem 0; color: var(--mute); }
.cta .cta-btn {
  display: inline-block;
  margin: .85rem 0 .5rem;
  padding: .7rem 1.4rem;
  background: transparent;
  border: 1px solid var(--ice);
  border-radius: 10px;
  color: var(--ice);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .04em;
  transition: background .15s, color .15s, box-shadow .15s;
}
.cta .cta-btn:hover {
  background: var(--ice);
  color: #0d0d0f;
  box-shadow: 0 0 24px var(--glow);
}
.cta .note { font-size: .88rem; }

/* Tech gate — compact */
.tech-slim {
  margin: 1.8rem 0 0;
  padding: 1.1rem 1.15rem 1.2rem;
  background: #14110c;
  border: 1px solid #3a2a12;
  border-radius: 12px;
  max-width: 420px;
}
.tech-slim .tech-lock {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin: 0 0 .55rem;
}
.tech-slim .tech-lock img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.tech-slim h2 {
  margin: 0;
  color: var(--cream);
  font-size: .92rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.tech-slim > p {
  margin: 0 0 .7rem;
  color: var(--mute);
  font-size: .85rem;
}
.tech-slim label {
  display: block;
  color: var(--mute);
  font-size: .8rem;
  margin-bottom: .2rem;
}
.tech-slim input {
  width: min(100%, 260px);
  padding: .5rem .65rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0c0c0e;
  color: #e8eef3;
  font-family: inherit;
}
.tech-slim button {
  margin-top: .55rem;
  padding: .45rem .9rem;
  border: 1px solid var(--cream);
  background: transparent;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 700;
  font-size: .78rem;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
}
.tech-slim button:hover { background: rgba(240, 216, 184, 0.1); }
.tech-fail {
  color: #e8a070;
  font-size: .88rem;
  margin: .55rem 0 0;
  font-style: italic;
}

/* Departments */
.dept-hero {
  text-align: center;
  margin: 0 0 1.6rem;
}
.dept-hero picture,
.dept-hero img {
  margin: 0 auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
}
.dept-hero img {
  object-fit: cover;
  border: 3px solid #3a3a44;
  box-shadow: 0 0 28px rgba(158, 201, 232, 0.2);
}
.dept-hero h1 {
  margin: .9rem 0 .3rem;
  color: var(--ice);
  font-size: 1.35rem;
  letter-spacing: .04em;
}
.dept-hero .subline { color: var(--mute); margin: 0; }
.roles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: .75rem;
}
.role-chip {
  background: #121216;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .85rem 1rem;
  text-align: left;
  transition: border-color .15s, box-shadow .15s;
}
.role-chip:hover {
  border-color: #3a3a55;
  box-shadow: 0 0 16px rgba(176, 123, 255, 0.1);
}
.role-chip h3 {
  margin: 0 0 .15rem;
  color: var(--ice);
  font-size: .95rem;
}
.role-chip .role { margin: 0; color: var(--mute); font-size: .82rem; }
.role-chip .name {
  margin: .35rem 0 0;
  font-weight: 700;
  font-size: .88rem;
  color: var(--cream);
}
.role-chip-photo {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.role-chip-photo picture,
.role-chip-photo img {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
}
.role-chip-photo img {
  object-fit: cover;
  border: 2px solid #3a3a44;
  box-shadow: 0 0 14px rgba(158, 201, 232, 0.18);
}
.role-chip-photo .name {
  color: #f0d8b8;
}

/* Tech room servers */
.servers { display: grid; gap: .9rem; }
.server {
  background: #121216;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.15rem 1.2rem;
}
.server h3 { margin: 0 0 .3rem; color: var(--ice); }
.server .host {
  font-family: ui-monospace, Consolas, monospace;
  color: var(--cream);
  word-break: break-all;
  font-size: 1.05rem;
  margin: .5rem 0;
}
.server button.copy {
  margin-top: .35rem;
  padding: .4rem .85rem;
  border: 1px solid var(--ice);
  background: transparent;
  color: var(--ice);
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
}
.server button.copy:hover {
  background: rgba(158, 201, 232, 0.12);
}
.legal h2 { color: var(--ice); margin-top: 0; }
.legal p { color: #c5ced6; }

footer.site-foot {
  background: #000;
  color: var(--mute);
  text-align: center;
  padding: 1.4rem 1rem 2rem;
  font-size: .88rem;
  border-top: 1px solid var(--line);
}
footer.site-foot a { color: var(--ice); text-decoration: none; }
footer.site-foot a:hover { text-decoration: underline; }
footer.site-foot .foot-links {
  margin-top: .65rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem 1rem;
}
footer.site-foot .foot-links a {
  color: var(--mute);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
footer.site-foot .foot-links a:hover { color: var(--ice); }

.page-title {
  color: var(--ice);
  margin: 0 0 .6rem;
  letter-spacing: .04em;
}

/* ——— Locks lane: sterile tile with soft ice/bolt halo (still mismatched, less eye-stab) ——— */
.lane.lane-corp {
  color: #8a9aab;
}
.lane.lane-corp:hover {
  color: #c5d4e0;
  transform: translateY(-4px);
}
.lane-corp-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  background:
    radial-gradient(ellipse at 50% 40%, #ffffff 0%, #f0f3f7 55%, #e4eaf0 100%);
  border: 1px solid rgba(158, 201, 232, 0.45);
  box-shadow:
    0 0 0 1px rgba(176, 123, 255, 0.18),
    0 0 22px rgba(158, 201, 232, 0.28),
    0 0 48px rgba(176, 123, 255, 0.14),
    inset 0 0 24px rgba(158, 201, 232, 0.08);
  transition: border-color .2s ease, background .2s ease, box-shadow .22s ease;
}
.lane-corp-mark {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: #2c3a4a;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(158, 201, 232, 0.35);
}
.lane.lane-corp:hover .lane-corp-tile {
  background:
    radial-gradient(ellipse at 50% 40%, #ffffff 0%, #f4f7fb 50%, #e8eef5 100%);
  border-color: rgba(158, 201, 232, 0.7);
  box-shadow:
    0 0 0 2px rgba(158, 201, 232, 0.35),
    0 0 28px rgba(158, 201, 232, 0.4),
    0 0 56px rgba(176, 123, 255, 0.22),
    inset 0 0 28px rgba(158, 201, 232, 0.12);
  transform: none;
}

/* ——— Hard-cut portal band (shop → sterile) ——— */
.locks-portal {
  width: 100%;
  margin: 0;
  padding: 1.15rem 1.25rem 1.25rem;
  background:
    linear-gradient(180deg, rgba(158, 201, 232, 0.12) 0%, transparent 18%),
    linear-gradient(0deg, rgba(176, 123, 255, 0.08) 0%, transparent 16%),
    #f4f5f7;
  border-top: 1px solid rgba(158, 201, 232, 0.35);
  border-bottom: 1px solid rgba(176, 123, 255, 0.22);
  box-shadow:
    inset 0 12px 28px rgba(158, 201, 232, 0.08),
    inset 0 -12px 28px rgba(176, 123, 255, 0.06);
  color: #1a2330;
  text-align: center;
}
.locks-portal-inner {
  max-width: 560px;
  margin: 0 auto;
}
.locks-portal-eyebrow {
  margin: 0 0 .35rem;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #6b7785;
}
.locks-portal-title {
  margin: 0 0 .4rem;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  font-weight: 600;
  letter-spacing: .04em;
  color: #15202b;
  text-transform: none;
}
.locks-portal-copy {
  margin: 0 0 .75rem;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: .9rem;
  line-height: 1.4;
  color: #4a5568;
}
.locks-portal-btn {
  display: inline-block;
  padding: .45rem 1.1rem;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  color: #15202b;
  background: #fff;
  border: 1px solid #15202b;
  border-radius: 6px;
  box-shadow: 0 0 16px rgba(158, 201, 232, 0.18);
  transition: background .15s, color .15s, box-shadow .15s;
}
.locks-portal-btn:hover {
  background: #15202b;
  color: #fff;
  text-shadow: none;
}
main.after-portal {
  max-width: 1040px;
  margin: 0 auto;
  padding: 1.5rem 1.1rem 2.5rem;
}

/* ——— body.locks-corp — sterile access-control page ——— */
body.locks-corp {
  background: #f7f8fa;
  color: #1a2330;
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", sans-serif;
  line-height: 1.6;
}
body.locks-corp a { color: #1e3a5f; }
.corp-top {
  background: #fff;
  border-bottom: 1px solid #e2e6eb;
  padding: 1.4rem 1.25rem 1.15rem;
}
.corp-top-inner {
  max-width: 720px;
  margin: 0 auto;
}
.corp-mark {
  margin: 0;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #6b7785;
}
.corp-desk {
  margin: .25rem 0 0;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: #15202b;
}
.corp-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem 1.2rem;
  justify-content: flex-start;
  max-width: 720px;
  margin: 0 auto;
  padding: .75rem 1.25rem;
  background: transparent;
  border-bottom: 1px solid #e8ecf0;
  position: static;
  box-shadow: none;
  backdrop-filter: none;
}
.corp-nav a {
  color: #4a5568;
  text-decoration: none;
  text-transform: none;
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .01em;
}
.corp-nav a:hover,
.corp-nav a[aria-current="page"] {
  color: #15202b;
  text-shadow: none;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.corp-main {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.75rem 1.25rem 3.5rem;
}
.corp-eyebrow {
  margin: 0 0 .5rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #6b7785;
}
.corp-h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -.01em;
  color: #0f1720;
  line-height: 1.2;
}
.corp-lede {
  margin: 0 0 2rem;
  font-size: 1.08rem;
  color: #3d4a5c;
  max-width: 36em;
}
.corp-rule {
  height: 1px;
  background: #d8dde3;
  margin: 0 0 2.2rem;
  border: 0;
}
.corp-section {
  margin: 0 0 2.2rem;
}
.corp-section h2 {
  margin: 0 0 .7rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #15202b;
}
.corp-body {
  margin: 0;
  color: #3d4a5c;
  font-size: .98rem;
  max-width: 38em;
}
.corp-list {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: .45rem .9rem;
}
.corp-list li {
  padding: .55rem .75rem;
  background: #fff;
  border: 1px solid #d8dde3;
  border-radius: 2px;
  font-size: .9rem;
  font-weight: 500;
  color: #1a2330;
}
.corp-contact .corp-mail {
  display: inline-block;
  margin: 1rem 0 .55rem;
  padding: .7rem 1.15rem;
  background: #fff;
  border: 1px solid #15202b;
  border-radius: 2px;
  color: #15202b;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
}
.corp-contact .corp-mail:hover {
  background: #15202b;
  color: #fff;
}
.corp-fine {
  margin: .4rem 0 0;
  font-size: .82rem;
  color: #6b7785;
}
.corp-back {
  margin: 2.5rem 0 0;
  font-size: .9rem;
}
.corp-back a {
  color: #4a5568;
  text-decoration: none;
}
.corp-back a:hover {
  color: #15202b;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.corp-foot {
  border-top: 1px solid #e2e6eb;
  background: #fff;
  text-align: center;
  padding: 1.5rem 1rem 2rem;
  color: #6b7785;
  font-size: .84rem;
}
.corp-foot p { margin: 0 0 .4rem; }
.corp-foot a {
  color: #6b7785;
  text-decoration: none;
}
.corp-foot a:hover {
  color: #15202b;
  text-decoration: underline;
}


/* ——— Lane pages (welding / engines / watercraft) ——— */
.lane-page {
  background-color: var(--paper);
  background-attachment: fixed;
}
.lane-welding {
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(255, 100, 40, 0.12), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(176, 123, 255, 0.08), transparent 45%);
}
.lane-engines {
  background-image:
    radial-gradient(ellipse at 15% 10%, rgba(158, 201, 232, 0.1), transparent 48%),
    radial-gradient(ellipse at 90% 80%, rgba(176, 123, 255, 0.1), transparent 50%);
}
.lane-watercraft {
  background-image:
    radial-gradient(ellipse at 50% 0%, rgba(40, 100, 160, 0.22), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(158, 201, 232, 0.1), transparent 45%);
}
.lane-hero {
  position: relative;
  overflow: hidden;
  background: #000;
  min-height: 160px;
  max-height: 220px;
}
.lane-hero-bg {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.85;
  filter: saturate(1.05) contrast(1.05);
}
.lane-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 1.4rem 1rem 1.15rem;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
}
.lane-eyebrow {
  margin: 0;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mute);
}
.lane-hero-overlay h1 {
  margin: .25rem 0 0;
  color: var(--ice);
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  letter-spacing: .06em;
  text-transform: uppercase;
  text-shadow: 0 0 24px var(--glow);
}
.lane-tag {
  margin: .35rem 0 0;
  color: #c9b3f0;
  font-size: .92rem;
  letter-spacing: .03em;
}
.lane-welding .lane-hero-overlay h1 { text-shadow: 0 0 28px rgba(255, 120, 40, 0.35), 0 0 18px var(--glow); }
.lane-engines .lane-hero-overlay h1 { text-shadow: 0 0 22px rgba(158, 201, 232, 0.4); }
.lane-watercraft .lane-hero-overlay h1 { text-shadow: 0 0 26px rgba(80, 160, 220, 0.45); }

.lane-main { max-width: 1040px; margin: 0 auto; padding: 1.5rem 1.1rem 2.5rem; }
.lane-copy { margin-top: .5rem; }

/* Corporate-mock portrait block */
.corp-mock {
  margin: 1.75rem 0;
  padding: 1.5rem 1.25rem 1.4rem;
  background: linear-gradient(145deg, #1a1a22 0%, #14141a 55%, #18151f 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 0 0 1px rgba(176, 123, 255, 0.06), 0 12px 36px rgba(0, 0, 0, 0.35);
}
.corp-mock-label {
  margin: 0 0 1rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mute);
  text-align: center;
}
.corp-mock-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  text-align: left;
}
.corp-portrait {
  position: relative;
  width: 168px;
  height: 168px;
  flex-shrink: 0;
}
.corp-portrait img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #3a3a48;
  box-shadow:
    0 0 0 1px rgba(158, 201, 232, 0.25),
    0 0 28px rgba(158, 201, 232, 0.15);
  background: #0c0c10;
}
.corp-portrait-km {
  position: absolute;
  left: 50%;
  bottom: 18%;
  transform: translateX(-50%);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--cream);
  background: rgba(0, 0, 0, 0.55);
  padding: .15rem .45rem;
  border-radius: 4px;
  pointer-events: none;
}
.corp-mock-meta { max-width: 280px; }
.corp-mock-name {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #e8eef3;
  letter-spacing: .02em;
}
.corp-mock-title {
  margin: .25rem 0 .55rem;
  color: var(--ice);
  font-size: .95rem;
  font-weight: 600;
}
.corp-mock-caption {
  margin: 0;
  color: var(--mute);
  font-size: .82rem;
}
.ph-badge {
  display: inline-block;
  margin-left: .15rem;
  padding: .12rem .4rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(176, 123, 255, 0.18);
  border: 1px solid rgba(176, 123, 255, 0.35);
  border-radius: 4px;
  vertical-align: middle;
}
.corp-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.4rem;
  margin: 1.35rem 0 0;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}
.corp-pose {
  margin: 0;
  width: 110px;
  text-align: center;
}
.corp-pose img {
  width: 96px;
  height: 96px;
  margin: 0 auto;
  border-radius: 50%;
  border: 2px dashed #3a3a48;
  opacity: 0.85;
  background: #0c0c10;
}
.corp-pose figcaption {
  margin-top: .45rem;
  font-size: .72rem;
  color: var(--mute);
  line-height: 1.35;
}
.lane-cta { margin-top: 1.5rem; }
@media (max-width: 520px) {
  .corp-mock-card { text-align: center; }
  .corp-mock-meta { max-width: 100%; }
  .lane-hero-bg { height: 180px; }
}


/* Real shop floor gallery */
.shop-gallery {
  margin: 1.6rem 0 2rem;
}
.shop-gallery h2 {
  margin: 0 0 .35rem;
  color: var(--ice);
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: 1.05rem;
}
.shop-gallery .shop-gallery-lede {
  margin: 0 0 1rem;
  color: var(--mute);
  font-size: .95rem;
}
.shop-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: .75rem;
}
.shop-gallery figure {
  margin: 0;
  background: #121216;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.shop-gallery img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.shop-gallery figcaption {
  padding: .55rem .7rem .7rem;
  color: var(--mute);
  font-size: .8rem;
}
