  :root {
    --container: 800px;
  }

  div.wp-block-group:has(#hero) {
    padding-right:0px!important;
    padding-left:0px!important;
  }

  .otr-hero {
    position: relative;
    padding: 36px 0 0;
    background:
      linear-gradient(180deg, #ffffff 0 62%, #fbf5ea 62% 100%);
  }

  .otr-hero__content {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
    padding: 70px 0 86px;
  }

  .otr-hero__stage {
    position: relative;
    min-height: 215px;
  }

  .otr-hero__copy {
    position: absolute;
    left: 0;
    top: 0px;
    margin-top: 70px;
    z-index: 2;
    width: min(44vw, 450px);
  }

  .otr-hero__eyebrow {
    display: inline-block;
    margin-bottom: 22px;
    color: #8c6549;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .otr-hero__logo {
    width: min(450px, 90%);
    filter: sepia(0.25) saturate(0.9);
  }

  .otr-hero__lead {
    margin: 0% 0 0 44px;
    color: #6b4631;
    font-size: clamp(1rem, 1.7vw, 1.15rem);
    line-height: 1.9;
    letter-spacing: 0.1em;
  }

  .otr-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0 0 44px;
  }

  .otr-hero__visual {
    position: absolute;
    right: 0;
    top: 34px;
    width: min(60vw, 590px);
    aspect-ratio: 16 / 9;
    border-radius: 34px;
    overflow: hidden;
    background: #f6f0ea;
    box-shadow: 0 22px 45px rgba(82, 57, 40, 0.12);
  }

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

  .otr-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.4s ease;
  }

  .otr-hero__slide.is-active {
    opacity: 1;
  }

  .otr-hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .otr-hero__veil {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(80, 50, 32, 0.04));
  }

  .otr-hero__wave {
    display: block;
    color: #fbf5ea;
  }

  @media (max-width: 960px) {
    .otr-hero__stage {
      min-height: 0;
      display: grid;
      gap: 28px;
    }

    .otr-hero__copy,
    .otr-hero__visual {
      position: static;
      width: 100%;
    }

    .otr-hero__content {
      padding-top: 38px;
      padding-bottom: 70px;
    }
  }

  @media (max-width: 640px) {
    .otr-hero {
      padding-top: 20px;
      background: white;
    }
    .otr-hero__media {
      height: 420px;
    }

    .otr-hero__content {
      width: 100%;
      padding-top: 24px;
      padding-bottom: 56px;
    }

    .otr-hero__stage {
      gap: 0;
    }

    .otr-hero__visual {
      order: 1;
      aspect-ratio: 16 / 8.2;
      border-radius: 0;
      box-shadow: none;
    }

    .otr-hero__copy {
      order: 2;
      width: 100%;
      margin-top: 0;
      /* transform: translateY(-42px); */
      transform: translateY(40px);
      text-align: center;
      z-index: 3;
    }

    .otr-hero__eyebrow {
      margin-bottom: 14px;
    }

    .otr-hero__logo {
      width: 500px;
      margin: 0 auto;
    }

    .otr-hero__veil{
      display: none;
    }
    .otr-hero__wave {
      display: none;
    }

    .otr-hero__lead {
      width: min(340px, 88%);
      margin: 22px auto 0;
      padding: 12px 0;
      border-top: 1px solid #7b523b;
      border-bottom: 1px solid #7b523b;
      color: #5a321f;
      font-size: 1.05rem;
      line-height: 1.9;
      letter-spacing: 0.1em;
      text-align: center;
    }

    .otr-hero__actions {
      margin-left: 0;
      flex-direction: column;
      align-items: stretch;
    }
  }
