
  .ice-video-hero {
    width: min(100%, 1480px);
    margin: 0 auto clamp(24px, 4vw, 56px);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    aspect-ratio: 16 / 7;
    min-height: 430px;
    max-height: 760px;
    background: #050505;
    border-radius: clamp(14px, 1.6vw, 24px);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
  }

  .ice-video-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.18) 48%, rgba(0, 0, 0, 0.24) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0) 48%, rgba(0, 0, 0, 0.28) 100%);
  }

  .ice-video-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: inherit;
  }

  .ice-video-hero__media {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transform: scale(1.01);
  }

  .ice-video-hero__content {
    position: absolute;
    left: clamp(24px, 5vw, 76px);
    bottom: clamp(26px, 5vw, 72px);
    z-index: 3;
    width: min(560px, calc(100% - 48px));
    color: #fff;
  }

  .ice-video-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: #e5bf73;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .ice-video-hero__eyebrow::before {
    content: "";
    width: 36px;
    height: 1px;
    background: currentColor;
  }

  .ice-video-hero__title {
    max-width: 520px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 5vw, 72px);
    font-weight: 700;
    line-height: 0.94;
    letter-spacing: 0;
    text-transform: uppercase;
    text-shadow: 0 8px 34px rgba(0, 0, 0, 0.42);
  }

  .ice-video-hero__text {
    max-width: 500px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(14px, 1.25vw, 17px);
    line-height: 1.65;
  }

  .ice-video-hero__proofs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
  }

  .ice-video-hero__proofs span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .ice-video-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 24px;
    padding: 0 24px;
    border: 1px solid #f4d28c;
    border-radius: 999px;
    background: #f0c66f;
    color: #090909;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.30);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  }

  .ice-video-hero__button:hover {
    transform: translateY(-2px);
    background: #ffe09a;
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.38);
  }

  @media screen and (max-width: 1024px) {
    .ice-video-hero {
      width: calc(100% - 32px);
      aspect-ratio: 16 / 9;
      min-height: 360px;
      max-height: 560px;
    }
  }

  @media screen and (max-width: 768px) {
    .ice-video-hero {
      width: calc(100% - 24px);
      margin-bottom: 32px;
      aspect-ratio: 4 / 5;
      min-height: 340px;
      max-height: 520px;
      border-radius: 16px;
      box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
    }

    .ice-video-hero::before {
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.05) 34%, rgba(0, 0, 0, 0.74) 100%);
    }

    .ice-video-hero__content {
      left: 20px;
      right: 20px;
      bottom: 24px;
      width: auto;
    }

    .ice-video-hero__eyebrow {
      margin-bottom: 12px;
      font-size: 10px;
      letter-spacing: 0.12em;
    }

    .ice-video-hero__title {
      max-width: 340px;
      font-size: clamp(31px, 9vw, 46px);
      line-height: 0.98;
    }

    .ice-video-hero__text {
      max-width: 330px;
      margin-top: 12px;
      font-size: 13px;
      line-height: 1.5;
    }

    .ice-video-hero__proofs {
      gap: 8px;
      margin-top: 14px;
    }

    .ice-video-hero__proofs span {
      min-height: 30px;
      padding: 0 10px;
      font-size: 10px;
      letter-spacing: 0.06em;
    }

    .ice-video-hero__button {
      min-height: 42px;
      margin-top: 16px;
      padding: 0 18px;
      font-size: 11px;
    }
  }

  @media screen and (max-width: 480px) {
    .ice-video-hero {
      width: calc(100% - 20px);
      min-height: 300px;
      max-height: 460px;
    }
  }
