/* OMA Hero V2 — self-contained homepage hero. Do not merge with legacy hero styles. */
    .oma-hero-v2 {
      --oma-hero-red: #D24D57;
      --oma-hero-red-deep: #b83f49;
      --oma-hero-cream: #f8f1e6;
      --oma-hero-ink: #15120f;

      position: relative;
      min-height: clamp(680px, 90vh, 940px);
      overflow: hidden;
      isolation: isolate;
      background: var(--oma-hero-ink);
      color: #fff;
    }

    .oma-hero-v2 * {
      box-sizing: border-box;
    }

    .oma-hero-v2__slide {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity 850ms ease, visibility 850ms ease;
    }

    .oma-hero-v2__slide.is-active {
      opacity: 1;
      visibility: visible;
      z-index: 1;
    }

    .oma-hero-v2__image {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.01);
    }

    .oma-hero-v2__shade {
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        radial-gradient(circle at 50% 48%, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.55) 62%, rgba(0, 0, 0, 0.72)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.62));
    }

    .oma-hero-v2__content {
      position: relative;
      z-index: 2;
      width: min(1080px, calc(100% - 2rem));
      margin-inline: auto;
      padding: clamp(7rem, 13vh, 11rem) 0 clamp(5.5rem, 10vh, 8rem);
      text-align: center;
    }

    .oma-hero-v2__title {
      max-width: 940px;
      margin: 0 auto;
      color: rgba(255, 255, 255, 0.88);
      font-family: var(--heading-font, "Playfair Display", Georgia, "Times New Roman", serif);
      font-size: clamp(3.25rem, 6.15vw, 6rem);
      line-height: 1.05;
      font-weight: 700;
      letter-spacing: -0.012em;
      text-wrap: balance;
      text-shadow:
        0 2px 2px rgba(0, 0, 0, 0.46),
        0 7px 22px rgba(0, 0, 0, 0.58);
    }

    .oma-hero-v2__subtitle {
      max-width: 780px;
      margin: clamp(1.1rem, 2vw, 1.6rem) auto 0;
      color: rgba(255, 255, 255, 0.94);
      font-family: var(--default-font, "Source Sans 3", system-ui, sans-serif);
      font-size: clamp(1.15rem, 1.8vw, 1.52rem);
      line-height: 1.52;
      font-weight: 500;
      text-wrap: balance;
      text-shadow: 0 2px 14px rgba(0, 0, 0, 0.52);
    }

    .oma-hero-v2__subtitle strong {
      font-weight: 800;
    }

    .oma-hero-v2__button {
      position: relative;
      isolation: isolate;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 250px;
      margin-top: clamp(1.55rem, 2.7vw, 2.25rem);
      padding: 17px 30px;
      overflow: hidden;
      border: 2px solid var(--oma-hero-red);
      border-radius: 0;
      color: #fff;
      background: transparent;
      font-family: var(--nav-font, "Source Sans 3", system-ui, sans-serif);
      font-size: 14px;
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: 0.08em;
      text-align: center;
      text-decoration: none;
      text-transform: uppercase;
      text-shadow: none;
      box-shadow: none;
      transition: border-color 0.35s ease, color 0.35s ease;
    }

    .oma-hero-v2__button::after {
      content: "";
      position: absolute;
      z-index: -1;
      left: 50%;
      top: 50%;
      width: 150%;
      height: 0%;
      background: var(--oma-hero-red);
      transform: translate(-50%, -50%);
      transition: height 0.45s ease;
    }

    .oma-hero-v2__button:hover,
    .oma-hero-v2__button:focus-visible {
      color: #fff;
      border-color: var(--oma-hero-red);
      text-decoration: none;
    }

    .oma-hero-v2__button:hover::after,
    .oma-hero-v2__button:focus-visible::after {
      height: 140%;
    }

    .oma-hero-v2__arrow {
      position: absolute;
      z-index: 4;
      top: 50%;
      display: grid;
      place-items: center;
      width: clamp(2.35rem, 4vw, 3.25rem);
      height: clamp(2.35rem, 4vw, 3.25rem);
      padding: 0;
      border: 1px solid rgba(248, 241, 230, 0.58);
      border-radius: 999px;
      color: rgba(255, 255, 255, 0.94);
      background: rgba(21, 18, 15, 0.34);
      backdrop-filter: blur(8px) saturate(110%);
      -webkit-backdrop-filter: blur(8px) saturate(110%);
      transform: translateY(-50%);
      cursor: pointer;
      transition:
        color 220ms ease,
        border-color 220ms ease,
        background-color 220ms ease,
        transform 220ms ease;
    }

    .oma-hero-v2__arrow i {
      font-size: clamp(1.15rem, 2vw, 1.55rem);
      line-height: 1;
    }

    .oma-hero-v2__arrow:hover,
    .oma-hero-v2__arrow:focus-visible {
      color: #fff;
      border-color: var(--oma-hero-red);
      background: rgba(210, 77, 87, 0.74);
      transform: translateY(-50%) scale(1.04);
    }

    .oma-hero-v2__arrow--prev {
      left: clamp(1rem, 3vw, 2.25rem);
    }

    .oma-hero-v2__arrow--next {
      right: clamp(1rem, 3vw, 2.25rem);
    }

    .oma-hero-v2__dots {
      position: absolute;
      z-index: 4;
      left: 50%;
      bottom: clamp(1.5rem, 4vh, 2.75rem);
      display: flex;
      gap: 0.65rem;
      transform: translateX(-50%);
    }

    .oma-hero-v2__dot {
      width: 0.75rem;
      height: 0.75rem;
      padding: 0;
      border: 1px solid rgba(255, 255, 255, 0.82);
      border-radius: 999px;
      background: transparent;
      cursor: pointer;
      transition: background-color 200ms ease, transform 200ms ease, border-color 200ms ease;
    }

    .oma-hero-v2__dot.is-active,
    .oma-hero-v2__dot:hover,
    .oma-hero-v2__dot:focus-visible {
      background: var(--oma-hero-red);
      border-color: var(--oma-hero-red);
      transform: scale(1.12);
    }

    @media (max-width: 768px) {
      .oma-hero-v2 {
        min-height: 720px;
      }

      .oma-hero-v2__content {
        width: min(92vw, 680px);
        padding-top: 7rem;
      }

      .oma-hero-v2__title {
        font-size: clamp(2.45rem, 10.6vw, 3.85rem);
        line-height: 1.08;
      }

      .oma-hero-v2__subtitle {
        font-size: clamp(1.03rem, 4.3vw, 1.24rem);
      }

      .oma-hero-v2__button {
        min-width: 0;
        width: auto;
        max-width: 100%;
        padding: 15px 24px;
        white-space: normal;
      }

      .oma-hero-v2__arrow {
        top: auto;
        bottom: clamp(4.5rem, 9vh, 5.8rem);
        width: 2.45rem;
        height: 2.45rem;
      }

      .oma-hero-v2__arrow--prev {
        left: calc(50% - 3.9rem);
      }

      .oma-hero-v2__arrow--next {
        right: calc(50% - 3.9rem);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .oma-hero-v2__slide,
      .oma-hero-v2__button::after,
      .oma-hero-v2__arrow,
      .oma-hero-v2__dot {
        transition: none;
      }
    }
