/* COSMOSKIN desktop campaign billboard — mobile remains owned by mobile-redesign. */
.cs-billboard {
  display: none !important;
}

@media (min-width: 769px) {
  #heroSection.home-hero {
    background: #d9e8f2;
  }

  #heroSection .home-hero__canvas {
    min-height: 0;
    padding: 0;
    background: #d9e8f2;
  }

  #heroSection .cs-billboard {
    --billboard-duration: 8000ms;
    --billboard-ease: cubic-bezier(.22, 1, .36, 1);
    display: block !important;
    position: relative;
    isolation: isolate;
    width: 100%;
    height: clamp(720px, calc(100vh - 221px), 879px);
    height: clamp(720px, calc(100svh - 221px), 879px);
    min-height: 720px;
    max-height: none;
    aspect-ratio: auto;
    overflow: hidden;
    color: #16120e;
    background: #d9e8f2;
    cursor: default;
  }

  .cs-billboard__slides,
  .cs-billboard__slide {
    position: absolute;
    inset: 0;
  }

  .cs-billboard__slide {
    z-index: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .95s ease, visibility 0s linear .95s;
  }

  .cs-billboard__slide.is-active {
    z-index: 1;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity .95s ease, visibility 0s linear 0s;
  }

  .cs-billboard__slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
  }

  .cs-billboard__slide--cosrx::after {
    background:
      linear-gradient(90deg, transparent 0 49%, rgba(226, 241, 250, .04) 57%, rgba(229, 242, 250, .22) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(210, 229, 240, .06));
  }

  .cs-billboard__media,
  .cs-billboard__media picture,
  .cs-billboard__poster {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
  }

  .cs-billboard__media {
    z-index: 1;
    overflow: hidden;
    transform: scale(1.018) translate3d(var(--billboard-media-x, 0), var(--billboard-media-y, 0), 0);
    transition: transform 1.4s var(--billboard-ease);
    will-change: transform;
  }

  .cs-billboard__poster {
    object-fit: cover;
    object-position: 50% 43%;
    user-select: none;
    -webkit-user-drag: none;
  }

  .cs-billboard__atmosphere {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    transform: translate3d(var(--billboard-atmosphere-x, 0), var(--billboard-atmosphere-y, 0), 0);
    transition: transform 1.2s var(--billboard-ease);
  }

  .cs-billboard__atmosphere i {
    position: absolute;
    display: block;
    width: var(--bubble-size, 24px);
    height: var(--bubble-size, 24px);
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 50%;
    opacity: .46;
    background:
      radial-gradient(circle at 30% 25%, rgba(255, 255, 255, .92) 0 4%, transparent 13%),
      radial-gradient(circle at 68% 72%, rgba(121, 184, 219, .16), transparent 48%);
    box-shadow:
      inset 0 0 12px rgba(255, 255, 255, .45),
      0 8px 24px rgba(87, 157, 194, .1);
    animation: csBillboardFloat var(--bubble-duration, 10s) ease-in-out var(--bubble-delay, 0s) infinite alternate;
  }

  .cs-billboard__atmosphere i:nth-child(1) { left: 8%; top: 29%; --bubble-size: 18px; --bubble-duration: 11s; }
  .cs-billboard__atmosphere i:nth-child(2) { left: 45%; top: 17%; --bubble-size: 34px; --bubble-delay: -4s; --bubble-duration: 13s; }
  .cs-billboard__atmosphere i:nth-child(3) { left: 56%; top: 45%; --bubble-size: 16px; --bubble-delay: -7s; --bubble-duration: 9s; }
  .cs-billboard__atmosphere i:nth-child(4) { right: 9%; top: 12%; --bubble-size: 24px; --bubble-delay: -2s; --bubble-duration: 12s; }
  .cs-billboard__atmosphere i:nth-child(5) { right: 5%; bottom: 22%; --bubble-size: 12px; --bubble-delay: -6s; --bubble-duration: 10s; }

  @keyframes csBillboardFloat {
    from { transform: translate3d(-3px, 7px, 0) scale(.96); }
    to { transform: translate3d(8px, -13px, 0) scale(1.04); }
  }

  .cs-billboard__copy {
    position: absolute;
    z-index: 4;
    width: min(520px, 39vw);
    top: clamp(74px, 10.8%, 108px);
    color: #13110e;
  }

  .cs-billboard__copy--right {
    right: clamp(66px, 7.1vw, 112px);
  }

  .cs-billboard__copy--left {
    left: clamp(72px, 7.1vw, 112px);
  }

  .cs-billboard__brand {
    margin: 0 0 25px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .2em;
    line-height: 1;
  }

  .cs-billboard__headline {
    max-width: 620px;
    margin: 0;
    color: inherit;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(67px, 5.7vw, 86px);
    font-weight: 400;
    letter-spacing: -.042em;
    line-height: .88;
    text-wrap: balance;
  }

  .cs-billboard__headline--compact {
    font-size: clamp(62px, 5.1vw, 78px);
  }

  .cs-billboard__support {
    max-width: 470px;
    margin: 29px 0 0;
    color: rgba(19, 17, 14, .77);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(15px, 1.25vw, 18px);
    font-weight: 500;
    letter-spacing: -.012em;
    line-height: 1.65;
  }

  .cs-billboard__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
  }

  .cs-billboard__cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    min-width: 190px;
    min-height: 54px;
    padding: 0 18px 0 22px;
    border: 1px solid rgba(18, 15, 11, .24);
    border-radius: 999px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .055em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition:
      color .24s ease,
      background .24s ease,
      border-color .24s ease,
      transform .24s var(--billboard-ease),
      box-shadow .24s ease;
  }

  .cs-billboard__cta svg {
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
    transition: transform .24s var(--billboard-ease);
  }

  .cs-billboard__cta:hover {
    transform: translateY(-2px);
  }

  .cs-billboard__cta:hover svg {
    transform: translateX(3px);
  }

  .cs-billboard__cta--primary {
    color: #fff;
    border-color: #12100d;
    background: #12100d;
    box-shadow: 0 14px 30px rgba(17, 14, 10, .17);
  }

  .cs-billboard__cta--primary:hover {
    color: #fff;
    background: #211c17;
    box-shadow: 0 18px 38px rgba(17, 14, 10, .23);
  }

  .cs-billboard__cta--secondary {
    color: #17130f;
    background: rgba(255, 255, 255, .48);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .cs-billboard__cta--secondary:hover {
    color: #17130f;
    border-color: rgba(18, 15, 11, .45);
    background: rgba(255, 255, 255, .78);
  }

  .cs-billboard__slide--split {
    background: #edf2ed;
  }

  .cs-billboard__slide--split::after {
    background: linear-gradient(90deg, rgba(247, 245, 238, .98) 0 38%, rgba(247, 245, 238, .84) 47%, rgba(247, 245, 238, .06) 71%);
  }

  .cs-billboard__slide--anua {
    background: #e7f0ec;
  }

  .cs-billboard__slide--boj {
    background: #f3e8d9;
  }

  .cs-billboard__slide--roundlab {
    background: #e8f1f4;
  }

  .cs-billboard__split-media {
    position: absolute;
    inset: 0 0 0 42%;
    z-index: 1;
    overflow: hidden;
    transform: scale(1.025) translate3d(var(--billboard-media-x, 0), var(--billboard-media-y, 0), 0);
    transition: transform 1.4s var(--billboard-ease);
  }

  .cs-billboard__split-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 46%;
    filter: saturate(.94) contrast(.98);
  }

  .cs-billboard__slide--split .cs-billboard__copy {
    top: 18%;
  }

  .cs-billboard__slide--split .cs-billboard__brand {
    color: #8f6e42;
  }

  .cs-billboard__slide--split .cs-billboard__support {
    max-width: 410px;
  }

  .cs-billboard__edge {
    position: absolute;
    z-index: 7;
    top: 50%;
    display: grid;
    place-items: center;
    width: 46px;
    height: 58px;
    padding: 0;
    color: #17130f;
    border: 1px solid rgba(21, 17, 13, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .4);
    box-shadow: 0 10px 28px rgba(16, 24, 29, .08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transform: translateY(-50%);
    cursor: pointer;
    transition:
      background .22s ease,
      border-color .22s ease,
      transform .22s var(--billboard-ease);
  }

  .cs-billboard__edge:hover {
    border-color: rgba(21, 17, 13, .36);
    background: rgba(255, 255, 255, .72);
  }

  .cs-billboard__edge--prev {
    left: 22px;
  }

  .cs-billboard__edge--next {
    right: 22px;
  }

  .cs-billboard__edge svg {
    width: 21px;
    height: 21px;
  }

  .cs-billboard__footer {
    position: absolute;
    z-index: 8;
    right: clamp(62px, 5.2vw, 82px);
    bottom: 26px;
    left: clamp(62px, 5.2vw, 82px);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    pointer-events: none;
  }

  .cs-billboard__timeline,
  .cs-billboard__previews {
    pointer-events: auto;
  }

  .cs-billboard__timeline {
    display: grid;
    grid-template-columns: auto minmax(130px, 238px) 38px;
    align-items: center;
    gap: 15px;
    min-height: 48px;
    padding: 7px 8px 7px 16px;
    border: 1px solid rgba(21, 17, 13, .15);
    border-radius: 999px;
    background: rgba(255, 255, 255, .48);
    box-shadow: 0 14px 34px rgba(32, 45, 52, .1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .cs-billboard__count {
    min-width: 52px;
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    line-height: 1;
  }

  .cs-billboard__progress {
    position: relative;
    height: 2px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(22, 18, 14, .2);
  }

  .cs-billboard__progress span {
    position: absolute;
    inset: 0;
    display: block;
    background: #17130f;
    transform: scaleX(0);
    transform-origin: left center;
  }

  .cs-billboard.is-progressing .cs-billboard__progress span {
    animation: csBillboardProgress var(--billboard-duration) linear both;
  }

  .cs-billboard.is-paused .cs-billboard__progress span {
    animation-play-state: paused;
  }

  @keyframes csBillboardProgress {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
  }

  .cs-billboard__pause {
    position: relative;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    padding: 0;
    color: #17130f;
    border: 1px solid rgba(21, 17, 13, .18);
    border-radius: 50%;
    background: rgba(255, 255, 255, .52);
    cursor: pointer;
  }

  .cs-billboard__pause-icon {
    position: relative;
    width: 11px;
    height: 13px;
  }

  .cs-billboard__pause-icon::before,
  .cs-billboard__pause-icon::after {
    content: "";
    position: absolute;
    top: 1px;
    width: 3px;
    height: 11px;
    border-radius: 2px;
    background: currentColor;
  }

  .cs-billboard__pause-icon::before { left: 1px; }
  .cs-billboard__pause-icon::after { right: 1px; }

  .cs-billboard__pause[aria-pressed="true"] .cs-billboard__pause-icon::before {
    top: 1px;
    left: 2px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 9px solid currentColor;
    border-radius: 0;
    background: transparent;
  }

  .cs-billboard__pause[aria-pressed="true"] .cs-billboard__pause-icon::after {
    display: none;
  }

  .cs-billboard__previews {
    display: flex;
    align-items: flex-end;
    gap: 8px;
  }

  .cs-billboard__preview {
    position: relative;
    width: 92px;
    height: 58px;
    padding: 0;
    overflow: hidden;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .58);
    border-radius: 9px;
    background: rgba(255, 255, 255, .3);
    box-shadow: 0 12px 28px rgba(21, 31, 37, .12);
    cursor: pointer;
    opacity: .68;
    transform-origin: bottom center;
    transition:
      opacity .22s ease,
      border-color .22s ease,
      transform .22s var(--billboard-ease);
  }

  .cs-billboard__preview:hover,
  .cs-billboard__preview[aria-current="true"] {
    opacity: 1;
    border-color: rgba(255, 255, 255, .92);
    transform: translateY(-3px);
  }

  .cs-billboard__preview img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
  }

  .cs-billboard__preview::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(9, 8, 7, .55));
  }

  .cs-billboard__preview span {
    position: absolute;
    z-index: 1;
    right: 7px;
    bottom: 6px;
    left: 7px;
    overflow: hidden;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .1em;
    line-height: 1;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .cs-billboard__edge:focus-visible,
  .cs-billboard__pause:focus-visible,
  .cs-billboard__preview:focus-visible,
  .cs-billboard__cta:focus-visible {
    outline: 2px solid #17130f;
    outline-offset: 3px;
  }

  .cs-billboard__slide.is-active .cs-billboard__brand,
  .cs-billboard__slide.is-active .cs-billboard__headline,
  .cs-billboard__slide.is-active .cs-billboard__support,
  .cs-billboard__slide.is-active .cs-billboard__actions {
    animation: csBillboardCopyIn .85s var(--billboard-ease) both;
  }

  .cs-billboard__slide.is-active .cs-billboard__brand { animation-delay: .08s; }
  .cs-billboard__slide.is-active .cs-billboard__headline { animation-delay: .14s; }
  .cs-billboard__slide.is-active .cs-billboard__support { animation-delay: .21s; }
  .cs-billboard__slide.is-active .cs-billboard__actions { animation-delay: .28s; }

  @keyframes csBillboardCopyIn {
    from { opacity: 0; transform: translate3d(0, 18px, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
  }
}

@media (min-width: 769px) and (max-width: 1280px) {
  .cs-billboard__copy--right {
    right: 62px;
    width: min(470px, 40vw);
  }

  .cs-billboard__headline {
    font-size: clamp(60px, 5.5vw, 72px);
  }

  .cs-billboard__brand {
    margin-bottom: 20px;
  }

  .cs-billboard__support {
    margin-top: 23px;
    font-size: 15px;
  }

  .cs-billboard__actions {
    margin-top: 26px;
  }

  .cs-billboard__cta {
    min-width: 178px;
    min-height: 50px;
    font-size: 11px;
  }

  .cs-billboard__preview {
    width: 82px;
    height: 52px;
  }

  .cs-billboard__timeline {
    grid-template-columns: auto minmax(110px, 180px) 38px;
  }
}

@media (min-width: 769px) and (prefers-reduced-motion: reduce) {
  .cs-billboard__slide,
  .cs-billboard__media,
  .cs-billboard__split-media,
  .cs-billboard__atmosphere,
  .cs-billboard__cta,
  .cs-billboard__edge,
  .cs-billboard__preview {
    transition: none !important;
  }

  .cs-billboard__atmosphere i,
  .cs-billboard__slide.is-active .cs-billboard__brand,
  .cs-billboard__slide.is-active .cs-billboard__headline,
  .cs-billboard__slide.is-active .cs-billboard__support,
  .cs-billboard__slide.is-active .cs-billboard__actions,
  .cs-billboard__progress span {
    animation: none !important;
  }
}

@media (max-width: 768px) {
  #heroSection.home-hero {
    padding: 0 !important;
    overflow: hidden !important;
    border-bottom: 0 !important;
    background: #dce8ee !important;
  }

  #heroSection .home-hero__canvas {
    display: block !important;
    width: 100% !important;
    height: clamp(620px, calc(100svh - var(--cs-mobile-bottom-nav-height, 74px) - 118px), 700px) !important;
    min-height: 620px !important;
    max-height: 700px !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: #dce8ee !important;
  }

  #heroSection .home-hero__canvas::before,
  #heroSection .home-hero__canvas::after,
  #heroSection .home-hero__media,
  #heroSection .home-hero__grid,
  #heroSection .home-hero__trust {
    display: none !important;
  }

  #heroSection .cs-billboard {
    --billboard-duration: 8000ms;
    --billboard-ease: cubic-bezier(.22, 1, .36, 1);
    position: relative !important;
    isolation: isolate !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    overflow: hidden !important;
    color: #fffdf9 !important;
    background: #dce8ee !important;
    touch-action: pan-y !important;
  }

  #heroSection .cs-billboard__slides,
  #heroSection .cs-billboard__slide {
    position: absolute !important;
    inset: 0 !important;
  }

  #heroSection .cs-billboard__slide {
    z-index: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity .65s ease, visibility 0s linear .65s !important;
  }

  #heroSection .cs-billboard__slide.is-active {
    z-index: 1 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transition: opacity .65s ease, visibility 0s linear 0s !important;
  }

  #heroSection .cs-billboard__media,
  #heroSection .cs-billboard__media picture,
  #heroSection .cs-billboard__poster,
  #heroSection .cs-billboard__split-media,
  #heroSection .cs-billboard__split-media img {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
  }

  #heroSection .cs-billboard__media,
  #heroSection .cs-billboard__split-media {
    z-index: 1 !important;
    overflow: hidden !important;
  }

  #heroSection .cs-billboard__poster,
  #heroSection .cs-billboard__split-media img {
    object-fit: cover !important;
    transform: scale(1.015) !important;
    transition: transform 8s linear !important;
    user-select: none !important;
    -webkit-user-drag: none !important;
  }

  #heroSection .cs-billboard__slide.is-active .cs-billboard__poster,
  #heroSection .cs-billboard__slide.is-active .cs-billboard__split-media img {
    transform: scale(1.065) !important;
  }

  #heroSection .cs-billboard__slide--cosrx .cs-billboard__poster {
    object-position: 39% 50% !important;
  }

  #heroSection .cs-billboard__slide--anua .cs-billboard__split-media img {
    object-position: 52% 42% !important;
  }

  #heroSection .cs-billboard__slide--boj .cs-billboard__split-media img {
    object-position: 48% 43% !important;
  }

  #heroSection .cs-billboard__slide--roundlab .cs-billboard__split-media img {
    object-position: 50% 44% !important;
  }

  #heroSection .cs-billboard__slide::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    pointer-events: none !important;
    background:
      linear-gradient(180deg, rgba(13, 12, 10, .02) 0%, rgba(13, 12, 10, .03) 35%, rgba(13, 12, 10, .2) 58%, rgba(13, 11, 9, .9) 100%),
      linear-gradient(90deg, rgba(10, 9, 8, .08), transparent 35%, rgba(10, 9, 8, .03)) !important;
  }

  #heroSection .cs-billboard__copy {
    position: absolute !important;
    z-index: 4 !important;
    top: auto !important;
    right: 20px !important;
    bottom: 94px !important;
    left: 20px !important;
    width: auto !important;
    color: #fffdf9 !important;
    text-align: left !important;
    text-shadow: 0 2px 16px rgba(0, 0, 0, .2) !important;
  }

  #heroSection .cs-billboard__brand {
    margin: 0 0 12px !important;
    color: rgba(255, 253, 249, .88) !important;
    font: 700 9px/1 "Plus Jakarta Sans", system-ui, sans-serif !important;
    letter-spacing: .25em !important;
    text-transform: uppercase !important;
  }

  #heroSection .cs-billboard__headline,
  #heroSection .cs-billboard__headline--compact {
    max-width: 10.6ch !important;
    margin: 0 !important;
    color: #fffdf9 !important;
    font: 400 clamp(40px, 11.2vw, 54px)/.88 "Cormorant Garamond", Georgia, serif !important;
    letter-spacing: -.045em !important;
    text-wrap: balance !important;
  }

  #heroSection .cs-billboard__support {
    max-width: 37ch !important;
    margin: 14px 0 0 !important;
    color: rgba(255, 253, 249, .8) !important;
    font: 500 12px/1.5 "Plus Jakarta Sans", system-ui, sans-serif !important;
    letter-spacing: -.01em !important;
  }

  #heroSection .cs-billboard__support br {
    display: none !important;
  }

  #heroSection .cs-billboard__actions {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 18px !important;
  }

  #heroSection .cs-billboard__cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 9px !important;
    min-width: 0 !important;
    min-height: 44px !important;
    padding: 0 13px !important;
    overflow: hidden !important;
    border-radius: 999px !important;
    font: 700 8.5px/1 "Plus Jakarta Sans", system-ui, sans-serif !important;
    letter-spacing: .055em !important;
    text-decoration: none !important;
    text-overflow: ellipsis !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
  }

  #heroSection .cs-billboard__cta--primary {
    flex: 1.05 1 0 !important;
    color: #17130f !important;
    border: 1px solid #fffdf9 !important;
    background: #fffdf9 !important;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .16) !important;
  }

  #heroSection .cs-billboard__cta--secondary {
    flex: .95 1 0 !important;
    color: #fffdf9 !important;
    border: 1px solid rgba(255, 253, 249, .42) !important;
    background: rgba(17, 14, 11, .24) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
  }

  #heroSection .cs-billboard__cta svg {
    width: 13px !important;
    height: 13px !important;
    flex: 0 0 13px !important;
  }

  #heroSection .cs-billboard__atmosphere,
  #heroSection .cs-billboard__edge,
  #heroSection .cs-billboard__previews {
    display: none !important;
  }

  #heroSection .cs-billboard__footer {
    position: absolute !important;
    z-index: 5 !important;
    right: 20px !important;
    bottom: 22px !important;
    left: 20px !important;
    display: block !important;
    pointer-events: none !important;
  }

  #heroSection .cs-billboard__timeline {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) 32px !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100% !important;
  }

  #heroSection .cs-billboard__count {
    margin: 0 !important;
    color: rgba(255, 253, 249, .9) !important;
    font: 700 9px/1 "Plus Jakarta Sans", system-ui, sans-serif !important;
    letter-spacing: .08em !important;
  }

  #heroSection .cs-billboard__progress {
    position: relative !important;
    height: 1px !important;
    overflow: hidden !important;
    background: rgba(255, 253, 249, .3) !important;
  }

  #heroSection .cs-billboard__progress span {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    background: #fffdf9 !important;
    transform: scaleX(0) !important;
    transform-origin: left center !important;
  }

  #heroSection .cs-billboard.is-progressing:not(.is-paused) .cs-billboard__progress span {
    animation: csBillboardMobileProgress var(--billboard-duration) linear both !important;
  }

  #heroSection .cs-billboard__pause {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    height: 32px !important;
    padding: 0 !important;
    pointer-events: auto !important;
    border: 1px solid rgba(255, 253, 249, .38) !important;
    border-radius: 50% !important;
    color: #fffdf9 !important;
    background: rgba(14, 12, 10, .2) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
  }

  #heroSection .cs-billboard__pause-icon {
    position: relative !important;
    display: block !important;
    width: 9px !important;
    height: 11px !important;
  }

  #heroSection .cs-billboard__pause-icon::before,
  #heroSection .cs-billboard__pause-icon::after {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    width: 2px !important;
    height: 11px !important;
    border-radius: 1px !important;
    background: currentColor !important;
  }

  #heroSection .cs-billboard__pause-icon::before {
    left: 1px !important;
  }

  #heroSection .cs-billboard__pause-icon::after {
    right: 1px !important;
  }

  #heroSection .cs-billboard.is-paused .cs-billboard__pause-icon::before {
    top: 1px !important;
    left: 1px !important;
    width: 0 !important;
    height: 0 !important;
    border-top: 5px solid transparent !important;
    border-bottom: 5px solid transparent !important;
    border-left: 8px solid currentColor !important;
    border-radius: 0 !important;
    background: transparent !important;
  }

  #heroSection .cs-billboard.is-paused .cs-billboard__pause-icon::after {
    display: none !important;
  }

  #heroSection .cs-billboard__pause:focus-visible,
  #heroSection .cs-billboard__cta:focus-visible {
    outline: 2px solid #fffdf9 !important;
    outline-offset: 3px !important;
  }

  #heroSection .cs-billboard__slide.is-active .cs-billboard__brand,
  #heroSection .cs-billboard__slide.is-active .cs-billboard__headline,
  #heroSection .cs-billboard__slide.is-active .cs-billboard__support,
  #heroSection .cs-billboard__slide.is-active .cs-billboard__actions {
    animation: csBillboardMobileCopyIn .72s var(--billboard-ease) both !important;
  }

  #heroSection .cs-billboard__slide.is-active .cs-billboard__headline {
    animation-delay: .05s !important;
  }

  #heroSection .cs-billboard__slide.is-active .cs-billboard__support {
    animation-delay: .11s !important;
  }

  #heroSection .cs-billboard__slide.is-active .cs-billboard__actions {
    animation-delay: .17s !important;
  }

  @keyframes csBillboardMobileCopyIn {
    from { opacity: 0; transform: translate3d(0, 14px, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
  }

  @keyframes csBillboardMobileProgress {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
  }
}

@media (max-width: 374px) {
  #heroSection .home-hero__canvas {
    height: clamp(580px, calc(100svh - var(--cs-mobile-bottom-nav-height, 74px) - 108px), 660px) !important;
    min-height: 580px !important;
  }

  #heroSection .cs-billboard__copy {
    right: 16px !important;
    left: 16px !important;
  }

  #heroSection .cs-billboard__support {
    display: none !important;
  }

  #heroSection .cs-billboard__actions {
    margin-top: 16px !important;
  }

  #heroSection .cs-billboard__cta {
    padding: 0 11px !important;
    font-size: 8px !important;
  }
}

@media (max-width: 768px) and (max-height: 720px) {
  #heroSection .home-hero__canvas {
    height: clamp(500px, calc(100svh - var(--cs-mobile-bottom-nav-height, 74px) - 98px), 560px) !important;
    min-height: 500px !important;
  }

  #heroSection .cs-billboard__support {
    display: none !important;
  }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  #heroSection .cs-billboard__slide,
  #heroSection .cs-billboard__poster,
  #heroSection .cs-billboard__split-media img,
  #heroSection .cs-billboard__slide.is-active .cs-billboard__brand,
  #heroSection .cs-billboard__slide.is-active .cs-billboard__headline,
  #heroSection .cs-billboard__slide.is-active .cs-billboard__support,
  #heroSection .cs-billboard__slide.is-active .cs-billboard__actions,
  #heroSection .cs-billboard__progress span {
    animation: none !important;
    transition: none !important;
  }
}

/* Mobile hero v3 — photography and copy use distinct editorial surfaces. */
@media (max-width: 768px) {
  body.cs-mobile-v1-active.cs-route-home #heroSection.home-hero {
    padding: 10px 12px 22px !important;
    background: #fffdf9 !important;
  }

  body.cs-mobile-v1-active.cs-route-home #heroSection .home-hero__canvas {
    width: 100% !important;
    height: clamp(620px, calc(100svh - 178px), 720px) !important;
    min-height: 620px !important;
    max-height: 720px !important;
    overflow: hidden !important;
    border: 1px solid rgba(51, 40, 29, .1) !important;
    border-radius: 28px !important;
    background: #fffdf9 !important;
    box-shadow: 0 28px 64px -38px rgba(45, 32, 20, .45) !important;
  }

  body.cs-mobile-v1-active.cs-route-home #heroSection .cs-billboard,
  body.cs-mobile-v1-active.cs-route-home #heroSection .cs-billboard__slides {
    background: #fffdf9 !important;
  }

  body.cs-mobile-v1-active.cs-route-home #heroSection .cs-billboard__slide {
    display: grid !important;
    grid-template-rows: minmax(0, 1fr) 312px !important;
    background: #fffdf9 !important;
  }

  body.cs-mobile-v1-active.cs-route-home #heroSection .cs-billboard__media,
  body.cs-mobile-v1-active.cs-route-home #heroSection .cs-billboard__split-media {
    position: relative !important;
    inset: auto !important;
    grid-row: 1 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    border-radius: 0 !important;
    background: #eee5db !important;
  }

  body.cs-mobile-v1-active.cs-route-home #heroSection .cs-billboard__media picture,
  body.cs-mobile-v1-active.cs-route-home #heroSection .cs-billboard__poster,
  body.cs-mobile-v1-active.cs-route-home #heroSection .cs-billboard__split-media img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
  }

  body.cs-mobile-v1-active.cs-route-home #heroSection .cs-billboard__slide::after {
    inset: 0 0 312px !important;
    height: auto !important;
    background: linear-gradient(180deg, rgba(17, 13, 10, .02), transparent 68%, rgba(17, 13, 10, .11)) !important;
  }

  body.cs-mobile-v1-active.cs-route-home #heroSection .cs-billboard__copy {
    position: relative !important;
    inset: auto !important;
    grid-row: 2 !important;
    align-self: stretch !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 312px !important;
    padding: 20px 18px 64px !important;
    overflow: hidden !important;
    color: #1a1510 !important;
    text-align: left !important;
    text-shadow: none !important;
    background:
      radial-gradient(circle at 92% 10%, rgba(181, 138, 74, .1), transparent 34%),
      linear-gradient(145deg, #fffdf9 0%, #f9f2e9 100%) !important;
    box-shadow: 0 -18px 38px rgba(26, 21, 16, .07) !important;
  }

  body.cs-mobile-v1-active.cs-route-home #heroSection .cs-billboard__brand {
    margin: 0 0 10px !important;
    color: #9a713d !important;
    font-size: 9px !important;
    letter-spacing: .22em !important;
  }

  body.cs-mobile-v1-active.cs-route-home #heroSection .cs-billboard__headline,
  body.cs-mobile-v1-active.cs-route-home #heroSection .cs-billboard__headline--compact {
    max-width: 16ch !important;
    color: #1a1510 !important;
    font: 600 clamp(30px, 7.7vw, 36px)/.94 "Plus Jakarta Sans", system-ui, sans-serif !important;
    letter-spacing: -.055em !important;
  }

  body.cs-mobile-v1-active.cs-route-home #heroSection .cs-billboard__support {
    max-width: 42ch !important;
    margin: 10px 0 0 !important;
    color: #695f55 !important;
    font: 500 11.5px/1.45 "Plus Jakarta Sans", system-ui, sans-serif !important;
    text-shadow: none !important;
  }

  body.cs-mobile-v1-active.cs-route-home #heroSection .cs-billboard__actions {
    gap: 8px !important;
    margin-top: 14px !important;
  }

  body.cs-mobile-v1-active.cs-route-home #heroSection .cs-billboard__cta {
    min-height: 44px !important;
    padding-inline: 12px !important;
    font-size: 8px !important;
    letter-spacing: .045em !important;
  }

  body.cs-mobile-v1-active.cs-route-home #heroSection .cs-billboard__cta--primary {
    color: #fffdf9 !important;
    border-color: #1a1510 !important;
    background: #1a1510 !important;
    box-shadow: 0 10px 24px rgba(26, 21, 16, .16) !important;
  }

  body.cs-mobile-v1-active.cs-route-home #heroSection .cs-billboard__cta--secondary {
    color: #1a1510 !important;
    border-color: rgba(26, 21, 16, .18) !important;
    background: rgba(255, 253, 249, .7) !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  body.cs-mobile-v1-active.cs-route-home #heroSection .cs-billboard__footer {
    right: 18px !important;
    bottom: 13px !important;
    left: 18px !important;
    color: #1a1510 !important;
  }

  body.cs-mobile-v1-active.cs-route-home #heroSection .cs-billboard__count {
    color: #62574d !important;
  }

  body.cs-mobile-v1-active.cs-route-home #heroSection .cs-billboard__progress {
    background: rgba(26, 21, 16, .16) !important;
  }

  body.cs-mobile-v1-active.cs-route-home #heroSection .cs-billboard__progress span {
    background: #b58a4a !important;
  }

  body.cs-mobile-v1-active.cs-route-home #heroSection .cs-billboard__pause {
    color: #1a1510 !important;
    border-color: rgba(26, 21, 16, .16) !important;
    background: rgba(255, 253, 249, .82) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  body.cs-mobile-v1-active.cs-route-home #heroSection .cs-billboard__pause:focus-visible,
  body.cs-mobile-v1-active.cs-route-home #heroSection .cs-billboard__cta:focus-visible {
    outline-color: #b58a4a !important;
  }
}

@media (max-width: 374px) {
  body.cs-mobile-v1-active.cs-route-home #heroSection .home-hero__canvas {
    height: 620px !important;
    min-height: 620px !important;
    max-height: 620px !important;
  }

  body.cs-mobile-v1-active.cs-route-home #heroSection .cs-billboard__slide {
    grid-template-rows: minmax(0, 1fr) 304px !important;
  }

  body.cs-mobile-v1-active.cs-route-home #heroSection .cs-billboard__slide::after {
    inset: 0 0 304px !important;
  }

  body.cs-mobile-v1-active.cs-route-home #heroSection .cs-billboard__copy {
    min-height: 304px !important;
    padding-inline: 16px !important;
  }

  body.cs-mobile-v1-active.cs-route-home #heroSection .cs-billboard__headline,
  body.cs-mobile-v1-active.cs-route-home #heroSection .cs-billboard__headline--compact {
    font-size: 29px !important;
  }
}
