/* ── Hero wrapper ───────────────────────────────────────────── */
.oc-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ── Video layer ────────────────────────────────────────────── */
.oc-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
}
.oc-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.30) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.80) 100%
  );
}

/* ── Content layer ──────────────────────────────────────────── */
.oc-hero__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  width: 100%;
  max-width: 1200px;
  margin-top: -40px;
}

/* ── Eyebrow ────────────────────────────────────────────────── */
.oc-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}
.oc-hero__eyebrow-line {
  display: block;
  width: 48px;
  height: 1px;
  background: #FF6A00;
  opacity: 0.9;
}
.oc-hero__eyebrow-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #EDE3D5;
  opacity: 0.85;
}

/* ── Main title ─────────────────────────────────────────────── */
.oc-hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin: 0 0 20px;
  line-height: 1;
}
.oc-hero__title-top {
  font-family: 'Cracked', Arial, sans-serif;
  font-size: clamp(56px, 9vw, 118px);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 2px #ffffff;
  text-stroke: 2px #ffffff;
  line-height: 1;
}
.oc-hero__title-bottom {
  font-family: 'Cracked', Arial, sans-serif;
  font-size: clamp(56px, 9vw, 118px);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.05;
}
.oc-hero__title-accent {
  display: block;
  width: 64px;
  height: 3px;
  background: #FF6A00;
  margin: 14px auto 0;
}

/* ── Subtitle ───────────────────────────────────────────────── */
.oc-hero__subtitle {
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #EDE3D5;
  margin: 0 0 40px;
  opacity: 0.88;
}

/* ── Search wrapper ─────────────────────────────────────────── */
.oc-hero__search {
  width: 100%;
  max-width: 960px;
  margin-bottom: 44px;
}
.oc-hero__search .st2-wrap {
  height: 76px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.45);
}
.oc-hero__search .st2-cta {
  height: 76px;
  background: #FF6A00;
  font-size: 13px;
  letter-spacing: 0.14em;
  padding: 0 36px;
}
.oc-hero__search .st2-cta:hover {
  background: #e05d00;
}
.oc-hero__search .st2-groups {
  border-color: rgba(255,255,255,0.15);
}
.oc-hero__search .st2-sep {
  background: rgba(0,0,0,0.12);
}

/* ── Stats bar ──────────────────────────────────────────────── */
.oc-hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.oc-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 36px;
}
.oc-hero__stat-num {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: #FF6A00;
  line-height: 1;
  margin-bottom: 4px;
}
.oc-hero__stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #EDE3D5;
  opacity: 0.75;
}
.oc-hero__stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(237,227,213,0.25);
}

/* ── Scroll indicator ───────────────────────────────────────── */
.oc-hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.oc-hero__scroll:hover { opacity: 1; }
.oc-hero__scroll-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #EDE3D5;
}
.oc-hero__scroll-chevron {
  width: 20px;
  height: 20px;
  border-right: 1.5px solid #EDE3D5;
  border-bottom: 1.5px solid #EDE3D5;
  transform: rotate(45deg);
  animation: oc-hero-bounce 1.6s ease-in-out infinite;
}
@keyframes oc-hero-bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(5px); }
}

/* ── Mobile search button (replaces full search widget on small screens) ── */
.oc-hero__mobile-search-btn {
  display: none !important;
}

/* ── Mobile ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .oc-hero__body { margin-top: -20px; }
  .oc-hero__eyebrow { margin-bottom: 20px; }
  .oc-hero__eyebrow-line { width: 28px; }
  .oc-hero__title-top,
  .oc-hero__title-bottom { -webkit-text-stroke: 1.5px #ffffff; }
  .oc-hero__subtitle { margin-bottom: 28px; font-size: 11px; letter-spacing: 0.10em; }
  .oc-hero__search { display: none; }
  .oc-hero__mobile-search-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 320px;
    height: 56px;
    padding: 0 36px;
    margin-bottom: 32px;
    background: #FF6A00;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
  }
  .oc-hero__mobile-search-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }
  .oc-hero__mobile-search-btn:hover,
  .oc-hero__mobile-search-btn:focus { background: #e05d00; color: #fff; text-decoration: none; }
  .oc-hero__stat { padding: 0 18px; }
  .oc-hero__stat-num { font-size: 24px; }
}
@media (max-width: 480px) {
  .oc-hero__eyebrow { display: none; }
  .oc-hero__stat { padding: 0 12px; }
  .oc-hero__stat-label { font-size: 9px; }
}
