/* OSHERMS public site — isolated from CRM themes */
:root {
  --osh-crimson: #c60004;
  --osh-crimson-deep: #8f0003;
  --osh-ink: #10141a;
  --osh-ink-soft: #1c232d;
  --osh-steel: #6b7685;
  --osh-mist: #e8edf2;
  --osh-paper: #f6f3ee;
  --osh-white: #ffffff;
  --osh-line: rgba(16, 20, 26, 0.1);
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 4.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.osh-body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--osh-ink);
  background: var(--osh-paper);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.osh-container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.osh-container--narrow {
  width: min(760px, calc(100% - 2.5rem));
}

/* —— Top bar —— */
.osh-topbar {
  background: var(--osh-ink);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
}

.osh-topbar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
}

.osh-topbar a:hover {
  color: #fff;
}

.osh-topbar__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

/* —— Nav —— */
.osh-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(246, 243, 238, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--osh-line);
  transition: box-shadow 0.35s var(--ease);
}

.osh-nav.is-scrolled {
  box-shadow: 0 10px 30px rgba(16, 20, 26, 0.08);
}

.osh-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.osh-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.osh-logo img {
  height: 2.75rem;
  width: auto;
}

.osh-nav__links {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.osh-nav__links > li {
  position: relative;
}

.osh-nav__links a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--osh-ink-soft);
  padding: 0.35rem 0;
  transition: color 0.2s;
}

.osh-nav__links a:hover,
.osh-nav__links a.is-active {
  color: var(--osh-crimson);
}

.osh-nav__dropdown {
  position: absolute;
  top: calc(100% + 0.85rem);
  left: 0;
  min-width: 220px;
  padding: 0.65rem;
  background: var(--osh-white);
  border: 1px solid var(--osh-line);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: 0.25s var(--ease);
  list-style: none;
  margin: 0;
  box-shadow: 0 16px 40px rgba(16, 20, 26, 0.12);
}

.osh-nav__links > li:hover > .osh-nav__dropdown,
.osh-nav__links > li:focus-within > .osh-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.osh-nav__dropdown a {
  display: block;
  padding: 0.55rem 0.7rem;
  font-weight: 500;
  font-size: 0.875rem;
}

.osh-nav__dropdown a:hover {
  background: var(--osh-mist);
}

.osh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.35rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}

.osh-btn:hover {
  transform: translateY(-2px);
}

.osh-btn--primary {
  background: var(--osh-crimson);
  color: #fff;
}

.osh-btn--primary:hover {
  background: var(--osh-crimson-deep);
}

.osh-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.osh-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.osh-btn--ink {
  background: var(--osh-ink);
  color: #fff;
}

.osh-btn--outline {
  background: transparent;
  color: var(--osh-ink);
  border: 1px solid var(--osh-ink);
}

.osh-btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.8125rem;
}

.osh-nav__cta {
  flex-shrink: 0;
}

.osh-nav__toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--osh-line);
  background: transparent;
  cursor: pointer;
  position: relative;
}

.osh-nav__toggle span,
.osh-nav__toggle span::before,
.osh-nav__toggle span::after {
  content: "";
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  height: 2px;
  background: var(--osh-ink);
  transition: 0.25s;
}

.osh-nav__toggle span {
  top: 50%;
  margin-top: -1px;
}

.osh-nav__toggle span::before {
  top: -7px;
}

.osh-nav__toggle span::after {
  top: 7px;
}

/* —— Hero —— */
.osh-hero {
  position: relative;
  min-height: min(92vh, 780px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  background: var(--osh-ink);
}

.osh-hero__media {
  position: absolute;
  inset: 0;
}

.osh-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: osh-kenburns 18s var(--ease) infinite alternate;
}

.osh-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(16, 20, 26, 0.92) 0%, rgba(16, 20, 26, 0.55) 48%, rgba(198, 0, 4, 0.28) 100%),
    linear-gradient(to top, rgba(16, 20, 26, 0.85), transparent 45%);
}

.osh-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    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: 72px 72px;
  mask-image: linear-gradient(to right, black, transparent 70%);
  pointer-events: none;
  animation: osh-grid-drift 24s linear infinite;
}

.osh-hero__content {
  position: relative;
  z-index: 2;
  padding: 5rem 0 4.5rem;
  width: min(720px, 100%);
}

.osh-brand-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 0 0 1rem;
}

.osh-brand-mark em {
  font-style: normal;
  color: var(--osh-crimson);
}

.osh-hero__tag {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  opacity: 0;
  animation: osh-rise 0.9s var(--ease) 0.15s forwards;
}

.osh-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.65rem, 3.4vw, 2.35rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
  max-width: 18ch;
  opacity: 0;
  animation: osh-rise 0.9s var(--ease) 0.28s forwards;
}

.osh-hero__lead {
  margin: 0 0 1.75rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 38ch;
  opacity: 0;
  animation: osh-rise 0.9s var(--ease) 0.4s forwards;
}

.osh-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  animation: osh-rise 0.9s var(--ease) 0.52s forwards;
}

@keyframes osh-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes osh-kenburns {
  from {
    transform: scale(1.04) translate(0, 0);
  }
  to {
    transform: scale(1.12) translate(-1.5%, -1%);
  }
}

@keyframes osh-grid-drift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 72px 72px;
  }
}

/* —— Sections —— */
.osh-section {
  padding: 5rem 0;
}

.osh-section--ink {
  background: var(--osh-ink);
  color: #fff;
}

.osh-section--mist {
  background: var(--osh-mist);
}

.osh-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--osh-crimson);
  margin: 0 0 0.65rem;
}

.osh-section--ink .osh-eyebrow {
  color: #ff7a7e;
}

.osh-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.osh-lead {
  color: var(--osh-steel);
  max-width: 52ch;
  margin: 0 0 2rem;
}

.osh-section--ink .osh-lead {
  color: rgba(255, 255, 255, 0.72);
}

.osh-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.osh-split--reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.osh-media-frame {
  position: relative;
}

.osh-media-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

.osh-media-frame::after {
  content: "";
  position: absolute;
  inset: auto -0.85rem -0.85rem auto;
  width: 42%;
  height: 42%;
  border: 2px solid var(--osh-crimson);
  z-index: -1;
}

.osh-check-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.osh-check-list li {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.7rem;
  align-items: start;
}

.osh-check-list li::before {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  margin-top: 0.45rem;
  background: var(--osh-crimson);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* —— Stats —— */
.osh-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.osh-stat {
  background: var(--osh-ink-soft);
  padding: 1.75rem 1.25rem;
  text-align: center;
}

.osh-stat__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
}

.osh-stat__value span {
  color: var(--osh-crimson);
}

.osh-stat__label {
  margin-top: 0.55rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.62);
}

/* —— Services —— */
.osh-service-rail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.osh-service-tile {
  position: relative;
  display: block;
  padding: 1.75rem 1.5rem;
  background: var(--osh-white);
  border: 1px solid var(--osh-line);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.35s var(--ease);
}

.osh-service-tile::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--osh-crimson);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s var(--ease);
}

.osh-service-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 0, 4, 0.35);
}

.osh-service-tile:hover::before {
  transform: scaleY(1);
}

.osh-service-tile__index {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--osh-crimson);
  margin-bottom: 0.75rem;
}

.osh-service-tile h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.55rem;
  letter-spacing: -0.02em;
}

.osh-service-tile p {
  margin: 0;
  color: var(--osh-steel);
  font-size: 0.95rem;
}

.osh-service-tile__go {
  display: inline-flex;
  margin-top: 1.1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--osh-crimson);
  letter-spacing: 0.04em;
}

/* —— Why / CTA strip —— */
.osh-why {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.osh-quote-rail {
  display: grid;
  gap: 1rem;
}

.osh-quote {
  padding: 1.35rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--osh-crimson);
}

.osh-quote p {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
}

.osh-quote cite {
  font-style: normal;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

/* —— Our Clients logo strip (infinite slide) —— */
.osh-clients {
  position: relative;
  padding: 3.75rem 0 4.25rem;
  background: linear-gradient(105deg, #0b1c3d 0%, #163a6b 38%, #7a1020 72%, #c60004 100%);
  color: #fff;
  overflow: hidden;
}

.osh-clients::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.08), transparent 42%),
    radial-gradient(circle at 88% 70%, rgba(0, 0, 0, 0.18), transparent 45%);
  pointer-events: none;
}

.osh-clients__head {
  position: relative;
  text-align: center;
  margin-bottom: 2rem;
}

.osh-clients__title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}

.osh-clients__title::after {
  content: "";
  display: block;
  width: 3.25rem;
  height: 3px;
  margin: 0.7rem auto 0;
  background: #ff3b3f;
  border-radius: 2px;
}

.osh-clients__viewport {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.osh-clients__track {
  display: flex;
  width: max-content;
  gap: 0.85rem;
  animation: osh-clients-slide 32s linear infinite;
  will-change: transform;
}

.osh-clients__viewport:hover .osh-clients__track,
.osh-clients__viewport:focus-within .osh-clients__track {
  animation-play-state: paused;
}

.osh-clients__group {
  list-style: none;
  margin: 0;
  padding: 0.15rem 0;
  display: flex;
  gap: 0.85rem;
  flex-shrink: 0;
}

.osh-clients__card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 11.5rem;
  min-height: 5.25rem;
  padding: 0.85rem 0.9rem;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.osh-clients__card:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.osh-clients__card img {
  width: 100%;
  max-width: 9.25rem;
  height: 2.65rem;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

@keyframes osh-clients-slide {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-50% - 0.425rem), 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .osh-clients__track {
    animation: none;
    flex-wrap: wrap;
    width: min(1120px, calc(100% - 2.5rem));
    margin-inline: auto;
    justify-content: center;
  }

  .osh-clients__viewport {
    mask-image: none;
    -webkit-mask-image: none;
  }
}

.osh-cta-band {
  position: relative;
  padding: 3.5rem 0;
  background:
    linear-gradient(120deg, rgba(16, 20, 26, 0.92), rgba(198, 0, 4, 0.82)),
    url("/public/frontend/images/hero-banner.jpg") center / cover;
  color: #fff;
  overflow: hidden;
}

.osh-cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.osh-cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
}

.osh-cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

/* —— Page hero (inner) —— */
.osh-page-hero {
  position: relative;
  padding: 4.5rem 0 3.25rem;
  background:
    linear-gradient(135deg, #10141a 0%, #1c232d 55%, #3a0a0c 100%);
  color: #fff;
  overflow: hidden;
}

.osh-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 20%, rgba(198, 0, 4, 0.35), transparent 40%),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: auto, 48px 48px;
  pointer-events: none;
}

.osh-page-hero .osh-container {
  position: relative;
}

.osh-page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.4rem 0 0;
  letter-spacing: -0.03em;
}

.osh-crumb {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

.osh-crumb a:hover {
  color: #fff;
}

/* —— Offerings grid —— */
.osh-offerings {
  columns: 2;
  column-gap: 2rem;
}

.osh-offerings li {
  break-inside: avoid;
  margin-bottom: 0.65rem;
  padding-left: 1rem;
  position: relative;
  color: var(--osh-ink-soft);
}

.osh-offerings li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--osh-crimson);
}

/* —— Contact —— */
.osh-contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
}

.osh-contact-card {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--osh-line);
}

.osh-contact-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0 0 0.35rem;
}

.osh-contact-card p,
.osh-contact-card a {
  margin: 0;
  color: var(--osh-steel);
}

.osh-form {
  display: grid;
  gap: 1rem;
}

.osh-field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.osh-field input,
.osh-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--osh-line);
  background: var(--osh-white);
  font: inherit;
  color: var(--osh-ink);
}

.osh-field input:focus,
.osh-field textarea:focus {
  outline: 2px solid rgba(198, 0, 4, 0.35);
  border-color: var(--osh-crimson);
}

.osh-alert {
  padding: 0.9rem 1rem;
  background: #e7f6ec;
  border-left: 3px solid #1f8a4c;
  color: #145c33;
  margin-bottom: 1rem;
}

.osh-lead-form {
  background: var(--osh-white);
  border: 1px solid var(--osh-line);
  padding: 1.75rem 1.5rem 1.5rem;
}

.osh-form--lead {
  gap: 0;
}

.osh-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1rem;
}

.osh-field--full,
.osh-form-note,
.osh-form-block-title {
  grid-column: 1 / -1;
}

.osh-form-note {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  color: var(--osh-steel);
  font-weight: 600;
}

.osh-form-block-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0.5rem 0 0;
  letter-spacing: -0.02em;
}

.osh-req {
  color: var(--osh-crimson);
  margin-left: 0.15rem;
}

.osh-form select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--osh-line);
  background: var(--osh-white);
  font: inherit;
  color: var(--osh-ink);
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--osh-steel) 50%),
    linear-gradient(135deg, var(--osh-steel) 50%, transparent 50%);
  background-position: calc(100% - 18px) 55%, calc(100% - 12px) 55%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.osh-form select:focus {
  outline: 2px solid rgba(198, 0, 4, 0.35);
  border-color: var(--osh-crimson);
}

.osh-dropzone {
  border: 1px dashed rgba(198, 0, 4, 0.35);
  background:
    linear-gradient(135deg, rgba(198, 0, 4, 0.04), transparent 40%),
    var(--osh-paper);
  padding: 1.35rem 1.1rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease);
}

.osh-dropzone:hover,
.osh-dropzone.is-dragover {
  border-color: var(--osh-crimson);
  background: rgba(198, 0, 4, 0.06);
}

.osh-dropzone.is-busy {
  opacity: 0.7;
  pointer-events: none;
}

.osh-dropzone__title {
  margin: 0;
  font-weight: 700;
  color: var(--osh-ink);
}

.osh-dropzone__hint {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  color: var(--osh-steel);
}

.osh-dropzone__files {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  text-align: left;
}

.osh-dropzone__files li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0.7rem;
  background: var(--osh-white);
  border: 1px solid var(--osh-line);
  font-size: 0.875rem;
}

.osh-file-remove {
  border: 0;
  background: transparent;
  color: var(--osh-crimson);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0.25rem;
}

.osh-form-errors {
  grid-column: 1 / -1;
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  background: #fdecec;
  border-left: 3px solid var(--osh-crimson);
  color: #7a1212;
}

.osh-form-errors p {
  margin: 0 0 0.4rem;
  font-weight: 700;
}

.osh-form-errors ul {
  margin: 0;
  padding-left: 1.1rem;
}

.osh-form-success {
  padding: 2rem 1.25rem;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(31, 138, 76, 0.08), transparent 55%),
    var(--osh-paper);
  border-left: 3px solid #1f8a4c;
}

.osh-form-success h4,
.osh-form-success p {
  margin: 0;
  font-family: var(--font-display);
  color: var(--osh-ink);
}

.osh-form-actions {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
}

.osh-form-footnote {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--osh-steel);
}

.osh-btn.is-loading {
  opacity: 0.7;
  pointer-events: none;
}

.osh-btn.is-loading::after {
  content: "";
  width: 0.85rem;
  height: 0.85rem;
  margin-left: 0.45rem;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: osh-spin 0.7s linear infinite;
}

@keyframes osh-spin {
  to {
    transform: rotate(360deg);
  }
}

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

  .osh-lead-form {
    padding: 1.25rem 1rem;
  }
}

.osh-captcha__widget {
  display: flex;
  justify-content: flex-start;
  padding-top: 0.25rem;
}

.osh-captcha__widget > div {
  transform-origin: left top;
}

.osh-webform-shell {
  background: var(--osh-white);
  border: 1px solid var(--osh-line);
  overflow: hidden;
}

.osh-webform-frame {
  display: block;
  width: 100%;
  min-height: 640px;
  border: 0;
  background: var(--osh-white);
}

.osh-map {
  margin-top: 2.5rem;
  min-height: 280px;
  background: var(--osh-mist);
}

.osh-map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  filter: grayscale(0.35) contrast(1.05);
}

/* —— Footer —— */
.osh-footer {
  background: var(--osh-ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 1.5rem;
}

.osh-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.osh-footer h3 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1rem;
  margin: 0 0 1rem;
}

.osh-footer__logo {
  display: inline-flex;
  align-items: center;
  margin: 0 0 0.85rem;
  padding: 0.45rem 0.65rem;
  background: #fff;
}

.osh-footer__logo img {
  height: 2.35rem;
  width: auto;
}

.osh-footer p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.osh-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.osh-footer li {
  margin-bottom: 0.55rem;
}

.osh-footer a:hover {
  color: #fff;
}

.osh-social {
  display: flex;
  gap: 0.75rem;
}

.osh-social a {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.osh-social a:hover {
  border-color: var(--osh-crimson);
  background: var(--osh-crimson);
}

.osh-footer__base {
  padding-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8125rem;
}

/* —— Reveal —— */
.osh-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.osh-reveal.is-in {
  opacity: 1;
  transform: none;
}

/* —— Mobile —— */
@media (max-width: 900px) {
  .osh-split,
  .osh-split--reverse,
  .osh-why,
  .osh-contact-grid,
  .osh-footer__grid {
    grid-template-columns: 1fr;
  }

  .osh-clients__track {
    animation-duration: 26s;
  }

  .osh-clients__card {
    width: 10.25rem;
    min-height: 4.75rem;
  }

  .osh-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .osh-service-rail {
    grid-template-columns: 1fr;
  }

  .osh-offerings {
    columns: 1;
  }

  .osh-nav__toggle {
    display: inline-block;
  }

  .osh-nav__links {
    position: fixed;
    inset: calc(var(--nav-h) + 2rem) 1rem auto;
    flex-direction: column;
    align-items: stretch;
    background: var(--osh-white);
    padding: 1rem;
    border: 1px solid var(--osh-line);
    box-shadow: 0 20px 50px rgba(16, 20, 26, 0.15);
    display: none;
  }

  .osh-nav.is-open .osh-nav__links {
    display: flex;
  }

  .osh-nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0.35rem 0 0.35rem 0.75rem;
  }

  .osh-nav__cta {
    display: none;
  }

  .osh-topbar__meta span:nth-child(2) {
    display: none;
  }
}

@media (max-width: 560px) {
  .osh-stats {
    grid-template-columns: 1fr;
  }

  .osh-clients__track {
    animation-duration: 22s;
  }

  .osh-clients__card {
    width: 9.25rem;
    min-height: 4.35rem;
    padding: 0.7rem 0.55rem;
  }

  .osh-hero {
    min-height: 78vh;
  }
}

/* —— Promo popup (HR outsourcing) —— */
body.osh-popup-open {
  overflow: hidden;
}

.osh-popup {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s var(--ease), visibility 0.28s;
}

.osh-popup.is-open {
  opacity: 1;
  visibility: visible;
}

.osh-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 20, 26, 0.72);
  backdrop-filter: blur(4px);
}

.osh-popup__panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(90vh, 720px);
  overflow: auto;
  padding: 2rem 1.75rem 1.5rem;
  background:
    linear-gradient(165deg, #ffffff 0%, #f6f3ee 55%, #f3e9e9 100%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 30px 80px rgba(16, 20, 26, 0.35);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.35s var(--ease);
}

.osh-popup.is-open .osh-popup__panel {
  transform: none;
}

.osh-popup__accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--osh-crimson), #3a0a0c);
}

.osh-popup__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--osh-line);
  background: var(--osh-white);
  color: var(--osh-ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.osh-popup__close:hover {
  border-color: var(--osh-crimson);
  color: var(--osh-crimson);
}

.osh-popup__eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--osh-crimson);
}

.osh-popup__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.4rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--osh-ink);
}

.osh-popup__subtitle {
  margin: 0.45rem 0 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--osh-ink-soft);
}

.osh-popup__lead {
  margin: 0.85rem 0 0;
  color: var(--osh-steel);
  font-size: 0.98rem;
}

.osh-popup__roles {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.osh-popup__roles li {
  padding: 0.4rem 0.7rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--osh-ink);
  background: rgba(16, 20, 26, 0.04);
  border: 1px solid var(--osh-line);
}

.osh-popup__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.osh-popup__dismiss {
  display: block;
  margin: 1.1rem auto 0;
  border: 0;
  background: transparent;
  color: var(--osh-steel);
  font: inherit;
  font-size: 0.8125rem;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  cursor: pointer;
}

.osh-popup__dismiss:hover {
  color: var(--osh-ink);
}

@media (max-width: 560px) {
  .osh-popup__panel {
    padding: 1.65rem 1.2rem 1.25rem;
  }

  .osh-popup__actions {
    flex-direction: column;
  }

  .osh-popup__actions .osh-btn {
    width: 100%;
  }
}

