
  :root {
    --asphalt: #0c0d0f;
    --ink: #15171a;
    --white: #ffffff;
    --paper: #f6f6f4;
    --red: #cc0000;
    --red-hot: #e02b20;
    --steel: #a7adb4;
    --steel-dark: #6b7178;
    --line: rgba(255, 255, 255, 0.16);
    --line-light: #e3e3df;
    --header-h: 92px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  [hidden] { display: none !important; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--asphalt);
    color: var(--white);
    font-family: "Inter", -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
  }

  img { max-width: 100%; }

  /* ============ white header ============ */
  .siteheader {
    position: sticky;
    top: 0;
    z-index: 10;
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 clamp(20px, 4.5vw, 64px);
    background: var(--white);
    box-shadow: 0 2px 14px rgba(12, 13, 15, 0.08);
  }

  .siteheader .logo { flex: none; }

  .siteheader .logo img {
    height: 62px;
    width: auto;
    display: block;
  }

  .mainnav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.4vw, 34px);
  }

  .mainnav a {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ink);
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: color 0.15s ease, border-color 0.15s ease;
  }

  .mainnav a:hover { color: var(--red); border-bottom-color: var(--red); }

  .mainnav a:focus-visible {
    outline: 3px solid var(--red-hot);
    outline-offset: 3px;
  }

  .header-right {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2vw, 28px);
  }

  .header-phone {
    text-align: right;
    text-decoration: none;
    color: var(--ink);
  }

  .header-phone .phone-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--steel-dark);
    margin-bottom: 2px;
  }

  .header-phone .phone-number {
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-size: 22px;
    letter-spacing: 0.03em;
    white-space: nowrap;
  }

  .header-phone .phone-label { white-space: nowrap; }

  .header-phone:hover .phone-number { color: var(--red); }

  /* ============ buttons ============ */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 18px 34px;
    border: 2px solid transparent;
    background: transparent;
    font-family: inherit;
    cursor: pointer;
    transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  }

  .btn:focus-visible {
    outline: 3px solid var(--red-hot);
    outline-offset: 3px;
  }

  .btn-red { background: var(--red); color: var(--white); }
  .btn-red:hover { background: var(--red-hot); transform: translateY(-2px); }

  .btn-ghost { border-color: rgba(255, 255, 255, 0.45); color: var(--white); }
  .btn-ghost:hover { border-color: var(--white); transform: translateY(-2px); }

  .btn-ghost-dark { border-color: rgba(21, 23, 26, 0.4); color: var(--ink); }
  .btn-ghost-dark:hover { border-color: var(--ink); transform: translateY(-2px); }

  .btn-small { padding: 13px 24px; font-size: 13px; }

  /* ============ hero ============ */
  .hero {
    position: relative;
    min-height: calc(100svh - var(--header-h));
    display: flex;
    flex-direction: column;
    overflow: hidden;
    isolation: isolate;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: url("hero-shop.jpg") center 30% / cover no-repeat;
    filter: brightness(0.52) saturate(1.08) contrast(1.06);
  }

  .hero-scrim {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
      linear-gradient(90deg, rgba(12, 13, 15, 0.93) 0%, rgba(12, 13, 15, 0.74) 40%, rgba(12, 13, 15, 0.28) 72%, rgba(12, 13, 15, 0.42) 100%),
      linear-gradient(0deg, rgba(12, 13, 15, 0.94) 0%, rgba(12, 13, 15, 0.05) 34%);
  }

  .hero-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(36px, 6vh, 72px) clamp(20px, 4.5vw, 64px);
    max-width: calc(1180px + 2 * clamp(20px, 4.5vw, 64px));
    width: 100%;
    margin: 0 auto;
  }

  .eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: clamp(12px, 1.2vw, 14px);
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--steel);
    margin-bottom: clamp(18px, 2.6vh, 28px);
  }

  .eyebrow::before {
    content: "";
    width: 44px;
    height: 3px;
    background: var(--red);
    flex: none;
  }

  .eyebrow strong { color: var(--white); font-weight: 800; white-space: nowrap; }

  h1 {
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 0.98;
    margin-bottom: clamp(22px, 3.2vh, 34px);
  }

  h1 .welcome {
    display: block;
    font-size: clamp(22px, 3.2vw, 42px);
    letter-spacing: 0.14em;
    color: var(--steel);
    margin-bottom: clamp(8px, 1.4vh, 14px);
  }

  h1 .name {
    display: block;
    font-size: clamp(56px, 9.5vw, 128px);
    letter-spacing: 0.015em;
    text-shadow: 0 4px 30px rgba(12, 13, 15, 0.55);
  }

  h1 .name .accent { color: var(--red-hot); }

  .hero-divider {
    position: relative;
    max-width: 560px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    margin-bottom: clamp(22px, 3.2vh, 34px);
  }

  .hero-divider::before {
    content: "";
    position: absolute;
    top: -3px;
    left: 0;
    width: 110px;
    height: 5px;
    background: var(--red);
  }

  .tach {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 26px;
    margin-bottom: clamp(22px, 3.2vh, 34px);
    max-width: 560px;
  }

  .tach i {
    flex: 1;
    height: 14px;
    background: rgba(255, 255, 255, 0.28);
    opacity: 0;
    animation: tick-in 0.28s ease-out forwards;
  }

  .tach i:nth-child(5n + 1) { height: 26px; }

  .tach i.redline {
    background: var(--red);
    box-shadow: 0 0 14px rgba(224, 43, 32, 0.55);
  }

  @keyframes tick-in {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .lede {
    font-size: clamp(16px, 1.6vw, 19px);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    max-width: 560px;
    margin-bottom: clamp(28px, 4vh, 40px);
    text-shadow: 0 2px 12px rgba(12, 13, 15, 0.6);
  }

  .lede strong { color: var(--white); }

  .cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: clamp(30px, 4.5vh, 48px);
  }

  .proof-row {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(20px, 3vw, 44px);
  }

  .proof {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--steel);
  }

  .proof::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    flex: none;
  }

  /* ============ location rail ============ */
  .locations-rail {
    border-top: 1px solid var(--line);
    background: rgba(12, 13, 15, 0.55);
    backdrop-filter: blur(6px);
    padding: 18px clamp(20px, 4.5vw, 64px);
  }

  .rail-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 26px);
    flex-wrap: wrap;
  }

  .locations-rail .rail-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red-hot);
    flex: none;
  }

  .locations-rail ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(14px, 2vw, 26px);
    list-style: none;
  }

  .locations-rail li {
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-size: clamp(14px, 1.5vw, 18px);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 26px);
  }

  .locations-rail li + li::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--red);
  }

  /* ============ shared section system ============ */
  .section { padding: clamp(64px, 10vh, 110px) clamp(20px, 4.5vw, 64px); }
  .section-light { background: var(--paper); color: var(--ink); }
  .section-dark { background: var(--asphalt); color: var(--white); }
  .wrap { max-width: 1180px; margin: 0 auto; }

  .kicker {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 18px;
  }

  .kicker::before {
    content: "";
    width: 44px;
    height: 3px;
    background: var(--red);
    flex: none;
  }

  .section-light .kicker { color: var(--steel-dark); }
  .section-dark .kicker { color: var(--steel); }

  .sec-title {
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(34px, 4.6vw, 58px);
    line-height: 1.02;
    margin-bottom: 16px;
  }

  .sec-title .accent { color: var(--red); }
  .section-dark .sec-title .accent { color: var(--red-hot); }

  .sec-sub {
    font-size: clamp(15px, 1.4vw, 17px);
    line-height: 1.65;
    max-width: 640px;
    margin-bottom: clamp(34px, 5vh, 52px);
  }

  .section-light .sec-sub { color: var(--steel-dark); }
  .section-dark .sec-sub { color: rgba(255, 255, 255, 0.75); }

  /* ============ services: big-type menu ============ */
  .svc-menu { border-top: 2px solid var(--ink); }

  .svc-row {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(16px, 3vw, 48px);
    padding: clamp(18px, 2.6vh, 26px) clamp(12px, 1.5vw, 22px);
    border-bottom: 1px solid #d8d8d2;
    text-decoration: none;
    color: var(--ink);
    overflow: hidden;
    isolation: isolate;
  }

  .svc-row::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--asphalt);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s cubic-bezier(0.3, 0.8, 0.3, 1);
    z-index: -1;
  }

  .svc-row:hover::before, .svc-row:focus-visible::before { transform: scaleX(1); }

  .svc-row:hover, .svc-row:focus-visible { color: var(--white); border-bottom-color: var(--asphalt); }

  .svc-name {
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(26px, 3.6vw, 46px);
    line-height: 1.02;
    letter-spacing: 0.015em;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .svc-chip {
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--red);
    padding: 6px 10px;
    white-space: nowrap;
  }

  .svc-chip.ghost { background: transparent; color: var(--red); border: 1px solid var(--red); }

  .svc-row:hover .svc-chip.ghost { color: var(--white); border-color: var(--white); }

  .svc-desc {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.25s ease 0.05s, transform 0.25s ease 0.05s;
    text-align: right;
  }

  .svc-row:hover .svc-desc, .svc-row:focus-visible .svc-desc { opacity: 1; transform: translateX(0); }

  @media (hover: none), (max-width: 860px) {
    .svc-row { grid-template-columns: minmax(0, 1fr) auto; }
    .svc-desc { display: none; }
  }

  .svc-arrow {
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-size: 26px;
    color: var(--red);
    transform: translateX(-8px);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .svc-row:hover .svc-arrow { transform: translateX(0); opacity: 1; }

  /* ============ about / family ============ */
  .about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
  }

  .about-photo {
    position: relative;
    align-self: stretch;
    display: flex;
  }

  .about-photo .photo-main {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    object-position: center 30%;
    border: 1px solid var(--line);
  }

  .about-photo::after {
    content: "";
    position: absolute;
    top: 14px;
    left: 14px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--red);
    z-index: -1;
  }

  .photo-tag {
    position: absolute;
    left: 0;
    bottom: 26px;
    background: var(--red);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 10px 14px;
  }

  .about-copy p {
    font-size: clamp(15px, 1.4vw, 17px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 18px;
  }

  .about-copy p strong { color: var(--white); }

  .est-badge {
    position: absolute;
    top: -16px;
    left: -16px;
    background: var(--red);
    color: var(--white);
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-size: 19px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 12px 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  }

  .pull-quote {
    border-left: 4px solid var(--red);
    padding-left: 22px;
    margin: 28px 0 4px;
  }

  .pull-quote p {
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-size: clamp(20px, 2.2vw, 27px);
    line-height: 1.3;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
  }

  .pull-quote span {
    font-size: 13px;
    color: var(--steel);
  }

  .stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: clamp(36px, 5vh, 56px);
    border-top: 1px solid var(--line);
    padding-top: clamp(28px, 4vh, 40px);
  }

  .stat {
    border-left: 3px solid var(--red);
    padding-left: 20px;
  }

  .stat .stat-num {
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-size: clamp(38px, 4.2vw, 56px);
    line-height: 1;
    color: var(--white);
    margin-bottom: 10px;
    white-space: nowrap;
  }

  .stat .stat-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--steel);
    max-width: 220px;
    line-height: 1.5;
  }

  #about { position: relative; }

  #about::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.055 0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E"), repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.015) 0 1px, transparent 1px 14px);
    background-size: 180px 180px, auto;
    pointer-events: none;
  }

  #about .wrap { position: relative; }

  /* ============ coupons ============ */
  .coupons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 22px;
    margin-bottom: 38px;
  }

  .offer-card {
    background: var(--asphalt);
    color: var(--white);
    border-top: 4px solid var(--red);
    padding: 26px 26px 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
  }

  .offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(12, 13, 15, 0.22);
  }

  .offer-amount {
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-size: clamp(38px, 4vw, 52px);
    line-height: 1;
    color: var(--red-hot);
    text-transform: uppercase;
  }

  .offer-amount.alt { color: var(--steel); }

  .offer-name {
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 23px;
    letter-spacing: 0.03em;
    margin-bottom: 6px;
  }

  .offer-card p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.66);
    flex: 1;
    margin-bottom: 14px;
  }

  .offer-foot {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    border-top: 1px solid var(--line);
    padding-top: 12px;
  }

  /* ============ reviews: wall of proof ============ */
  .rev-head {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }

  .rev-ghost {
    position: absolute;
    right: -10px;
    bottom: -18px;
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-size: clamp(70px, 11vw, 170px);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.09);
    pointer-events: none;
    user-select: none;
  }

  .g-badge {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    color: var(--ink);
    padding: 14px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  }

  .g-badge .g-mark { width: 30px; height: 30px; flex: none; }
  .g-badge .g-lines { display: flex; flex-direction: column; gap: 2px; }
  .g-badge .g-lines .g-top { font-weight: 800; font-size: 14px; letter-spacing: 0.02em; }
  .g-badge .g-stars { color: #fbbc04; font-size: 15px; letter-spacing: 2px; }

  .marquee-wrap {
    overflow: hidden;
    margin: 0 calc(-1 * clamp(20px, 4.5vw, 64px));
    padding: 6px clamp(20px, 4.5vw, 64px);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  }

  .marquee-wrap + .marquee-wrap { margin-top: 18px; }

  .marquee {
    display: flex;
    width: max-content;
    animation: mq-scroll 230s linear infinite;
    animation-delay: -115s;
  }

  .marquee:hover { animation-play-state: paused; }

  .marquee.reverse {
    animation-direction: reverse;
    animation-duration: 280s;
    animation-delay: -70s;
  }

  .mq-set {
    display: flex;
    gap: 18px;
    padding-right: 18px;
  }

  @keyframes mq-scroll {
    to { transform: translateX(-50%); }
  }

  .g-card {
    width: min(390px, 82vw);
    flex: none;
    background: #141519;
    border: 1px solid var(--line);
    border-top: 2px solid var(--red);
    padding: 22px 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .g-card .g-row { display: flex; align-items: center; gap: 12px; }

  .g-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    color: var(--white);
  }

  .g-card .g-id { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
  .g-card .g-name { font-weight: 700; font-size: 14.5px; color: var(--white); }
  .g-card .g-src { font-size: 12px; color: var(--steel); }
  .g-card .g-mark { width: 20px; height: 20px; margin-left: auto; flex: none; }
  .g-card .g-stars { color: #fbbc04; font-size: 16px; letter-spacing: 2.5px; }

  .g-card blockquote {
    border: 0;
    font-size: 14px;
    line-height: 1.62;
    color: rgba(255, 255, 255, 0.82);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  @media (prefers-reduced-motion: reduce) {
    .marquee { animation: none; }
    .marquee-wrap { overflow-x: auto; }
  }

  /* ============ locations section ============ */
  .loc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 18px;
  }

  .loc-card {
    background: var(--white);
    border: 1px solid var(--line-light);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.22s ease, transform 0.22s ease;
  }

  .loc-card:hover {
    box-shadow: 0 16px 38px rgba(12, 13, 15, 0.14);
    transform: translateY(-3px);
  }

  .loc-map {
    height: 190px;
    background: #e8e8e4;
  }

  .loc-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
  }

  .loc-body {
    flex: 1;
    border-top: 3px solid var(--red);
    padding: 24px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .loc-body h3 {
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 24px;
    letter-spacing: 0.03em;
    margin-bottom: 4px;
  }

  .loc-body address {
    font-style: normal;
    font-size: 14px;
    line-height: 1.6;
    color: var(--steel-dark);
  }

  .loc-body .loc-phone {
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-size: 20px;
    letter-spacing: 0.03em;
    color: var(--red);
    text-decoration: none;
    margin: 8px 0 4px;
  }

  .loc-body .loc-phone:hover { color: var(--red-hot); }

  .loc-links {
    display: flex;
    gap: 20px;
    margin-top: 4px;
  }

  .loc-links a {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 2px solid var(--red);
    padding-bottom: 3px;
  }

  .loc-links a:hover { color: var(--red); }

  .loc-links a.loc-dir { border-bottom-color: var(--line-light); }
  .loc-links a.loc-dir:hover { border-bottom-color: var(--ink); }

  /* ============ careers strip ============ */
  .careers-strip {
    position: relative;
    overflow: hidden;
    background: var(--red);
    padding: clamp(34px, 5.5vh, 50px) clamp(20px, 4.5vw, 64px);
  }

  .careers-strip::after {
    content: "NOW HIRING";
    position: absolute;
    right: -0.06em;
    bottom: -0.28em;
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-size: clamp(90px, 14vw, 180px);
    line-height: 1;
    letter-spacing: 0.02em;
    color: rgba(0, 0, 0, 0.14);
    white-space: nowrap;
    pointer-events: none;
  }

  .careers-strip .wrap {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }

  .careers-strip h2 {
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(24px, 3vw, 36px);
    letter-spacing: 0.02em;
  }

  .careers-strip p {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 6px;
  }

  .btn-white {
    background: var(--white);
    color: var(--red);
  }

  .btn-white:hover { background: #f1f1ee; transform: translateY(-2px); }

  /* ============ final CTA ============ */
  .finalcta {
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .finalcta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.055 0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E"), repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 12px);
    background-size: 180px 180px, auto;
    pointer-events: none;
  }

  .finalcta .wrap { position: relative; }

  .finalcta .sec-title { margin-bottom: 14px; }

  .finalcta .sec-sub { margin-left: auto; margin-right: auto; margin-bottom: 36px; }

  .finalcta .cta-row { justify-content: center; margin-bottom: 0; }

  .tach-static {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 6px;
    height: 22px;
    max-width: 420px;
    margin: 0 auto clamp(26px, 4vh, 38px);
  }

  .tach-static i { width: 8px; height: 12px; background: rgba(255, 255, 255, 0.22); }
  .tach-static i:nth-child(5n + 1) { height: 22px; }
  .tach-static i.redline { background: var(--red); box-shadow: 0 0 12px rgba(224, 43, 32, 0.5); }

  /* ============ footer ============ */
  .sitefooter {
    background: #08090a;
    border-top: 1px solid var(--line);
    padding: clamp(48px, 7vh, 72px) clamp(20px, 4.5vw, 64px) 0;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: clamp(32px, 5vw, 72px);
    padding-bottom: clamp(36px, 5vh, 56px);
  }

  .footer-brand img { height: 74px; width: auto; margin-bottom: 18px; }

  .footer-brand p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--steel);
    max-width: 340px;
  }

  .footer-brand .footer-phone {
    display: inline-block;
    margin-top: 16px;
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-size: 26px;
    color: var(--white);
    text-decoration: none;
  }

  .footer-brand .footer-phone:hover { color: var(--red-hot); }

  .footer-col h4 {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red-hot);
    margin-bottom: 16px;
  }

  .footer-col ul { list-style: none; }

  .footer-col li { margin-bottom: 10px; }

  .footer-col a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
  }

  .footer-col a:hover { color: var(--white); }

  .footer-bottom {
    border-top: 1px solid var(--line);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 12px;
    color: var(--steel-dark);
  }

  /* ============ load sequence ============ */
  .rise {
    opacity: 0;
    transform: translateY(22px);
    animation: rise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  }

  @keyframes rise {
    to { opacity: 1; transform: translateY(0); }
  }

  @media (prefers-reduced-motion: reduce) {
    .rise, .tach i { animation: none; opacity: 1; transform: none; }
    .btn:hover { transform: none; }
    html { scroll-behavior: auto; }
  }

  /* ============ responsive ============ */
  /* full nav only when all 8 links + logo + phone + button truly fit */
  @media (max-width: 1399px) {
    .mainnav { display: none; }
    .siteheader { justify-content: flex-start; }
    .header-right { margin-left: auto; }
  }

  @media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-photo { max-width: 560px; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  }

  @media (max-width: 860px) {
    .header-phone .phone-label { display: none; }
    .hero-bg { background-position: 62% 30%; }

    .locations-rail { padding-top: 22px; padding-bottom: 24px; }

    .rail-inner {
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }

    .locations-rail ul {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, max-content));
      justify-content: center;
      column-gap: 40px;
      row-gap: 14px;
    }

    .locations-rail li { gap: 10px; }

    .locations-rail li::before,
    .locations-rail li + li::before {
      content: "";
      display: block;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--red);
      flex: none;
    }
  }

  /* below 800px the book button leaves the bar (still in burger menu + hero):
     logo + phone + burger is all that fits cleanly */
  @media (max-width: 800px) {
    .siteheader .btn-small { display: none; }
  }

  @media (max-width: 640px) {
    :root { --header-h: 76px; }
    .siteheader .logo img { height: 48px; }
    .header-phone .phone-number { font-size: 19px; }
    .locations-rail { display: none; }

    /* hero hugs its content on phones instead of filling the screen */
    .hero { min-height: auto; }
    .hero-main { padding-top: 46px; padding-bottom: 54px; }

    /* calm the hero on phones: heavy scrim so text wins, drop duplicate lines */
    .hero-scrim {
      background: linear-gradient(180deg, rgba(12, 13, 15, 0.92) 0%, rgba(12, 13, 15, 0.82) 55%, rgba(12, 13, 15, 0.95) 100%);
    }
    .hero .eyebrow { display: none; }
    .hero h1 .welcome { display: none; }
    .cta-row .btn { width: 100%; }
    .proof-row { flex-direction: column; gap: 12px; }
    .eyebrow { letter-spacing: 0.2em; font-size: 11px; }
    .stats-row { grid-template-columns: 1fr; gap: 26px; }
    .careers-strip .wrap { justify-content: center; text-align: center; }
  }

  /* ============ subpage hero: same construction as home hero ============ */
  .page-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(76px, 13vh, 130px) clamp(20px, 4.5vw, 64px) clamp(60px, 10vh, 104px);
  }

  .page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.055 0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E"), repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 13px);
    background-size: 180px 180px, auto;
  }




  .page-hero .wrap { position: relative; }

  .page-hero .kicker { color: var(--steel); }

  .page-hero h1 {
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(46px, 6.8vw, 88px);
    line-height: 1;
    margin-bottom: clamp(20px, 3vh, 30px);
    text-shadow: 0 4px 30px rgba(12, 13, 15, 0.55);
  }

  .page-hero h1 .accent { color: var(--red-hot); }

  .page-hero .sub {
    font-size: clamp(15px, 1.5vw, 18px);
    color: rgba(255, 255, 255, 0.86);
    max-width: 620px;
    line-height: 1.65;
    text-shadow: 0 2px 12px rgba(12, 13, 15, 0.6);
  }

  .mainnav a.active { color: var(--red); border-bottom-color: var(--red); }

  /* ============ detail cards (services page, values) ============ */
  .detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 18px;
  }

  .detail-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--line-light);
    padding: 30px 28px;
    overflow: hidden;
  }

  .detail-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
  }

  .detail-card:hover::before { transform: scaleX(1); }

  .detail-card h3 {
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 22px;
    letter-spacing: 0.03em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .detail-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--steel-dark);
  }

  /* ============ gallery strip ============ */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }

  .gallery-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    border: 1px solid var(--line);
  }

  @media (max-width: 860px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  }

  /* ============ FAQ accordion ============ */
  .faq-list { max-width: 860px; }

  .faq-list details {
    background: var(--white);
    border: 1px solid var(--line-light);
    margin-bottom: 12px;
  }

  .faq-list summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 26px;
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-size: 19px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  .faq-list summary::-webkit-details-marker { display: none; }

  .faq-list summary::after {
    content: "+";
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-size: 26px;
    color: var(--red);
    flex: none;
    transition: transform 0.2s ease;
  }

  .faq-list details[open] summary::after { transform: rotate(45deg); }

  .faq-list details[open] summary { border-bottom: 1px solid var(--line-light); }

  .faq-list .faq-a {
    padding: 20px 26px 24px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--steel-dark);
  }

  .faq-list .faq-a strong { color: var(--ink); }

  /* ============ contact page ============ */
  .contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: clamp(32px, 5vw, 64px);
    align-items: start;
  }

  @media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
  }

  .contact-info h3 {
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 22px;
    margin: 26px 0 8px;
  }

  .contact-info p { font-size: 15px; line-height: 1.7; color: var(--steel-dark); }

  .contact-info .big-phone {
    display: inline-block;
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-size: clamp(30px, 3.4vw, 44px);
    color: var(--red);
    text-decoration: none;
    margin-top: 4px;
  }

  .contact-info .big-phone:hover { color: var(--red-hot); }

  .form-card {
    background: var(--white);
    border: 1px solid var(--line-light);
    border-top: 3px solid var(--red);
    padding: clamp(26px, 3.5vw, 40px);
  }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  @media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

  .field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }

  .field label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--steel-dark);
  }

  .field input, .field select, .field textarea {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line-light);
    padding: 14px 14px;
    outline: none;
  }

  .field input:focus, .field select:focus, .field textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.12);
  }

  .field textarea { min-height: 130px; resize: vertical; }

  .form-card .btn { width: 100%; }

  .form-note { font-size: 12px; color: var(--steel-dark); margin-top: 12px; line-height: 1.6; }

  /* ============ apply modal ============ */
  .apply-overlay {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(8, 9, 10, 0.78);
    backdrop-filter: blur(5px);
    display: none;
    align-items: safe center;
    justify-content: center;
    padding: clamp(16px, 4vh, 48px) 16px;
    overflow-y: auto;
  }

  .apply-overlay.open { display: flex; }

  body.modal-lock { overflow: hidden; }

  .apply-overlay .nsurvey {
    width: min(1060px, 100%);
    max-height: 92vh;
    overflow-y: auto;
    margin: auto;
  }

  .apply-overlay .apply-close { position: absolute; top: 10px; right: 12px; z-index: 5; }
  .apply-overlay .ns-main { padding-right: 34px; }

  .apply-modal {
    width: min(640px, 100%);
    background: var(--paper);
    color: var(--ink);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
    animation: modal-in 0.32s cubic-bezier(0.2, 0.8, 0.25, 1);
  }

  @keyframes modal-in {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @media (prefers-reduced-motion: reduce) { .apply-modal { animation: none; } }

  .apply-head {
    position: relative;
    background: var(--asphalt);
    border-bottom: 3px solid var(--red);
    padding: 22px 28px 20px;
  }

  .apply-head img { height: 46px; width: auto; display: block; margin-bottom: 10px; }

  .apply-head h3 {
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(28px, 3.4vw, 34px);
    color: var(--white);
    line-height: 1;
  }

  .apply-head h3 span { color: var(--red-hot); }

  .apply-head p { margin-top: 8px; font-size: 14.5px; color: #c3c9cf; }

  .apply-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    color: var(--steel);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
  }

  .apply-close:hover { color: var(--white); }

  .apply-close:focus-visible { outline: 3px solid var(--red-hot); outline-offset: 2px; }

  .apply-body { padding: clamp(22px, 3.5vw, 32px); }

  .resume-zone {
    border: 2px dashed #c9c9c2;
    background: var(--white);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.18s ease, background-color 0.18s ease;
    margin-bottom: 16px;
  }

  .resume-zone:hover, .resume-zone.drag { border-color: var(--red); }

  .resume-zone .rz-title {
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink);
  }

  .resume-zone .rz-sub { font-size: 12px; color: var(--steel-dark); margin-top: 4px; }

  .resume-zone.has-file { border-style: solid; border-color: var(--red); }

  .resume-zone.has-file .rz-title { color: var(--red); }

  .apply-note { font-size: 12.5px; color: var(--steel-dark); margin-top: 14px; text-align: center; }

  .apply-note a { color: var(--red); font-weight: 700; text-decoration: none; }

  .apply-success { text-align: center; padding: 26px 10px 10px; }

  .apply-success .ok-mark {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--red); color: var(--white);
    font-size: 30px; line-height: 64px; margin: 0 auto 18px;
  }

  .apply-success h4 {
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 28px;
    margin-bottom: 10px;
  }

  .apply-success p { font-size: 15px; color: var(--steel-dark); line-height: 1.65; }

  .apply-error { color: var(--red); font-size: 13px; font-weight: 700; margin-top: 10px; text-align: center; }

  body.modal-open { overflow: hidden; }

  /* About page hero: solid + texture (no photo) */
  .page-hero.ph-about::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.055 0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E"), repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 13px);
    background-size: 180px 180px, auto;
    filter: none;
  }

  .page-hero.ph-about::after { display: none; }

  /* about block on light sections */
  .section-light .about-copy p { color: var(--steel-dark); }
  .section-light .about-copy p strong { color: var(--ink); }
  .section-light .pull-quote p { color: var(--ink); }
  .section-light .pull-quote span { color: var(--steel-dark); }
  .section-light .stat .stat-num { color: var(--ink); }
  .section-light .stat .stat-label { color: var(--steel-dark); }
  .section-light .stats-row { border-top-color: var(--line-light); }
  .section-light .about-photo .photo-main { border-color: var(--line-light); }

  /* ============ coupons: cut-out style (chosen option 2) ============ */
  .coupon2 {
    position: relative;
    background: var(--white);
    border: 2px dashed #adada4;
    padding: 30px 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    transform: rotate(-0.9deg);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
  }

  .coupon2:nth-child(2n) { transform: rotate(0.8deg); }

  .coupon2:hover {
    transform: rotate(0deg) translateY(-4px);
    box-shadow: 0 16px 34px rgba(12, 13, 15, 0.14);
  }

  .coupon2 .scis {
    position: absolute;
    top: -14px;
    left: 20px;
    background: var(--paper);
    padding: 0 7px;
    color: #82827a;
    font-size: 18px;
    line-height: 1;
  }

  .coupon2 .clip-tag {
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #9a9a91;
  }

  .coupon2 .c2-amount {
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-size: 42px;
    line-height: 1;
    color: var(--red);
    text-transform: uppercase;
  }

  .coupon2 .c2-amount.alt { color: var(--steel-dark); }

  .coupon2 h3 {
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 22px;
    letter-spacing: 0.02em;
  }

  .coupon2 p { font-size: 13px; line-height: 1.55; color: var(--steel-dark); flex: 1; margin: 4px 0 12px; }

  .coupon2 .c2-foot {
    border-top: 2px dotted #cfcfc6;
    padding-top: 11px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  @media (prefers-reduced-motion: reduce) {
    .coupon2, .coupon2:nth-child(2n) { transform: none; }
  }

  /* ============ about: expansion timeline ============ */
  .tl-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
  }

  @media (max-width: 1000px) { .tl-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 620px) { .tl-grid { grid-template-columns: repeat(2, 1fr); } }

  /* numbered how-it-works rows (3 steps): stack on phones */
  .tl-grid.steps3 { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  @media (max-width: 700px) { .tl-grid.steps3 { grid-template-columns: 1fr; gap: 22px; } }

  .tl-item { border-top: 3px solid var(--line); padding-top: 16px; position: relative; }

  .tl-item::before {
    content: "";
    position: absolute;
    top: -3px;
    left: 0;
    width: 34px;
    height: 3px;
    background: var(--red);
  }

  .tl-year {
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-size: clamp(30px, 3vw, 40px);
    line-height: 1;
    color: var(--red-hot);
    margin-bottom: 6px;
  }

  .tl-city {
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-size: 18px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
  }

  .tl-item p { font-size: 12.5px; line-height: 1.6; color: var(--steel); }

  /* ============ about: photo mosaic ============ */
  .mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 190px;
    gap: 14px;
  }

  .mosaic a, .mosaic .m-tile { overflow: hidden; position: relative; display: block; }

  .mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
  }

  .m-tile:hover img { transform: scale(1.05); }

  .m-feature { grid-column: span 2; grid-row: span 2; }
  .m-tall { grid-row: span 2; }

  @media (max-width: 860px) {
    .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  }

  @media (prefers-reduced-motion: reduce) { .m-tile:hover img { transform: none; } }

  /* full-bleed mosaic */
  .mosaic-full {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: clamp(34px, 5.5vh, 54px);
    padding: 0 16px;
    grid-auto-rows: clamp(210px, 23vw, 320px);
    gap: 16px;
  }

  @media (max-width: 860px) { .mosaic-full { grid-auto-rows: 170px; } }

  /* ============ highway timeline (chosen option 2) ============ */
  .road { position: relative; }

  .road::before {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 50%;
    height: 10px;
    transform: translateY(-5px);
    background: #1e1f23;
  }

  .road::after {
    content: "";
    position: absolute;
    left: 0; right: 0; top: calc(50% - 1px);
    height: 2px;
    background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.55) 0 16px, transparent 16px 34px);
  }

  .road-grid { display: grid; grid-template-columns: repeat(6, 1fr); position: relative; z-index: 1; }

  .r-item { position: relative; height: 330px; }

  .r-node {
    position: absolute;
    top: 50%; left: 50%;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--red);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 5px var(--asphalt), 0 0 0 6px rgba(255, 255, 255, 0.25);
  }

  .r-body { position: absolute; left: 6px; right: 6px; text-align: center; }

  .r-item:nth-child(odd) .r-body { bottom: calc(50% + 30px); }
  .r-item:nth-child(even) .r-body { top: calc(50% + 30px); }

  .r-year { font-family: "Anton", "Arial Narrow", sans-serif; font-size: 34px; color: var(--red-hot); line-height: 1; }

  .r-city {
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-size: 15px; letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--white);
    margin: 6px 0 8px;
  }

  .r-body p { font-size: 12px; line-height: 1.55; color: var(--steel); }

  @media (max-width: 900px) {
    .road::before, .road::after { display: none; }
    .road-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .r-item { height: auto; }
    .r-node { display: none; }
    .r-body { position: static; text-align: left; border-top: 3px solid var(--line); padding-top: 12px; }
  }

  .photo-main.pos-left { object-position: 62% 42%; }

  .mosaic img.pos-sign { object-position: center 16%; }

  /* ============ hero ghost watermark (chosen texture option 5) ============ */
  .hero-wm {
    position: absolute;
    right: -14px;
    bottom: -0.16em;
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-size: clamp(90px, 12.5vw, 185px);
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 2px rgba(224, 43, 32, 0.2);
    pointer-events: none;
    user-select: none;
    z-index: 0;
  }

  /* ============ values: big-type rows (chosen option 3) ============ */
  .val-row {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 30px;
    align-items: center;
    padding: 26px 14px;
    border-bottom: 1px solid #d8d8d2;
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }

  .val-row:first-of-type { border-top: 2px solid var(--ink); }

  .val-row::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--asphalt);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s cubic-bezier(0.3, 0.8, 0.3, 1);
    z-index: -1;
  }

  .val-row:hover::before { transform: scaleX(1); }

  .val-row h3 {
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(28px, 3.6vw, 46px);
    line-height: 1.02;
    transition: color 0.2s ease;
  }

  .val-row:hover h3 { color: var(--white); }

  .val-row p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--steel-dark);
    transition: color 0.2s ease;
  }

  .val-row:hover p { color: rgba(255, 255, 255, 0.78); }

  @media (max-width: 860px) {
    .val-row { grid-template-columns: 1fr; gap: 10px; }
  }

  /* ============ highway drive animation ============ */
  .road .traveler {
    position: absolute;
    top: 50%;
    left: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ff5a4e;
    box-shadow: 0 0 14px 5px rgba(224, 43, 32, 0.85), 0 0 36px 14px rgba(224, 43, 32, 0.30);
    transform: translate(-50%, -50%);
    transition: left 1.1s cubic-bezier(0.45, 0.05, 0.35, 1);
    z-index: 2;
    pointer-events: none;
  }

  .road.animating .r-body {
    opacity: 0.4;
    transition: opacity 0.45s ease;
  }

  .road .r-item.lit .r-body { opacity: 1; }

  .road .r-node { transition: box-shadow 0.35s ease, transform 0.35s ease, background-color 0.35s ease; }

  .road .r-item.lit .r-node {
    background: var(--red-hot);
    transform: translate(-50%, -50%) scale(1.3);
    box-shadow: 0 0 0 5px var(--asphalt), 0 0 0 6px rgba(255, 255, 255, 0.4), 0 0 24px 6px rgba(224, 43, 32, 0.85);
  }

  @media (max-width: 900px), (prefers-reduced-motion: reduce) {
    .road .traveler { display: none; }
    .road.animating .r-body { opacity: 1; }
  }

  /* ============ services: editorial split rows (chosen option 3) ============ */
  .sp-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 56px);
    align-items: center;
    padding: clamp(26px, 4vh, 40px) 0;
  }

  .sp-row + .sp-row { border-top: 1px solid var(--line-light); }

  .sp-row:nth-child(even) .sp-img { order: 2; }

  .sp-img { aspect-ratio: 16 / 10; overflow: hidden; }

  .sp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
  }

  .sp-row:hover .sp-img img { transform: scale(1.04); }

  .sp-bd h3 {
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(24px, 2.6vw, 34px);
    margin-bottom: 12px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
  }

  .sp-bd p {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--steel-dark);
    max-width: 520px;
  }

  /* tablet: two-up card grid instead of one endless column */
  @media (max-width: 800px) {
    .sp-rows { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 20px; }
    .sp-row { grid-template-columns: 1fr; gap: 14px; align-content: start; padding: 0; }
    .sp-row + .sp-row { border-top: 0; }
    .sp-row:nth-child(even) .sp-img { order: 0; }
    .sp-bd h3 { font-size: 21px; }
  }

  /* phone: single column of cards */
  @media (max-width: 560px) {
    .sp-rows { grid-template-columns: 1fr; gap: 30px; }
  }

  @media (prefers-reduced-motion: reduce) { .sp-row:hover .sp-img img { transform: none; } }

  /* collision cross-note */
  .collision-note {
    margin-top: clamp(34px, 5vh, 52px);
    background: var(--white);
    border: 1px solid var(--line-light);
    border-left: 4px solid var(--red);
    padding: 24px 28px;
  }

  .collision-note h3 {
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 8px;
  }

  .collision-note p { font-size: 14px; line-height: 1.65; color: var(--steel-dark); }

  .collision-note a { color: var(--red); font-weight: 800; text-decoration: none; }

  /* ============ collision sister-shop banner ============ */
  .collision-banner {
    background: var(--asphalt);
    box-shadow: 0 22px 50px rgba(12, 13, 15, 0.18);
    color: var(--white);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    overflow: hidden;
  }

  .cb-body {
    padding: clamp(30px, 4.5vw, 56px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .cb-body .kicker { color: var(--steel); }

  .cb-body h3 {
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.05;
    margin-bottom: 14px;
  }

  .cb-body h3 span { color: var(--red-hot); }

  .cb-body p {
    font-size: 14.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    max-width: 480px;
    margin-bottom: 24px;
  }

  .cb-img {
    position: relative;
    min-height: clamp(320px, 34vw, 460px);
    border-left: 4px solid var(--red);
  }

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

  @media (max-width: 800px) {
    .collision-banner { grid-template-columns: 1fr; }
    .cb-img { order: -1; min-height: 200px; border-left: 0; border-bottom: 4px solid var(--red); }
  }

  /* white-background product renders float on the cream via multiply */
  .sp-img.sp-product { aspect-ratio: 16 / 10; }

  .sp-img.sp-product img {
    object-fit: contain;
    mix-blend-mode: multiply;
  }

  /* ============ printable coupons ============ */
  .coupon2 { cursor: pointer; }

  .coupon2 .clip-tag { transition: color 0.15s ease; }

  .coupon2:hover .clip-tag { color: var(--red); }

  /* phones and small tablets can't print: drop the print affordance */
  @media (max-width: 820px) {
    .coupon2 { cursor: default; }
    .coupon2 .clip-tag { display: none; }
  }

  @media print {
    body.printing-coupon * { visibility: hidden !important; }

    body.printing-coupon .print-me,
    body.printing-coupon .print-me * { visibility: visible !important; }

    body.printing-coupon .print-me {
      position: fixed !important;
      top: 60px;
      left: 50%;
      transform: translateX(-50%) rotate(0deg) !important;
      width: 420px;
      background: #fff !important;
      border: 2px dashed #777 !important;
      box-shadow: none !important;
      -webkit-print-color-adjust: exact;
      print-color-adjust: exact;
    }

    body.printing-coupon .print-me::before {
      content: "NETWORK AUTOMOTIVE SERVICE CENTERS";
      display: block;
      font-family: "Inter", sans-serif;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #17191f;
      margin-bottom: 10px;
    }

    body.printing-coupon .print-me::after {
      content: "Present this coupon at any Network Automotive location \00b7 networkautomotive.com \00b7 480-444-0242";
      display: block;
      margin-top: 12px;
      font-size: 9.5px;
      color: #6b7178;
      line-height: 1.5;
    }
  }

  a.coupon2 { text-decoration: none; display: flex; }
  .coupon2 { color: var(--ink); }

  /* cut-out coupons on dark sections */
  .section-dark .coupon2 { border-color: rgba(255, 255, 255, 0.4); }

  .section-dark .coupon2 .scis { background: var(--asphalt); color: #9aa1a8; }

  .section-dark .coupon-fineprint { color: var(--steel); }

  /* club card on light sits heavier */
  .section-light .club-card {
    box-shadow: 0 24px 60px rgba(12, 13, 15, 0.22);
    border: 1px solid var(--line-light);
  }

  .club-photo img { display: block; width: 100%; height: auto; }
  .club-photo { box-shadow: 0 24px 60px rgba(12, 13, 15, 0.25); border: 1px solid var(--line-light); }

  /* ============ apply modal v2: stepped application ============ */
  .apply-modal { width: min(780px, 100%); }

  .apply-head { overflow: hidden; }

  .apply-head::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.055 0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E"), repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 13px);
    background-size: 180px 180px, auto;
    pointer-events: none;
  }

  .apply-head > * { position: relative; }

  .ap-grid { display: grid; grid-template-columns: 210px 1fr; min-height: 380px; }

  .ap-aside {
    position: relative;
    background: var(--white);
    border-right: 1px solid var(--line-light);
    padding: 26px 22px;
  }

  .ap-aside .as-ey {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red);
  }

  .ap-aside h4 {
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 19px;
    color: var(--ink);
    line-height: 1.2;
    margin: 10px 0 22px;
  }

  .ap-steps { list-style: none; display: flex; flex-direction: column; gap: 4px; }

  .ap-steps li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 8px;
    color: var(--steel-dark);
    font-size: 13px;
    font-weight: 700;
  }

  .ap-steps .n {
    width: 26px; height: 26px;
    border: 2px solid #c3c3bb;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-size: 13px;
    flex: none;
    color: var(--steel-dark);
  }

  .ap-steps li.active { color: var(--ink); }
  .ap-steps li.active .n { border-color: var(--red); background: var(--red); color: var(--white); }
  .ap-steps li.done .n { border-color: var(--red); color: var(--red); }

  .ap-main { padding: clamp(22px, 3vw, 30px); }

  .qstep[hidden] { display: none; }

  .qtitle {
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 21px;
    margin-bottom: 16px;
  }

  .qlabel {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--steel-dark);
    margin: 16px 0 8px;
  }

  .choices { display: flex; flex-wrap: wrap; gap: 10px; }

  .choice {
    font-family: "Inter", sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    padding: 12px 18px;
    background: var(--white);
    border: 1px solid #cfcfc8;
    color: var(--ink);
    cursor: pointer;
    transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
  }

  .choice:hover { border-color: var(--red); }

  .choice.on { background: var(--red); border-color: var(--red); color: var(--white); }

  .ap-nav {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid var(--line-light);
  }

  .ap-nav .spacer { flex: 1; }

  @media (max-width: 700px) {
    .ap-grid { grid-template-columns: 1fr; }
    .ap-aside { padding: 16px 22px; }
    .ap-aside h4 { margin-bottom: 12px; }
    .ap-steps { flex-direction: row; gap: 14px; }
    .ap-steps li { padding: 4px 0; }
    .ap-steps .t { display: none; }
  }

  /* modal inputs must stand off the paper body */
  .ap-main .field input,
  .ap-main .field select,
  .ap-main .field textarea {
    background: var(--white);
    border-color: #c6c6bf;
  }

  .ap-main .field label { color: var(--ink); }

  .apply-head .apply-close {
    position: absolute !important;
    top: 12px;
    right: 12px;
    left: auto;
  }

  /* ============ mobile hamburger nav ============ */
  .nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .nav-burger span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--ink);
  }

  @media (max-width: 1399px) { .nav-burger { display: flex; } }

  .mnav-overlay {
    position: fixed;
    inset: 0;
    z-index: 80;
    background: var(--asphalt);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.055 0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E"), repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 13px);
    background-size: 180px 180px, auto;
    display: none;
    flex-direction: column;
    padding: 70px clamp(24px, 8vw, 48px) 40px;
  }

  .mnav-overlay.open { display: flex; }

  .mnav-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 0;
    color: var(--steel);
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
  }

  .mnav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
  }

  .mnav-links a {
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-size: clamp(28px, 7vw, 40px);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--white);
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
  }

  .mnav-links a.active { color: var(--red-hot); }

  .mnav-foot {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
    text-align: center;
    padding-top: 22px;
  }

  .mnav-phone {
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-size: 26px;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.04em;
  }

  /* breathing room when a grid follows the section title directly */
  .sec-title + .loc-grid,
  .sec-title + .detail-grid,
  .sec-title + .mosaic,
  .sec-title + .tcols {
    margin-top: clamp(28px, 4.5vh, 44px);
  }

  /* ============ careers page ============ */
  .job-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }

  .job-card {
    background: var(--white);
    border: 1px solid var(--line-light);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .job-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(12, 13, 15, 0.13); }

  .job-card .jc-photo { height: 210px; overflow: hidden; }

  .job-card .jc-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }

  .job-card:hover .jc-photo img { transform: scale(1.05); }

  .job-card .jc-body { border-top: 3px solid var(--red); padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }

  .job-card h3 { font-family: "Anton", "Arial Narrow", sans-serif; font-weight: 400; text-transform: uppercase; font-size: 22px; margin-bottom: 8px; }

  .job-card p { font-size: 13.5px; line-height: 1.6; color: var(--steel-dark); flex: 1; margin-bottom: 16px; }

  .perk-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3.5vw, 48px); }

  @media (max-width: 860px) { .perk-cols { grid-template-columns: 1fr; } }

  .perk-col h3 {
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 20px;
    color: var(--white);
    border-bottom: 3px solid var(--red);
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 16px;
  }

  .perk-col ul { list-style: none; }

  .perk-col li {
    position: relative;
    padding: 7px 0 7px 22px;
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--steel);
  }

  .perk-col li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 13px;
    width: 8px;
    height: 8px;
    background: var(--red);
  }

  /* careers: two-sided deal module */
  .deal-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(30px, 5vw, 80px);
    align-items: start;
  }

  @media (max-width: 860px) { .deal-grid { grid-template-columns: 1fr; } }

  .deal-grid .dg-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--red-hot);
    margin-bottom: 18px;
  }

  .dg-left p.intro { font-size: 14px; color: var(--steel); margin-bottom: 14px; line-height: 1.6; }

  .benefit {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-size: clamp(20px, 2.2vw, 28px);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--white);
  }

  .benefit::before {
    content: "";
    width: 12px;
    height: 12px;
    background: var(--red);
    flex: none;
  }

  /* careers: benefits ledger (chosen option 4) */
  .led-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: baseline;
    padding: 16px 6px;
    border-bottom: 1px solid var(--line);
  }

  .led-row:first-of-type { border-top: 1px solid var(--line); }

  .led-row .bn {
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-size: clamp(20px, 2.2vw, 28px);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--white);
  }

  .led-row .dots { border-bottom: 2px dotted rgba(255, 255, 255, 0.22); transform: translateY(-7px); }

  .led-row .ck { font-family: "Anton", "Arial Narrow", sans-serif; font-size: 20px; color: var(--red-hot); }

  /* careers: big-type position rows */
  .pos-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
    gap: clamp(18px, 3vw, 44px);
    align-items: center;
    padding: clamp(22px, 3.2vh, 32px) 14px;
    border-bottom: 1px solid #d8d8d2;
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }

  .pos-row:first-of-type { border-top: 2px solid var(--ink); }

  .pos-row::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--asphalt);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s cubic-bezier(0.3, 0.8, 0.3, 1);
    z-index: -1;
  }

  .pos-row:hover::before { transform: scaleX(1); }

  .pos-row h3 {
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(28px, 3.8vw, 48px);
    line-height: 1.02;
    transition: color 0.2s ease;
  }

  .pos-row:hover h3 { color: var(--white); }

  .pos-row p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--steel-dark);
    transition: color 0.2s ease;
  }

  .pos-row:hover p { color: rgba(255, 255, 255, 0.78); }

  @media (max-width: 860px) {
    .pos-row { grid-template-columns: 1fr; gap: 12px; }
  }

  /* careers: crew photo strip */
  .crew-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    background: var(--asphalt);
  }

  .crew-strip img {
    width: 100%;
    height: clamp(200px, 24vw, 320px);
    object-fit: cover;
    display: block;
  }

  @media (max-width: 700px) {
    .crew-strip { grid-template-columns: repeat(2, 1fr); }
    .crew-strip img { height: 160px; }
  }

  /* careers: single cinematic band */
  .crew-band {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: clamp(280px, 38vh, 420px);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .crew-band img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.45) saturate(1.05);
  }

  .crew-band::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(0deg, rgba(12, 13, 15, 0.55) 0%, rgba(12, 13, 15, 0.15) 45%);
  }

  .crew-band h2 {
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(30px, 5vw, 58px);
    color: var(--white);
    text-align: center;
    padding: 0 20px;
    text-shadow: 0 4px 26px rgba(12, 13, 15, 0.6);
  }

  .crew-band h2 span { color: var(--red-hot); }

  /* careers inline apply */
  .apply-split {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.4fr);
    gap: clamp(28px, 4.5vw, 64px);
    align-items: start;
  }

  @media (max-width: 900px) { .apply-split { grid-template-columns: 1fr; } }

  .roles-aside .role { padding: 18px 0; border-bottom: 1px solid #d8d8d2; }

  .roles-aside .role:first-child { padding-top: 0; }

  .roles-aside .role h3 {
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 24px;
    margin-bottom: 6px;
  }

  .roles-aside .role p { font-size: 13.5px; line-height: 1.6; color: var(--steel-dark); }

  .roles-note { margin-top: 20px; font-size: 13px; color: var(--steel-dark); line-height: 1.7; }

  .form-card .choices .choice { background: var(--paper); }

  .form-card .choice.on { background: var(--red); }

  #apply { scroll-margin-top: 100px; }

  /* ============ careers application (dark garage card, giant numeral) ============ */
  .nsurvey {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 200px 1fr;
    background: var(--asphalt);
    color: var(--white);
    padding: clamp(34px, 4vw, 46px);
  }

  .nsurvey::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E"),
      linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 180px 180px, 40px 40px, 40px 40px;
  }

  .nsurvey > * { position: relative; }

  .ns-numcol { padding-right: 10px; }

  .ns-bignum {
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-size: clamp(120px, 12vw, 170px);
    line-height: 0.85;
    color: transparent;
    -webkit-text-stroke: 3px rgba(255, 255, 255, 0.6);
    user-select: none;
  }

  .ns-of {
    font-size: 12.5px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
    color: #c6ccd2; margin-top: 14px;
  }

  .ns-main {
    min-width: 0;
    padding-left: clamp(26px, 3vw, 42px);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }

  .ns-qstep { display: none; }
  .ns-qstep.active { display: block; animation: nsFadeUp 0.4s ease; }

  @keyframes nsFadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

  .ns-qtitle {
    font-family: "Anton", "Arial Narrow", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(30px, 3vw, 42px);
    margin: 0 0 8px;
    color: var(--white);
  }

  .ns-qhint { font-size: 15px; color: #b6bcc3; margin: 0 0 24px; }

  .ns-label {
    display: block;
    font-size: 12.5px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
    margin: 28px 0 12px; color: var(--white);
  }

  .ns-choices { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-top: 8px; }
  .ns-choices.wide { grid-template-columns: 1fr 1fr 1fr; }

  .ns-choice {
    display: flex; align-items: center; justify-content: center;
    font-family: "Inter", sans-serif; font-size: 16.5px; font-weight: 600;
    padding: 21px 14px;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.05); color: var(--white);
    cursor: pointer; transition: 0.15s; text-align: center;
  }

  .ns-choice:hover { border-color: var(--red-hot); background: rgba(224, 43, 32, 0.12); }

  .ns-choice.sel { border-color: var(--red-hot); background: var(--red); color: var(--white); }

  .ns-choices.seg { display: flex; gap: 0; }
  .ns-choices.seg .ns-choice { flex: 1 1 0; border-left-width: 0; padding: 19px 10px; font-size: 16px; }
  .ns-choices.seg .ns-choice:first-child { border-left-width: 1.5px; }
  .ns-choices.seg .ns-choice.sel { border-left-width: 1.5px; margin-left: -1.5px; }
  .ns-choices.seg .ns-choice.sel:first-child { margin-left: 0; }

  .nsurvey .field { margin-bottom: 26px; }
  .nsurvey .field label { color: #b6bcc3; }
  .nsurvey .field input {
    background: transparent;
    border: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.35);
    padding: 12px 2px;
    font-size: 17px;
    color: var(--white);
  }
  .nsurvey .field input:focus { border-color: var(--red-hot); }
  .nsurvey .field input::placeholder { color: rgba(255, 255, 255, 0.35); }
  .nsurvey .field input.bad { border-color: var(--red-hot); }

  .nsurvey .resume-zone {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.45);
    display: flex; align-items: center; gap: 18px;
    text-align: left; padding: 20px 24px; margin-top: 32px;
  }
  .nsurvey .resume-zone:focus-visible { outline: 3px solid var(--red-hot); outline-offset: 3px; }
  .nsurvey .resume-zone .rz-ico {
    width: 46px; height: 46px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    color: var(--red-hot);
  }
  .nsurvey .resume-zone .rz-text { flex: 1; }
  .nsurvey .resume-zone .rz-title { font-size: 14px; }
  .nsurvey .resume-zone.has-file .rz-ico { border-color: var(--red-hot); }
  .nsurvey .resume-zone::after {
    content: "Browse";
    margin-left: auto;
    font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--white); border: 1.5px solid rgba(255, 255, 255, 0.45);
    padding: 10px 18px; flex-shrink: 0;
  }
  .nsurvey .resume-zone.has-file::after { content: "Replace"; border-color: var(--red-hot); color: var(--red-hot); }
  .nsurvey .resume-zone .rz-title { color: var(--white); }
  .nsurvey .resume-zone .rz-sub { color: #b6bcc3; }
  .nsurvey .resume-zone:hover, .nsurvey .resume-zone.drag,
  .nsurvey .resume-zone.has-file { border-color: var(--red-hot); }
  .nsurvey .resume-zone.has-file .rz-title { color: var(--red-hot); }

  .ns-nav {
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    margin-top: 32px; padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .ns-count { font-size: 13px; color: #b6bcc3; font-weight: 600; margin-left: auto; margin-right: 16px; }

  .nsurvey .apply-error { color: var(--red-hot); }
  .nsurvey .apply-success h4 { color: var(--white); }
  .nsurvey .apply-success p { color: var(--steel); }

  @media (max-width: 760px) {
    .nsurvey { grid-template-columns: 1fr; }
    .ns-numcol { display: none; }
    .ns-main { border-left: 0; padding-left: 0; }
    .ns-choices, .ns-choices.wide { grid-template-columns: 1fr; }
    .ns-choices.seg { flex-direction: column; }
    .ns-choices.seg .ns-choice { border-left-width: 1.5px; border-top-width: 0; }
    .ns-choices.seg .ns-choice:first-child { border-top-width: 1.5px; }
    .ns-choices.seg .ns-choice.sel { margin-left: 0; border-top-width: 1.5px; margin-top: -1.5px; }
    .ns-choices.seg .ns-choice.sel:first-child { margin-top: 0; }
  }

  /* ============ footer: powered by ============ */
  .footer-bottom .powered-by a {
    color: var(--steel-dark);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(167, 173, 180, 0.45);
    padding-bottom: 1px;
    transition: color 0.15s ease, border-color 0.15s ease;
  }

  .footer-bottom .powered-by a:hover { color: var(--red-hot); border-bottom-color: var(--red-hot); }

  /* ============ need-help launcher (bottom right, all pages) ============ */
  .hw-root {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 70;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    font-family: "Inter", -apple-system, sans-serif;
  }

  .hw-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--red);
    color: var(--white);
    border: 0;
    cursor: pointer;
    padding: 15px 20px;
    font-family: "Inter", -apple-system, sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 10px 28px rgba(12, 13, 15, 0.35);
    transition: background-color 0.18s ease, transform 0.18s ease;
  }

  .hw-toggle:hover { background: var(--red-hot); transform: translateY(-2px); }

  .hw-toggle:focus-visible { outline: 3px solid var(--red-hot); outline-offset: 3px; }

  .hw-toggle svg { width: 18px; height: 18px; flex: none; }

  .hw-panel {
    width: min(330px, calc(100vw - 36px));
    background: var(--white);
    border: 1px solid var(--line-light);
    box-shadow: 0 24px 60px rgba(12, 13, 15, 0.35);
  }

  .hw-head {
    background: var(--asphalt);
    color: var(--white);
    padding: 18px 20px 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
  }

  .hw-title {
    display: block;
    font-family: "Anton", "Arial Narrow", sans-serif;
    text-transform: uppercase;
    font-size: 19px;
    letter-spacing: 0.03em;
  }

  .hw-sub { display: block; font-size: 12px; color: var(--steel); margin-top: 4px; }

  .hw-close {
    background: none;
    border: 0;
    color: var(--steel);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    padding: 0 2px;
  }

  .hw-close:hover { color: var(--white); }

  .hw-action {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 18px;
    text-decoration: none;
    color: var(--ink);
    border-bottom: 1px solid var(--line-light);
    transition: background-color 0.15s ease;
  }

  .hw-action:hover { background: var(--paper); }

  .hw-ic {
    width: 38px;
    height: 38px;
    flex: none;
    background: var(--red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hw-ic svg { width: 17px; height: 17px; }

  .hw-txt strong { display: block; font-size: 13.5px; font-weight: 800; letter-spacing: 0.02em; }

  .hw-txt em { font-style: normal; font-size: 11.5px; color: var(--steel-dark); }

  .hw-foot {
    padding: 11px 18px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--steel-dark);
    background: var(--paper);
  }

  @media (max-width: 640px) {
    .hw-root { right: 14px; bottom: 14px; }
    .hw-toggle { padding: 15px; }
    .hw-label { display: none; }
  }

  @media print {
    .hw-root { display: none !important; }
  }

  /* clearance so the launcher never sits on the footer's last line */
  .sitefooter .footer-bottom { padding-bottom: 88px; }

  /* ============ help-widget chat ============ */
  .hw-chat { display: flex; flex-direction: column; height: 420px; background: var(--white); }

  .hwc-back {
    border: 0; background: #f0f0ec; color: var(--steel-dark);
    font-family: "Inter", sans-serif; font-size: 11.5px; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    padding: 9px 14px; text-align: left; cursor: pointer;
  }
  .hwc-back:hover { color: var(--red); }

  .hwc-log { flex: 1; overflow-y: auto; padding: 16px 14px; display: flex; flex-direction: column; gap: 10px; }

  .hwc-b { max-width: 84%; padding: 10px 13px; font-size: 13.5px; line-height: 1.45; font-family: "Inter", sans-serif; }
  .hwc-bot { align-self: flex-start; background: #f0f0ec; color: var(--ink); border-radius: 2px 10px 10px 10px; }
  .hwc-user { align-self: flex-end; background: var(--red); color: var(--white); border-radius: 10px 2px 10px 10px; }

  .hwc-typing { display: flex; gap: 4px; padding: 13px; }
  .hwc-typing span {
    width: 6px; height: 6px; border-radius: 50%; background: #9a9a91;
    animation: hwcPulse 1s infinite ease-in-out;
  }
  .hwc-typing span:nth-child(2) { animation-delay: 0.15s; }
  .hwc-typing span:nth-child(3) { animation-delay: 0.3s; }
  @keyframes hwcPulse { 0%, 100% { opacity: 0.35; transform: translateY(0); } 50% { opacity: 1; transform: translateY(-3px); } }

  .hwc-chips { display: flex; flex-wrap: wrap; gap: 8px; align-self: flex-start; max-width: 100%; }
  .hwc-chip {
    border: 1.5px solid #d3d3cc; background: var(--white); color: var(--ink);
    font-family: "Inter", sans-serif; font-size: 12.5px; font-weight: 600;
    padding: 9px 13px; cursor: pointer; transition: 0.15s;
  }
  .hwc-chip:hover { border-color: var(--red); color: var(--red); }

  .hwc-bar { display: flex; gap: 8px; border-top: 1px solid var(--line-light); padding: 10px; background: var(--white); }
  .hwc-bar input {
    flex: 1; min-width: 0; border: 1px solid #d3d3cc; padding: 11px 12px;
    font-family: "Inter", sans-serif; font-size: 14px; color: var(--ink); background: var(--white);
  }
  .hwc-bar input:focus { outline: none; border-color: var(--red); }
  .hwc-send {
    border: 0; background: var(--red); color: var(--white); padding: 0 16px;
    font-family: "Inter", sans-serif; font-size: 12px; font-weight: 800;
    letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer;
  }
  .hwc-send:hover { background: var(--red-hot); }

  .hw-toggle.pulse { animation: hwNudge 1.2s ease 3; }
  @keyframes hwNudge { 0%, 100% { transform: none; } 50% { transform: scale(1.09); } }
