* {
  box-sizing: border-box;
}

:root {
  --promo-bar-height: 37px;
  --content-width: min(80vw, 1382.4px);

  /* Desktop hero position */
  --hero-image-shift-x: 250px;

  /* Mobile hero position */
  --hero-mobile-image-x: 00px;
  --hero-mobile-image-y: 161px;

  /* Mobile popup image position */
  --popup-mobile-image-x: 0px;
  --popup-mobile-image-y: 0px;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  position: relative;
}

/* Top promo bar */

.promo-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;

  width: 100%;
  height: var(--promo-bar-height);
  margin: 0;
  padding: 0 16px;

  background-color: #AE0000;
  color: #ffffff;

  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  line-height: 1.3;

  border: none;
  cursor: pointer;
}

/* Hero background image */

.fixed-hero-image {
  position: absolute;
  top: var(--promo-bar-height);
  left: 0;
  z-index: 1;

  width: 100vw;
  height: calc(98.4px + min(36.6667vw, 633.6px) + 64px);

  background-image: url("Images/Hero image2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: calc(50% + var(--hero-image-shift-x)) top;

  pointer-events: none;
}

/* Main content */

.main-content {
  padding: 98.4px 64px 128px;
  display: flex;
  flex-direction: column;
  gap: 128px;

  position: relative;
  z-index: 2;
}

.section {
  width: 100%;
}

/* Section 1 - Hero */

.hero-text-section {
  width: var(--content-width);
  aspect-ratio: 1152 / 528;

  margin: 0 auto;
  position: relative;
}

.hero-text-content {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

  width: clamp(288px, 35vw, 672px);
}

.main-heading {
  margin: 0;

  font-family: 'EB Garamond', serif;
  font-size: clamp(35.2px, 4vw, 76.8px);
  font-weight: 400;
  line-height: clamp(40px, 4.5vw, 86.4px);
  letter-spacing: -0.02em;

  color: #251812;
}

.main-description {
  margin: 19.2px 0 0;

  font-family: 'Montserrat', sans-serif;
  font-size: clamp(12.8px, 1.12vw, 21.6px);
  font-weight: 400;
  line-height: 1.61;
  letter-spacing: 0;

  color: #4E4540;
}

/* Sections 2-6 */

.moment-section,
.story-section {
  width: var(--content-width);
  aspect-ratio: 1152 / 600;

  margin: 0 auto;
  position: relative;
}

.moment-text-content,
.story-text-content {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

  width: clamp(288px, 35vw, 672px);
}

.section-red-line {
  width: 38.4px;
  height: 1.6px;

  margin: 0 0 25.6px 0;

  background-color: #AE0000;
}

.section-heading {
  margin: 0;

  font-family: 'EB Garamond', serif;
  font-size: clamp(28.8px, 3vw, 57.6px);
  font-weight: 400;
  line-height: clamp(33.6px, 3.5vw, 67.2px);
  letter-spacing: -0.02em;

  color: #251812;
}

.section-description {
  margin: 19.2px 0 0;

  font-family: 'Montserrat', sans-serif;
  font-size: clamp(12.8px, 1.12vw, 21.6px);
  font-weight: 400;
  line-height: 1.61;
  letter-spacing: 0;

  color: #4E4540;
}

/* Slider group */

.slider-group {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);

  width: 45.833333%;
}

.story-section--reverse .story-text-content {
  left: auto;
  right: 0;
}

.story-section--reverse .slider-group {
  left: 0;
  right: auto;
}

.slider-caption {
  margin: 4px 0 0;

  width: 100%;

  font-family: 'Montserrat', sans-serif;
  font-size: clamp(9.6px, 0.75vw, 14.4px);
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
  letter-spacing: 0.08em;

  color: #5F5651;
  text-align: left;
}

/* CSS-only slider */

.css-slider {
  position: relative;

  width: 100%;
  aspect-ratio: 1 / 1;

  overflow: hidden;
  background-color: #f5f1ee;
}

.slider-radio {
  display: none;
}

.css-slider-track {
  width: 300%;
  height: 100%;

  display: flex;

  transition: transform 600ms ease-in-out;
}

.css-slide {
  width: 33.333333%;
  height: 100%;

  flex: 0 0 33.333333%;
}

.css-slide-image {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  display: block;
}

/* Slide movement */

.css-slider .slider-radio:nth-of-type(1):checked ~ .css-slider-track {
  transform: translateX(0);
}

.css-slider .slider-radio:nth-of-type(2):checked ~ .css-slider-track {
  transform: translateX(-33.333333%);
}

.css-slider .slider-radio:nth-of-type(3):checked ~ .css-slider-track {
  transform: translateX(-66.666666%);
}

/* Navigation zones */

.slider-nav {
  display: none;

  position: absolute;
  inset: 0;
  z-index: 5;

  pointer-events: none;
}

.css-slider .slider-radio:nth-of-type(1):checked ~ .slider-nav--1,
.css-slider .slider-radio:nth-of-type(2):checked ~ .slider-nav--2,
.css-slider .slider-radio:nth-of-type(3):checked ~ .slider-nav--3 {
  display: block;
}

.slider-zone {
  position: absolute;
  top: 0;

  width: 142px;
  height: 100%;

  cursor: pointer;
  pointer-events: auto;
}

.slider-zone--left {
  left: 0;
}

.slider-zone--right {
  right: 0;
}

/* Arrows */

.slider-arrow {
  position: absolute;
  top: 50%;

  width: 12px;
  height: auto;

  transform: translateY(-50%);

  pointer-events: none;
}

.slider-arrow--left {
  left: 25px;
  transform: translateY(-50%) scaleX(-1);
}

.slider-arrow--right {
  right: 25px;
}

/* Dots */

.css-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 25px;
  z-index: 6;

  transform: translateX(-50%);

  display: flex;
  gap: 10px;
}

.css-slider-dot {
  width: 8px;
  height: 8px;

  background-color: #ffffff;

  cursor: pointer;

  transition: background-color 600ms ease-in-out;
}

.css-slider .slider-radio:nth-of-type(1):checked ~ .css-slider-dots .css-slider-dot:nth-child(1),
.css-slider .slider-radio:nth-of-type(2):checked ~ .css-slider-dots .css-slider-dot:nth-child(2),
.css-slider .slider-radio:nth-of-type(3):checked ~ .css-slider-dots .css-slider-dot:nth-child(3) {
  background-color: #AE0000;
}

/* Section 7 - Final text */

.final-section {
  width: min(860.4px, 100%);
  height: 121.2px;

  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.final-top-text {
  margin: 0;

  font-family: 'EB Garamond', serif;
  font-size: 15.36px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;

  color: #251812;
}

.final-body-text {
  margin: 9.6px 0 0;

  font-family: 'Montserrat', sans-serif;
  font-size: 15.36px;
  font-weight: 400;
  line-height: 24.96px;
  letter-spacing: 0;

  color: #4E4540;
}

.final-link {
  margin: 14.4px 0 0;

  display: inline-block;

  font-family: 'Montserrat', sans-serif;
  font-size: 15.36px;
  font-weight: 400;
  line-height: 23.04px;
  letter-spacing: 1.536px;

  color: #251812;

  text-decoration: underline;
  text-decoration-color: #251812;
  text-underline-offset: 3.6px;

  border: none;
  background: transparent;
  padding: 0;

  cursor: pointer;
}

/* Text wrapping */

.main-heading,
.section-heading,
.final-top-text,
.popup-title {
  text-wrap: balance;
}

.main-description,
.section-description,
.final-body-text,
.popup-subtitle,
.popup-small-text {
  text-wrap: pretty;
}

/* CSS-only popup */

.popup-toggle {
  display: none;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 24px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 300ms ease,
    visibility 300ms ease;
}

.popup-backdrop {
  position: absolute;
  inset: 0;

  background-color: rgba(0, 0, 0, 0.75);

  cursor: pointer;
}

.popup-window {
  position: relative;
  z-index: 2;

  width: min(896px, 100%);
  height: min(603px, calc(100vh - 48px));

  background-color: #ffffff;

  display: grid;
  grid-template-columns: 1fr 1fr;

  overflow: hidden;

  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);

  opacity: 0;
  transform: translateY(70px);

  transition:
    opacity 784ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 784ms cubic-bezier(0.22, 1, 0.36, 1);
}

.popup-toggle:checked ~ .popup-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.popup-toggle:checked ~ .popup-overlay .popup-window {
  opacity: 1;
  transform: translateY(0);
}

.popup-image-side {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.popup-image-side img,
.popup-image-side picture,
.popup-image-side picture img {
  width: 100%;
  height: 100%;
  display: block;
}

.popup-image-side img,
.popup-image-side picture img {
  object-fit: cover;
  object-position: center;
}

.popup-content-side {
  padding: 56px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  text-align: left;
}

.popup-red-line {
  width: 40px;
  height: 1px;

  margin: 0 0 20px;

  background-color: #AE0000;
}

.popup-title {
  margin: 0;

  font-family: 'EB Garamond', serif;
  font-size: 56px;
  font-weight: 500;
  line-height: 56px;
  letter-spacing: 0;

  color: #251812;
}

.popup-subtitle {
  margin: 12px 0 0;

  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0;

  color: #4E4540;
}

.popup-code-box {
  margin: 100px 0 0;

  width: 100%;
  height: 62px;

  padding: 0 16px;

  border: 1px solid rgba(37, 24, 18, 0.22);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.popup-code-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 2.4px;

  color: #807570;
}

.popup-code {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 2.4px;

  color: #251812;
}

.popup-copy-button {
  margin: 12px 0 0;

  width: 100%;
  height: 65px;

  border: none;
  background-color: #AE0000;
  color: #ffffff;

  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 1.6px;

  text-align: center;
  cursor: pointer;
}

.popup-small-text {
  margin: 20px 0 0;

  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0;

  color: rgba(78, 69, 64, 0.55);
}

.popup-continue {
  margin: 10px 0 0;

  display: inline-block;

  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 1.6px;

  color: #251812;

  text-decoration: underline;
  text-decoration-color: #251812;
  text-underline-offset: 3px;

  border: none;
  background: transparent;
  padding: 0;

  cursor: pointer;
}

.popup-terms {
  margin: 10px 0 0;

  display: inline-block;

  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: -0.5px;

  color: rgba(78, 69, 64, 0.55);

  text-decoration: none;
}


/* Popup close */

.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;

  width: 22px;
  height: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;

  color: rgba(37, 24, 18, 0.55);
  background: rgba(255, 255, 255, 0.72);

  cursor: pointer;
  user-select: none;
}

/* Mobile layout */

@media (max-width: 768px) {
  :root {
    --promo-bar-height: 37px;
    --content-width: min(80vw, 1382.4px);

    /* Desktop hero position */
    --hero-image-shift-x: 0px;

    /* Mobile hero position */
    --hero-mobile-image-x: 00px;
    --hero-mobile-image-y: 161px;
  }

  .promo-bar {
    height: var(--promo-bar-height);
    padding: 0 14px;

    font-size: 11px;
    line-height: 1.3;
    letter-spacing: 0.4px;
  }

  .fixed-hero-image {
    top: var(--promo-bar-height);
    height: 620px;

    background-image: url("Images/Hero image4.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position:
      calc(50% + var(--hero-mobile-image-x))
      calc(0% + var(--hero-mobile-image-y));
  }

  .main-content {
    padding: 92px 20px 72px;
    gap: 80px;
  }

  .section {
    width: 100%;
  }

  .hero-text-section {
    width: 100%;
    min-height: 520px;
    aspect-ratio: auto;
  }

  .hero-text-content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;

    width: 100%;
    max-width: 360px;

    padding-top: 0px;
  }

  .main-heading {
    font-size: 42px;
    line-height: 46px;
  }

  .main-description {
    margin-top: 16px;

    font-size: 14px;
    line-height: 23px;
  }

  .main-description br,
  .section-description br,
  .final-body-text br {
    display: none;
  }

  .moment-section,
  .story-section {
    width: 100%;
    height: auto;
    aspect-ratio: auto;

    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .moment-text-content,
  .story-text-content,
  .story-section--reverse .story-text-content {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;

    width: 100%;
    max-width: 100%;
  }

  .slider-group,
  .story-section--reverse .slider-group {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;

    width: 100%;
  }

  .section-red-line {
    width: 36px;
    height: 1.5px;
    margin-bottom: 22px;
  }

  .section-heading {
    font-size: 38px;
    line-height: 43px;
  }

  .section-description {
    margin-top: 16px;

    font-size: 14.5px;
    line-height: 24px;
  }

  .css-slider {
    width: 100%;
    aspect-ratio: 1 / 1;
  }

  .slider-zone {
    width: 72px;
  }

  .slider-arrow--left {
    left: 18px;
  }

  .slider-arrow--right {
    right: 18px;
  }

  .css-slider-dots {
    bottom: 18px;
  }

  .slider-caption {
    margin-top: 6px;

    font-size: 10px;
    line-height: 1.4;
  }

  .final-section {
    width: 100%;
    height: auto;
    max-width: 620px;
    padding: 0 24px;
  }

  .final-top-text {
    max-width: 520px;
    margin: 0 auto;

    font-size: 16px;
    line-height: 22px;

    text-wrap: balance;
  }

  .final-body-text {
    max-width: 620px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;

    font-size: 13px;
    line-height: 21px;

    text-wrap: balance;
  }

  .final-link {
    margin-top: 16px;

    font-size: 13px;
    line-height: 20px;
    letter-spacing: 1.3px;
  }

  .popup-overlay {
    padding: 16px;
  }

  .popup-window {
    width: min(70vw, 270px);
    height: auto;
    max-height: 82vh;

    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .popup-image-side {
    height: 130px;
  }

  .popup-image-side picture img {
    object-position:
      calc(50% + var(--popup-mobile-image-x))
      calc(50% + var(--popup-mobile-image-y));
  }

  .popup-content-side {
    padding: 22px;
  }

  .popup-red-line {
    width: 32px;
    margin-bottom: 14px;
  }

  .popup-title {
    font-size: 30px;
    line-height: 32px;
  }

  .popup-subtitle {
    margin-top: 8px;

    font-size: 15px;
    line-height: 20px;
  }

  .popup-code-box {
    margin-top: 24px;

    height: 46px;
    padding: 0 10px;
    gap: 10px;
  }

  .popup-code-label {
    font-size: 9px;
    line-height: 13px;
    letter-spacing: 1.8px;
  }

  .popup-code {
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 1.8px;
  }

  .popup-copy-button {
    margin-top: 10px;

    height: 46px;

    font-size: 13px;
    line-height: 18px;
    letter-spacing: 1.3px;
  }

  .popup-small-text {
    margin-top: 14px;

    font-size: 8.5px;
    line-height: 13px;
  }

  .popup-continue {
    margin-top: 8px;

    font-size: 12.5px;
    line-height: 18px;
  }

  .popup-terms {
    margin-top: 8px;

    font-size: 7.5px;
    line-height: 11px;
  }
  .site-footer {
  width: 100%;
  padding-top: 28px;
}

.footer-red-line {
  width: 36px;
  height: 1.5px;
  margin-bottom: 18px;
}

.footer-title {
  font-size: 10px;
  line-height: 16px;
  letter-spacing: 1.4px;
}

.footer-disclosure {
  font-size: 9px;
  line-height: 16px;
}

.footer-links {
  margin-top: 18px;
  gap: 14px;
}

.footer-links a {
  font-size: 9px;
  line-height: 16px;
  letter-spacing: 0.8px;
}
}
/* Footer */

.site-footer {
  width: var(--content-width);
  margin: 0 auto;

  padding-top: 32px;

  border-top: 1px solid rgba(37, 24, 18, 0.12);
}

.footer-red-line {
  width: 38.4px;
  height: 1.6px;

  margin: 0 0 20px;

  background-color: #AE0000;
}

.footer-title {
  margin: 0;

  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 1.6px;

  color: #251812;

  text-transform: uppercase;
}

.footer-disclosure {
  max-width: 860.4px;

  margin: 12px 0 0;

  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0;

  color: #5F5651;

  text-wrap: pretty;
}

.footer-links {
  margin: 20px 0 0;

  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 1px;

  color: #251812;

  text-decoration: underline;
  text-decoration-color: #251812;
  text-underline-offset: 3px;

  text-transform: uppercase;
}

/* Cookie banner */

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 10001;

  max-width: 720px;
  margin: 0 auto;
  padding: 18px 20px;

  background-color: #ffffff;
  border: 1px solid rgba(37, 24, 18, 0.14);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.16);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;

  transition:
    opacity 420ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 420ms ease;
}



.cookie-text {
  margin: 0;

  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0;

  color: rgba(78, 69, 64, 0.72);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-button {
  height: 36px;
  padding: 0 16px;

  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 1px;

  border: 1px solid #AE0000;
  cursor: pointer;
}

.cookie-button--primary {
  background-color: #AE0000;
  color: #ffffff;
}

.cookie-button--secondary {
  background-color: #AE0000;
  color: #ffffff;
}

@media (max-width: 768px) {
  .popup-close {
    top: 8px;
    right: 8px;

    width: 20px;
    height: 20px;

    font-size: 14px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;

    padding: 16px;

    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-button {
    width: 100%;
  }
}


.popup-terms,
.popup-terms:hover,
.popup-terms:focus,
.popup-terms:visited {
  text-decoration: none;
}


/* Cookie banner click animation */

.cookie-banner--hiding {
  opacity: 0;
  visibility: hidden;
  transform: translateY(36px);
  pointer-events: none;
}

.cookie-banner--hidden {
  display: none;
}

/* FOUC fix for returning visitors with saved cookie consent */

.cookie-consent-saved .cookie-banner {
  display: none;
}

/* Popup affiliate note */

.popup-affiliate-note {
  margin: 10px 0 0;

  font-family: 'Montserrat', sans-serif;
  font-size: 9.5px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0;

  color: rgba(78, 69, 64, 0.55);
}

@media (max-width: 768px) {
  .popup-affiliate-note {
    margin-top: 8px;

    font-size: 7.8px;
    line-height: 12px;
  }
}

/* Desktop popup spacing fix after affiliate note */

@media (min-width: 769px) {
  .popup-code-box {
    margin-top: 48px;
  }

  .popup-affiliate-note {
    margin-top: 8px;
  }

  .popup-small-text {
    margin-top: 18px;
  }
}


/* Accessibility-safe button resets for popup controls */

.promo-bar,
.final-link,
.popup-backdrop,
.popup-close {
  appearance: none;
  -webkit-appearance: none;
}

.popup-backdrop,
.popup-close {
  border: none;
  padding: 0;
}


/* Lighthouse contrast fixes */

.slider-caption {
  color: #5F5651;
}

.footer-disclosure {
  color: #5F5651;
}

/* Final contrast balance */

.slider-caption {
  color: rgba(128, 117, 112, 0.3);
}

.footer-title {
  color: #251812;
}

.footer-disclosure {
  color: #4E4540;
}

.popup-code-label,
.popup-affiliate-note,
.popup-small-text,
.popup-terms,
.popup-terms:hover,
.popup-terms:focus,
.popup-terms:visited {
  color: #4E4540;
}

/* Cookie buttons equal visual weight */

.cookie-button--secondary {
  background-color: #AE0000;
  color: #ffffff;
}

/* Index hero spacing and responsive image position fixes */

/* On smaller desktop widths, keep the hero image from drifting too far right. */
@media (min-width: 769px) and (max-width: 1440px) {
  :root {
    --hero-image-shift-x: 120px;
  }
}

@media (min-width: 769px) and (max-width: 1180px) {
  :root {
    --hero-image-shift-x: 40px;
  }
}

/* Mobile/Telegram fix: keep the promo bar in the normal page flow
   so the hero text does not slide underneath it while scrolling. */
@media (max-width: 768px) {
  .promo-bar {
    position: relative;
    top: auto;
    left: auto;
  }

  .main-content {
    padding-top: 24px;
    gap: 56px;
  }

  .hero-text-section {
    min-height: 510px;
  }

  .hero-text-content {
    padding-top: 0;
    transform: none;
  }

  .fixed-hero-image {
    height: 590px;
  }
}

/* Mobile section divider fix */

@media (max-width: 768px) {
  .moment-section {
    padding-top: 34px;
  }
}

/* Mobile fixed promo bar fix */

@media (max-width: 768px) {
  .promo-bar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 9999;
  }

  .main-content {
    padding-top: calc(var(--promo-bar-height) + 24px);
  }

  .fixed-hero-image {
    top: var(--promo-bar-height);
  }
}
