/* Suwalka Motors – corporate site
   Visual language follows the ARENA dealership theme: navy + charcoal palette,
   Roboto, square edges, outlined cards and diagonal "slash" bands. */

:root {
  --navy: #171c8f;
  --navy-deep: #01044b;
  --navy-ink: #0b0f5c;
  --ink: #18171a;
  --text: #000;
  --grey-700: #515151;
  --grey-600: #636363;
  --grey-500: #7b7777;
  --grey-300: #b2b2b2;
  --line: #d1d1d1;
  --grey-100: #f2f2f2;
  --grey-50: #f7f7f7;
  --white: #fff;
  --orange: #ff6200;
  --green: #028c45;
  --red: #c2220a;
  --tint: linear-gradient(224deg, rgb(23 29 155 / 0.07) 26%, rgb(255 98 0 / 0.07) 80%), #fff;
  --dark-grad: linear-gradient(72deg, #01044b 12%, #0f1470 60%, #171c8f 100%);

  --wrap: 1240px;
  --gutter: 20px;
  --header-h: 72px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  font-size: 100%;
}

@media (min-width: 768px) { :root { --gutter: 32px; } }
@media (min-width: 1200px) { :root { --header-h: 84px; --gutter: 40px; } }

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--navy-deep); }
h1, h2, h3, h4 { margin: 0; font-weight: 500; line-height: 1.2; }
p { margin: 0 0 1em; }
button { font: inherit; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

.wrap { width: 100%; max-width: calc(var(--wrap) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }
.narrow { max-width: 760px; }
.skip { position: absolute; left: -9999px; top: 0; z-index: 100; background: var(--navy); color: #fff; padding: 12px 20px; }
.skip:focus { left: 12px; top: 12px; }
.muted { color: var(--grey-600); }

/* ---------------------------------------------------------------- type */
.h2 { font-size: clamp(1.75rem, 1.2rem + 2.2vw, 2.75rem); font-weight: 400; letter-spacing: -0.01em; line-height: 1.15; margin-bottom: 20px; }
.h3 { font-size: clamp(1.2rem, 1.1rem + 0.4vw, 1.5rem); font-weight: 500; }
.lead-dark { font-size: clamp(1.1rem, 1rem + 0.4vw, 1.3rem); line-height: 1.55; color: var(--ink); font-weight: 400; }
.lead-light { font-size: clamp(1.05rem, 1rem + 0.3vw, 1.2rem); color: rgb(255 255 255 / 0.82); max-width: 560px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 18px;
}
.eyebrow span { display: inline-flex; align-items: center; gap: 12px; color: var(--grey-500); font-weight: 400; }
.eyebrow span::after { content: ''; width: 28px; height: 1px; background: currentColor; }
.eyebrow-light, .section-dark .eyebrow { color: #fff; }
.section-dark .eyebrow span, .page-hero .eyebrow span { color: rgb(255 255 255 / 0.6); }

/* ---------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 12px 24px;
  font-size: 1rem; font-weight: 400; line-height: 1.2; text-decoration: none; text-align: center;
  border: 1px solid transparent; cursor: pointer;
  transition: background-color 0.2s linear, color 0.2s linear, border-color 0.2s linear;
}
.btn .i-arrow { width: 18px; height: 18px; flex: none; transition: transform 0.25s var(--ease); }
.btn:hover .i-arrow { transform: translateX(4px); }
.btn-primary { background: var(--navy); color: #f5f5f5; }
.btn-primary:hover { background: var(--grey-700); color: #fff; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-light { background: #fff; color: var(--navy-deep); }
.btn-light:hover { background: var(--grey-100); color: var(--navy-deep); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgb(255 255 255 / 0.7); }
.btn-outline-light:hover { background: #fff; color: var(--navy-deep); border-color: #fff; }
.btn-sm { min-height: 40px; padding: 8px 16px; font-size: 0.9375rem; }
.btn-lg { min-height: 56px; padding: 14px 32px; font-size: 1.0625rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.cta-row.center { justify-content: center; }
.i-arrow { width: 16px; height: 16px; vertical-align: -3px; }

/* ---------------------------------------------------------------- slash bands (ARENA signature) */
.slash { position: relative; height: 16px; background: var(--ink); }
.slash::after {
  content: ''; position: absolute; inset: 0;
  background: var(--grey-100);
  clip-path: polygon(62% 0, 100% 0, 100% 100%, calc(62% - 12px) 100%);
}
@media (min-width: 1024px) { .slash { height: 24px; } .slash::after { clip-path: polygon(68% 0, 100% 0, 100% 100%, calc(68% - 16px) 100%); } }
.slash-top { position: absolute; top: 0; left: 0; right: 0; background: var(--navy); }
.slash-top::after { background: var(--orange); opacity: 0.9; clip-path: polygon(78% 0, 100% 0, 100% 100%, calc(78% - 12px) 100%); }
@media (min-width: 1024px) { .slash-top { height: 12px; } .slash-top::after { clip-path: polygon(82% 0, 100% 0, 100% 100%, calc(82% - 10px) 100%); } }
.slash-hero { position: absolute; bottom: 0; left: 0; right: 0; background: #fff; }
.slash-hero::after { background: var(--navy); }
.slash-footer { background: var(--navy); }
.slash-footer::after { background: var(--ink); }

/* ---------------------------------------------------------------- header */
.site-header { position: sticky; top: 0; z-index: 50; background: #fff; }
.site-header.scrolled { box-shadow: 0 2px 16px rgb(0 0 0 / 0.08); }
.topbar { background: var(--ink); color: rgb(255 255 255 / 0.78); font-size: 0.8125rem; }
.topbar-in { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 34px; }
.topbar a { color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { text-decoration: underline; }
@media (max-width: 767px) { .topbar-in > span { display: none; } .topbar-in { justify-content: center; } }

.header-in { display: flex; align-items: center; gap: 24px; height: var(--header-h); border-bottom: 1px solid var(--line); }
.brand { text-decoration: none; color: var(--ink); flex: none; }
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo-mark { display: block; width: 38px; height: 38px; flex: none; }
.logo-type { display: flex; flex-direction: column; line-height: 1; }
.logo-type b { font-size: 1.25rem; font-weight: 700; letter-spacing: 0.08em; }
.logo-type span { font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.52em; color: var(--grey-600); margin-top: 4px; }
.brand-light { color: #fff; }
.brand-light .logo-type span { color: rgb(255 255 255 / 0.6); }
.brand-light .logo-mark rect { fill: #fff; }
.brand-light .logo-mark g { fill: #0F172A; }

.main-nav { margin-left: auto; }
.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 4px; }
.main-nav a {
  position: relative; display: block; padding: 10px 14px;
  color: var(--ink); text-decoration: none; font-size: 0.9875rem; white-space: nowrap;
}
.main-nav a::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px;
  background: var(--navy); transform: scaleX(0); transform-origin: left; transition: transform 0.25s var(--ease);
}
.main-nav a:hover::after, .main-nav a[aria-current='page']::after { transform: scaleX(1); }
.main-nav a[aria-current='page'] { color: var(--navy); font-weight: 500; }
.header-cta { flex: none; min-height: 44px; padding: 10px 20px; }
.nav-toggle { display: none; }

@media (max-width: 1199px) {
  .header-cta { margin-left: auto; }
  .nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 10px; background: none; border: 0; cursor: pointer;
  }
  .nav-toggle span { display: block; height: 2px; background: var(--ink); transition: transform 0.25s, opacity 0.2s; }
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: fixed; left: 0; right: 0; top: var(--nav-top, 106px); bottom: 0; margin: 0;
    background: #fff; padding: 16px var(--gutter) 32px; overflow-y: auto;
    visibility: hidden; opacity: 0; transform: translateY(-8px);
    transition: opacity 0.2s, transform 0.25s var(--ease), visibility 0s 0.25s;
  }
  .nav-open .main-nav { visibility: visible; opacity: 1; transform: none; transition: opacity 0.2s, transform 0.25s var(--ease); }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav a { padding: 18px 0; font-size: 1.25rem; border-bottom: 1px solid var(--grey-100); }
  .main-nav a::after { left: 0; right: auto; width: 32px; bottom: -1px; }
  body.nav-open { overflow: hidden; }
}
@media (max-width: 479px) { .header-cta { padding: 8px 12px; min-height: 38px; font-size: 0.875rem; } .header-cta .i-arrow { display: none; } .logo-type b { font-size: 1.05rem; } }

/* ---------------------------------------------------------------- hero (home) */
.hero { position: relative; color: #fff; background: var(--navy-deep); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-bg-fallback {
  background:
    linear-gradient(115deg, transparent 0 56%, rgb(255 255 255 / 0.05) 56% 57%, transparent 57% 63%, rgb(255 255 255 / 0.04) 63% 70%, transparent 70%),
    linear-gradient(115deg, transparent 0 78%, rgb(255 98 0 / 0.55) 78% 78.6%, transparent 78.6%),
    radial-gradient(ellipse at 85% 20%, rgb(57 139 215 / 0.35), transparent 55%),
    var(--dark-grad);
}
.hero-bg-fallback::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgb(255 255 255 / 0.04) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent, #000 60%);
}
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgb(1 4 75 / 0.88) 0%, rgb(1 4 75 / 0.55) 55%, rgb(1 4 75 / 0.15) 100%); }
.hero-bg-fallback + .hero-shade { background: none; }
.hero-in { position: relative; min-height: clamp(560px, 82vh, 820px); display: flex; flex-direction: column; justify-content: center; padding-block: 72px 160px; }
.hero-title {
  font-size: clamp(3rem, 1.6rem + 7vw, 7.25rem); font-weight: 700; line-height: 0.95; letter-spacing: 0.01em;
  margin-bottom: 24px;
}
.hero-tag { font-size: clamp(1.15rem, 1rem + 0.8vw, 1.6rem); font-weight: 300; margin-bottom: 16px; max-width: 720px; }
.hero-lead { font-size: 1.0625rem; color: rgb(255 255 255 / 0.8); max-width: 560px; }

.hero-stats { position: absolute; left: 0; right: 0; bottom: 0; }
.stats-in { display: grid; grid-template-columns: repeat(2, 1fr); background: #fff; color: var(--ink); }
.stat { padding: 20px 20px 18px; border-top: 3px solid var(--navy); border-right: 1px solid var(--line); display: flex; flex-wrap: wrap; align-items: baseline; gap: 2px 4px; }
.stat:nth-child(2n) { border-right: 0; }
.stat b { font-size: clamp(1.75rem, 1.3rem + 1.6vw, 2.5rem); font-weight: 400; line-height: 1; color: var(--navy); }
.stat sup { font-size: 1.25rem; color: var(--navy); top: -0.1em; }
.stat span { flex-basis: 100%; font-size: 0.875rem; color: var(--grey-600); margin-top: 6px; }
.stat-text b { font-size: 1.25rem; font-weight: 500; line-height: 1.3; }
@media (max-width: 767px) { .stat:nth-child(n + 3) { border-top: 1px solid var(--line); } .hero-in { padding-bottom: 220px; } }
@media (min-width: 768px) {
  .stats-in { grid-template-columns: repeat(4, 1fr); }
  .stat { padding: 28px 32px 24px; }
  .stat:nth-child(2n) { border-right: 1px solid var(--line); }
  .stat:last-child { border-right: 0; }
}

/* ---------------------------------------------------------------- page hero (inner pages) */
.page-hero { position: relative; background: var(--dark-grad); color: #fff; padding: 48px 0 88px; overflow: hidden; }
.page-hero::before {
  content: ''; position: absolute; right: -8%; top: 0; bottom: 0; width: 46%;
  background: linear-gradient(115deg, transparent 0 20%, rgb(255 255 255 / 0.05) 20% 45%, transparent 45% 52%, rgb(255 255 255 / 0.04) 52% 60%, transparent 60%);
}
.page-hero .wrap { position: relative; }
.page-hero h1 { font-size: clamp(2.1rem, 1.3rem + 3.6vw, 4rem); font-weight: 400; line-height: 1.08; max-width: 900px; letter-spacing: -0.01em; }
.page-hero .lead { font-size: clamp(1.05rem, 1rem + 0.35vw, 1.25rem); color: rgb(255 255 255 / 0.82); max-width: 720px; margin: 20px 0 0; }
.crumbs { display: flex; gap: 10px; font-size: 0.875rem; color: rgb(255 255 255 / 0.65); margin-bottom: 40px; }
.crumbs a { color: rgb(255 255 255 / 0.85); text-decoration: none; }
.crumbs a:hover { color: #fff; text-decoration: underline; }
@media (min-width: 1024px) { .page-hero { padding: 64px 0 120px; } }

/* ---------------------------------------------------------------- sections */
.section { position: relative; padding-block: 72px; }
@media (min-width: 1024px) { .section { padding-block: 112px; } }
.section-tint { background: var(--tint); }
.section-dark { background: var(--dark-grad); color: #fff; }
.section-head { max-width: 760px; margin-bottom: 40px; }
.section-head-row { max-width: none; display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; }
.section-head-row .h2 { margin-bottom: 0; }
.section-foot { margin-top: 40px; }

.split { display: grid; gap: 40px; align-items: center; }
@media (min-width: 960px) {
  .split { grid-template-columns: 1.05fr 0.95fr; gap: 80px; }
  .split-rev { grid-template-columns: 0.95fr 1.05fr; }
}
.split-text > p:not(.eyebrow):not(.lead-dark) { color: var(--grey-700); }
.big-figure { font-size: 1.125rem; border-left: 3px solid var(--navy); padding: 4px 0 4px 20px; margin-block: 28px; color: var(--ink) !important; }
.big-figure b { display: block; font-size: 3rem; font-weight: 300; line-height: 1; color: var(--navy); margin-bottom: 6px; }

/* image slots */
.media { margin: 0; position: relative; overflow: hidden; background: var(--grey-100); }
.media img { width: 100%; height: 100%; object-fit: cover; }
.media-tall { aspect-ratio: 4 / 3; }
@media (min-width: 960px) { .media-tall { aspect-ratio: 4 / 5; } }
.media::after { content: ''; position: absolute; left: 0; bottom: 0; width: 42%; height: 10px; background: var(--navy); }
.media::before { content: ''; position: absolute; left: calc(42% - 5px); bottom: 0; width: 20%; height: 10px; background: var(--orange); clip-path: polygon(8px 0, 100% 0, 100% 100%, 0 100%); z-index: 1; }
.media-fallback { background: var(--dark-grad); display: grid; place-items: center; }
.mf-lines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(115deg, transparent 0 38px, rgb(255 255 255 / 0.05) 38px 39px),
    radial-gradient(ellipse at 20% 10%, rgb(57 139 215 / 0.35), transparent 60%);
}
.mf-mark { position: absolute; inset: 0; margin: auto; width: 100%; height: clamp(6rem, 14vw, 10rem); fill: rgb(255 255 255 / 0.16); stroke: rgb(255 255 255 / 0.5); stroke-width: 3; stroke-linejoin: round; }

/* ---------------------------------------------------------------- cards & grids */
.grid { display: grid; gap: 20px; }
@media (min-width: 640px) { .grid-3, .grid-5 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 24px; } .grid-5 { grid-template-columns: repeat(5, 1fr); } }

.card { position: relative; background: #fff; outline: 1px solid var(--line); outline-offset: -1px; padding: 32px 28px; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.card::before { content: ''; position: absolute; left: 0; top: 0; height: 3px; width: 100%; background: var(--navy); transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease); }
.card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -24px rgb(1 4 75 / 0.35); }
.card:hover::before { transform: scaleX(1); }
.ico { width: 44px; height: 44px; color: var(--navy); }
.card-biz .ico { margin-bottom: 28px; }
.card-biz h3 { font-size: 1.25rem; margin-bottom: 10px; }
.card-biz p { color: var(--grey-700); margin: 0; font-size: 0.975rem; }

.card-feature { padding: 36px 32px 40px; }
.card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 48px; }
.card-n { font-size: 0.875rem; color: var(--grey-500); letter-spacing: 0.1em; }
.card-feature .h3 { margin-bottom: 8px; }
.card-short { color: var(--navy); font-weight: 500; }
.card-feature p:last-child { color: var(--grey-700); margin: 0; }

/* network band on home */
.network-band { display: grid; gap: 48px; align-items: center; }
@media (min-width: 960px) { .network-band { grid-template-columns: 1fr 1fr; gap: 80px; } }
.loc-chips { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgb(255 255 255 / 0.18); border: 1px solid rgb(255 255 255 / 0.18); counter-reset: loc; }
@media (min-width: 560px) { .loc-chips { grid-template-columns: repeat(3, 1fr); } }
.loc-chips li { counter-increment: loc; background: var(--navy-deep); }
.loc-chips a { display: block; padding: 22px 18px; color: #fff; text-decoration: none; font-size: 1.05rem; transition: background 0.2s; }
.loc-chips a::before { content: counter(loc, decimal-leading-zero); display: block; font-size: 0.75rem; letter-spacing: 0.1em; color: rgb(255 255 255 / 0.55); margin-bottom: 8px; }
.loc-chips a:hover { background: var(--navy); }

/* ARENA redirect band */
.arena-band { background: var(--grey-100); border-top: 1px solid var(--line); }
.arena-in { display: flex; flex-wrap: wrap; gap: 24px 48px; align-items: center; justify-content: space-between; padding-block: 48px; }
.arena-in .h3 { margin-bottom: 8px; }
.arena-in p { margin: 0; color: var(--grey-700); max-width: 640px; }

/* CTA band */
.cta-band-in { text-align: left; }
.cta-band .h2 { max-width: 760px; }

/* about: vision / mission */
.vm-grid { display: grid; gap: 24px; }
@media (min-width: 900px) { .vm-grid { grid-template-columns: 1fr 1fr; } }
.vm { background: #fff; padding: 40px 36px; border-left: 4px solid var(--navy); }
.vm-text { font-size: clamp(1.15rem, 1rem + 0.6vw, 1.5rem); line-height: 1.45; font-weight: 300; color: var(--ink); margin: 0; }

.values { list-style: none; margin: 0; padding: 0; display: grid; border-top: 1px solid var(--line); }
@media (min-width: 700px) { .values { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values { grid-template-columns: repeat(3, 1fr); } }
.value { padding: 32px 28px 32px 0; border-bottom: 1px solid var(--line); }
@media (min-width: 700px) { .value { padding-right: 40px; } }
.value-n { display: block; font-size: 0.8125rem; color: var(--navy); letter-spacing: 0.12em; margin-bottom: 20px; }
.value h3 { font-size: 1.3rem; margin-bottom: 10px; }
.value p { color: var(--grey-700); margin: 0; }

/* ---------------------------------------------------------------- network page */
.net-summary { display: flex; align-items: baseline; gap: 16px; margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.net-summary b { font-size: 4rem; font-weight: 300; line-height: 1; color: var(--navy); }
.net-summary span { color: var(--grey-700); font-size: 1.1rem; }
.loc-card { display: flex; flex-direction: column; padding: 0; }
.loc-head { display: flex; gap: 16px; align-items: flex-start; padding: 28px 28px 20px; border-bottom: 1px solid var(--grey-100); }
.loc-n { flex: none; width: 44px; height: 44px; display: grid; place-items: center; background: var(--navy); color: #fff; font-size: 0.875rem; font-weight: 500; }
.loc-outlet { margin: 4px 0 0; font-size: 0.875rem; color: var(--grey-600); }
.loc-meta { margin: 0; padding: 20px 28px 8px; display: grid; gap: 14px; }
.loc-meta > div { display: grid; grid-template-columns: 22px 1fr; column-gap: 12px; }
.loc-meta .ico { width: 22px; height: 22px; grid-row: span 2; color: var(--grey-500); }
.loc-meta dt { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--grey-500); }
.loc-meta dd { margin: 0; font-size: 0.95rem; color: var(--ink); }
.loc-meta a { color: var(--ink); }
.tags { list-style: none; margin: 8px 28px 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.tags li { font-size: 0.78rem; padding: 4px 10px; background: var(--grey-100); color: var(--grey-700); }
.loc-actions { margin-top: auto; display: flex; gap: 10px; padding: 24px 28px 28px; }
.loc-card:target { outline: 2px solid var(--navy); }

/* ---------------------------------------------------------------- careers */
.why-item { background: #fff; padding: 28px 24px; border-top: 3px solid var(--navy); height: 100%; }
.why-item .ico { margin-bottom: 20px; }
.why-item h3 { font-size: 1.1rem; margin-bottom: 8px; }
.why-item p { color: var(--grey-700); font-size: 0.95rem; margin: 0; }

.count-pill { margin: 0; padding: 8px 16px; background: var(--grey-100); font-size: 0.9rem; color: var(--grey-700); }
.job-card { display: flex; flex-direction: column; padding: 0; }
.job-body { padding: 32px 28px 24px; flex: 1; }
.job-dept { font-size: 0.8125rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); font-weight: 500; margin-bottom: 10px; }
.job-card .h3 { padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid var(--grey-100); }
.job-card .h3 a { color: var(--ink); text-decoration: none; }
.job-card .h3 a:hover { color: var(--navy); }
.job-meta { margin: 0; display: grid; gap: 10px; }
.job-meta > div { display: grid; grid-template-columns: 112px 1fr; gap: 8px; font-size: 0.925rem; }
.job-meta dt { color: var(--grey-600); }
.job-meta dd { margin: 0; color: var(--ink); }
.job-actions {
  position: relative; display: flex; gap: 10px; flex-wrap: wrap; padding: 28px 28px 24px;
  background: linear-gradient(239deg, rgb(23 29 155 / 0.1) 21%, rgb(255 98 0 / 0.1) 104%), #fff;
}
.job-actions::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 10px; background: #fff; }
.job-actions::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 10px; background: var(--navy); clip-path: polygon(64% 0, 100% 0, 100% 100%, calc(64% - 8px) 100%); }
.job-actions .btn { flex: 1; }
.empty { background: var(--grey-50); border: 1px dashed var(--grey-300); padding: 40px; max-width: 760px; }
.empty .h3 { margin-bottom: 10px; }
.empty p { margin: 0; color: var(--grey-700); }

.apply-section { padding-top: 96px; }
.apply-grid { display: grid; gap: 40px; align-items: start; }
@media (min-width: 1024px) { .apply-grid { grid-template-columns: 0.8fr 1.2fr; gap: 64px; } .apply-intro { position: sticky; top: calc(var(--header-h) + 60px); } }
.ticks { list-style: none; padding: 0; margin: 32px 0 0; display: grid; gap: 12px; }
.ticks li { position: relative; padding-left: 30px; color: rgb(255 255 255 / 0.85); }
.ticks li::before { content: ''; position: absolute; left: 0; top: 8px; width: 16px; height: 8px; border-left: 2px solid var(--orange); border-bottom: 2px solid var(--orange); transform: rotate(-45deg); }
.ticks a { color: #fff; }
.apply-card { background: #fff; color: var(--text); padding: 28px 20px; }
@media (min-width: 640px) { .apply-card { padding: 44px 40px; } }

/* forms */
.form-grid { display: grid; gap: 20px; }
@media (min-width: 700px) { .form-grid { grid-template-columns: 1fr 1fr; gap: 22px 24px; } .field-full { grid-column: 1 / -1; } }
.field label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--ink); margin-bottom: 8px; }
.req { color: var(--red); }
.field input[type='text'], .field input[type='email'], .field input[type='tel'], .field select, .field textarea {
  width: 100%; min-height: 50px; padding: 12px 14px; font: inherit; font-size: 1rem; color: var(--ink);
  background: #fff; border: 1px solid var(--grey-300); border-radius: 0; appearance: none; transition: border-color 0.15s, box-shadow 0.15s;
}
.field select { background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 40px; }
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgb(23 28 143 / 0.15); }
.has-error input, .has-error select, .has-error textarea, .has-error .file-ui { border-color: var(--red) !important; }
.err { color: var(--red); font-size: 0.85rem; margin: 6px 0 0; }
.hint { color: var(--grey-600); font-size: 0.85rem; margin: 6px 0 0; }
.hp { position: absolute !important; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.file-drop { position: relative; }
.file-drop input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; z-index: 1; }
.file-ui { display: flex; align-items: center; gap: 16px; min-height: 64px; padding: 10px 14px; border: 1px dashed var(--grey-300); background: var(--grey-50); transition: border-color 0.15s, background 0.15s; }
.file-ui b { flex: none; padding: 8px 16px; background: var(--ink); color: #fff; font-weight: 400; font-size: 0.9rem; }
.file-name { font-size: 0.9rem; color: var(--grey-600); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-drop:hover .file-ui, .file-drop input:focus + .file-ui { border-color: var(--navy); background: #fff; }
.file-drop input:focus-visible + .file-ui { outline: 2px solid var(--orange); outline-offset: 2px; }
.file-drop.has-file .file-ui { border-style: solid; border-color: var(--green); background: #fff; }
.file-drop.has-file .file-name { color: var(--ink); }

.field-captcha input { max-width: 160px; }
.consent { background: var(--grey-50); padding: 18px; border-left: 3px solid var(--navy); }
.check { display: flex !important; gap: 12px; align-items: flex-start; font-weight: 400 !important; font-size: 0.9rem !important; line-height: 1.55; cursor: pointer; margin: 0 !important; }
.check input { flex: none; width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--navy); }
.form-foot { margin-top: 28px; display: grid; gap: 12px; }
@media (min-width: 700px) { .form-foot { grid-template-columns: auto 1fr; align-items: center; gap: 24px; } }
.form-foot .hint { margin: 0; }

.alert { padding: 14px 18px; margin-bottom: 24px; font-size: 0.95rem; }
.alert-error { background: #fdecea; color: #8a1c0b; border-left: 3px solid var(--red); }
.alert-info { background: #eef0ff; color: var(--navy-deep); border-left: 3px solid var(--navy); }

/* job detail */
.job-detail { display: grid; gap: 40px; align-items: start; }
@media (min-width: 960px) { .job-detail { grid-template-columns: 1fr 380px; gap: 72px; } .job-aside { position: sticky; top: calc(var(--header-h) + 60px); } }
.job-desc .h3 { margin-bottom: 20px; }
.job-aside { padding: 32px 28px; }
.job-aside:hover { transform: none; }
.job-meta-stack > div { grid-template-columns: 1fr; gap: 2px; padding-bottom: 12px; border-bottom: 1px solid var(--grey-100); }
.job-meta-stack dt { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; }
.job-aside .btn { width: 100%; margin-top: 24px; }
.status { display: inline-block; padding: 2px 10px; font-size: 0.8rem; font-weight: 500; }
.status-open { background: #e3f5ea; color: var(--green); }
.status-closed { background: var(--grey-100); color: var(--grey-700); }
.link-back { text-decoration: none; font-weight: 500; }

/* thank you / 404 */
.thanks { text-align: center; padding-block: 96px; }
.thanks-mark { width: 88px; height: 88px; margin: 0 auto 32px; display: grid; place-items: center; background: var(--navy); color: #fff; }
.thanks-mark svg { width: 48px; height: 48px; }

/* ---------------------------------------------------------------- contact */
.contact-grid { display: grid; gap: 32px; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 48px; } }
.contact-card { border-top: 3px solid var(--navy); padding-top: 32px; }
.contact-card > .h3 { margin-bottom: 28px; }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; }
.contact-list li { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--grey-100); }
.contact-list .ico { width: 28px; height: 28px; flex: none; color: var(--navy); }
.contact-list span { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--grey-500); margin-bottom: 2px; }
.contact-list b, .contact-list a { font-weight: 400; color: var(--ink); font-size: 1.05rem; word-break: break-word; }
.map-wrap { position: relative; min-height: 380px; background: var(--grey-100); }
.map-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(0.4) contrast(1.05); }
.map-wrap::after { content: ''; position: absolute; left: 0; bottom: 0; width: 42%; height: 10px; background: var(--navy); }

/* ---------------------------------------------------------------- legal & prose */
.legal { max-width: 860px; }
.legal-meta { padding: 14px 18px; background: var(--grey-100); font-size: 0.95rem; color: var(--grey-700); margin-bottom: 40px; }
.prose { color: #222; font-size: 1.025rem; line-height: 1.75; }
.prose h2 { font-size: 1.35rem; font-weight: 500; margin: 44px 0 14px; padding-top: 24px; border-top: 1px solid var(--grey-100); color: var(--ink); }
.prose ul { padding-left: 1.2em; margin: 0 0 1em; }
.prose li { margin-bottom: 6px; }
.prose li::marker { color: var(--navy); }
.prose address { font-style: normal; background: var(--grey-50); padding: 20px 24px; border-left: 3px solid var(--navy); }
.callout { background: var(--tint); border-left: 4px solid var(--navy); padding: 24px 28px; font-size: 1.1rem; margin-bottom: 20px; }
.callout p { margin: 0; }

/* ---------------------------------------------------------------- footer */
.site-footer { background: var(--ink); color: rgb(255 255 255 / 0.75); }
.footer-grid { display: grid; gap: 40px; padding-block: 64px 48px; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .footer-grid { grid-template-columns: 1.4fr 0.8fr 1fr 1fr; gap: 48px; } }
.footer-brand p { margin: 20px 0 24px; max-width: 360px; font-size: 0.95rem; }
.f-title { font-size: 0.8125rem; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; font-weight: 500; margin-bottom: 20px; }
.f-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: 0.95rem; }
.f-links a { color: rgb(255 255 255 / 0.75); text-decoration: none; }
.f-links a:hover { color: #fff; text-decoration: underline; }
.f-contact li { word-break: break-word; }
.f-note { font-size: 0.925rem; }
.f-ext, .f-social a { color: #fff; text-decoration: none; display: inline-flex; gap: 8px; align-items: center; border-bottom: 1px solid rgb(255 255 255 / 0.4); padding-bottom: 2px; font-size: 0.95rem; }
.f-ext:hover, .f-social a:hover { color: #fff; border-color: #fff; }
.footer-bottom { border-top: 1px solid rgb(255 255 255 / 0.12); }
.footer-bottom-in { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 24px; padding-block: 20px; font-size: 0.875rem; }
.footer-bottom-in p { margin: 0; }
.legal-links { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 24px; }
.legal-links a { color: #fff; text-decoration: none; }
.legal-links a:hover { text-decoration: underline; }
.footer-disclaimer { font-size: 0.8rem; color: rgb(255 255 255 / 0.5); margin: 0; padding: 0 0 28px; max-width: 980px; }

/* ---------------------------------------------------------------- reveal animation */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); transition-delay: calc(var(--d, 0) * 70ms); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

@media print {
  .site-header, .site-footer, .arena-band, .slash { display: none; }
  .page-hero { background: none; color: #000; padding: 0 0 24px; }
  .page-hero .crumbs, .page-hero .crumbs a { color: #000; }
}
.reg-ids { margin: 16px 0 0; font-size: 0.85rem; color: var(--grey-600); letter-spacing: 0.02em; }
