/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  background: #232323;
  color: #fff;
  font-family: "DIN Next", "DIN Next LT Pro", Arial, sans-serif;
  font-family: "Roboto", sans-serif;
  scroll-behavior: smooth;

  overflow-x: hidden; /* prevent horizontal scroll */
}




/* =========================
   FONT: BESTONS
========================= */
@font-face {
  font-family: "Bestons";
  src: url("Fonts/Bestons-Regular.woff") format("woff"),
       url("Fonts/Bestons-Regular.eot");
  font-weight: normal;
  font-style: normal;
}

/* =========================
   NAVIGATION
========================= */
.nav-wrapper {
  position: fixed;       /* or absolute */
  top: 25px;
  left: 0;
  width: 100%;
  z-index: 1000;

  background: rgba(139, 13, 13, 0.65);
  backdrop-filter: blur(3px);

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35); /* 👈 drop shadow */
}

.nav {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 22px;          /* ⬆️ was ~18px */

  padding: 15px 30px; /* ⬆️ was ~10px 24px */
}

.nav a {
  font-family: 'DIN Next', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;

  font-size: 16px;      /* ⬆️ was 13px */
  letter-spacing: 1.6px;
  line-height: 1;

  color: #ffffff;
  text-decoration: none;
}

.divider {
  width: 1px;
  height: 22px;         /* ⬆️ was ~14px */
  background: rgba(255, 255, 255, 0.6);
}




/* =========================
   HERO WRAPPER
========================= */

.desktop {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  background-color: #ffffff;
}


.desktop .hero {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 1065px;

  position: relative;

  background-image: url(./Images/wafk-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.desktop .hero-contents {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  max-width: 1440px;

  padding: 80px 64px;

  position: relative;
}


.desktop .image {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.desktop .img {
  position: relative;
  width: 1153.5px;
  height: 763.19px;
  aspect-ratio: 1.78;
  object-fit: cover;
}

.desktop .frame {
  display: flex;
  flex-direction: column;
  height: 842px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 156px 0px 0px;
  position: relative;
  flex: 1;
  flex-grow: 1;
  margin-left: -503px;
}

.desktop .textbox {
  display: flex;
  flex-direction: column;
  width: 1128px;
  height: 686px;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 105px 315px;
  position: relative;
  background-color: #860605;
}

.desktop .div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 0px 3px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.desktop .div-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  
}

.desktop .text-wrapper {
  flex: 1;
  font-family: "Bestons", cursive;
  font-size: 84px;
  line-height: normal;
  position: relative;
  margin-top: -1.00px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0;
}

.desktop .the-year-is {
  position: relative;
  flex: 1;
  margin-top: -1.00px;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;

  color: #ffffff;
  font-size: 26px;
  letter-spacing: 0;
  line-height: 24px;
}

.desktop .button-wrapper {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
}

.button-wrapper a {
  text-decoration: none;
}

.desktop .button {
  display: flex;
  width: 282px;
  height: 60px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 35px;
  position: relative;
  border: 2px solid;
  border-color: #ffffff;
}

.desktop .p {
  position: relative;
  width: fit-content;
  margin-top: -1.50px;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 400;
  color: #ffffff;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0;
  line-height: 19px;
  white-space: nowrap;
}

.desktop .frame-2 {
  display: inline-flex;
  align-items: flex-start;
  gap: 11px;
  position: relative;
  flex: 0 0 auto;
}

.desktop .vector {
  height: 32px;
  position: relative;
  width: 32px;
}

.desktop .vector-2 {
  height: 33px;
  position: relative;
  width: 32px;
}

/* =========================
   HERO MOBILE VERSION
========================= */

@media (max-width: 768px) {

  /* Global safety */
  *, *::before, *::after {
    box-sizing: border-box;
  }

  /* Reset root layout for mobile */
  .desktop {
    display: block;          /* 🔑 stop flex at the root */
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #ffffff;
  }

  /* Hide desktop-only elements */
  .nav-wrapper {
    display: none;
  }

  .desktop .image {
    display: none;
  }

  /* HERO */
  .desktop .hero {
    min-height: auto;
    height: auto;
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  /* HERO CONTENTS */
  .desktop .hero-contents {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }

  /* FRAME (prevents collapse) */
  .desktop .frame {
    display: flex;
    width: 100%;
    height: auto;
    margin-left: 0px;
    padding: 0px 0px 0px;
  }

  /* RED PANEL = MOBILE HERO */
  .desktop .textbox {
    width: 100%;
    min-height: 100vh;
    height: auto;

    padding: 64px 35px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;        /* 🔑 allow full-width content */

    text-align: left;
    box-sizing: border-box;
  }

  /* Typography */
  .desktop .text-wrapper {
    font-size: clamp(50px, 13vw, 67px);
    line-height: 1.1;
    text-align: left;
  }

  .desktop .the-year-is {
    font-size: clamp(26px, 5vw, 46px);
    line-height: 1.5;
    text-align: left;
  }

  /* Button */
  .desktop .button {
    width: 100%;
    max-width: 280px;
  }

  /* Social icons */
  .desktop .frame-2 {
    justify-content: center;
  }
}

/* OPTIONAL: keep button + socials centered */
  .desktop .button-wrapper,
  .desktop .frame-2 {
    align-self: center;
}

/* =========================
   Synopsis WRAPPER
========================= */

.desktop .synopsis {
  display: flex;
  height: 1131px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0px 463px;
  position: relative;
  align-self: stretch;
  width: 100%;
  overflow: hidden;
  background-image: url(./Images/wafk-assets/synopsis-bg.jpg);
  background-size: cover;
  background-position: 50% 50%;
}

.desktop .rectangle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  flex: 1;
  flex-grow: 1;
  margin-top: -62.00px;
  margin-bottom: -62.00px;
}

.desktop .rectangle {
  position: relative;
  width: 994px;
  height: 1345px;
  background-color: #00000091;
}

.desktop .div-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: absolute;
  top: 126px;
  left: calc(50.00% - 168px);
}

.desktop .text-wrapper-2 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Bestons", cursive;
  font-weight: 400;
  color: #A70100;
  font-size: 164px;
  text-align: center;
  letter-spacing: 0;
  line-height: 165.5px;
  white-space: nowrap;
}

.desktop .frame-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: absolute;
  top: 315px;
  left: calc(50.00% - 379px);
}

.desktop .winter-as-frida-wrapper {
  display: flex;
  flex-direction: column;
  width: 758px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}

.desktop .winter-as-frida {
  align-self: stretch;
  height: 771px;
  font-family: "futura-pt", sans-serif;
  font-size: 19px;
  text-align: center;
  line-height: 25.9px;
  position: relative;
  margin-top: -1.00px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0;
}


/* =========================
   SYNOPSIS – MOBILE VERSION
========================= */

@media (max-width: 768px) {

  
.desktop .synopsis,
.desktop .production {
  position: relative;
  overflow: hidden;
}

.desktop .rectangle-wrapper,
.desktop .frame-3 {
  z-index: 0;
}

.desktop .div-wrapper,
.desktop .frame-wrapper,
.desktop .frame-4 {
  position: relative;
  z-index: 1;
}

  /* SECTION */
  .desktop .synopsis {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    height: auto;
    padding: 80px 24px;

    background-image: url(./Images/wafk-assets/synopsis-bg.jpg);
    background-size: cover;
    background-position: center;

    overflow: hidden;
  }

  /* OVERLAY */
  .desktop .rectangle-wrapper {
    position: absolute;
    inset: 0;
    margin: 0;
    pointer-events: none;
  }

  .desktop .rectangle {
    width: 100%;
    height: 100%;
  }

  /* HEADING */
  .desktop .div-wrapper {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 32px;
    justify-content: center;
  }

  .desktop .text-wrapper-2 {
    font-size: clamp(50px, 30vw, 104px);
    line-height: 1.1;
    text-align: center;
    white-space: normal;
  }

  /* TEXT BLOCK */
  .desktop .frame-wrapper {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    justify-content: center;
  }

  .desktop .winter-as-frida-wrapper {
    width: 100%;
    max-width: 520px;
  }

  .desktop .winter-as-frida {
    height: auto;
    font-size: clamp(18px, 6vw, 20px);
    line-height: 1.6;
    text-align: center;
  }
}


/* =========================
   Production WRAPPER
========================= */


.desktop .production {
  display: flex;
  height: 1172px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0px 463px;
  position: relative;
  align-self: stretch;
  width: 100%;
  overflow: hidden;
  background-image: url(./Images/wafk-assets/hero.jpg);
  background-size: cover;
  background-position: 50% 50%;
}

.desktop .frame-3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  flex: 1;
  flex-grow: 1;
  margin-top: -62.00px;
  margin-bottom: -62.00px;
}

.desktop .frame-4 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: 126px;
  left: calc(50.00% - 212px);
}

.desktop .winter-as-frida-2 {
  align-self: stretch;
  height: 832px;
  margin-top: -1.00px;
  line-height: 25.9px;
  position: relative;
  font-family: "futura-pt", sans-serif;
  font-size: 19px;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0;
}

/* =========================
   PRODUCTON – MOBILE VERSION
========================= */

@media (max-width: 768px) {

  /* SECTION */
  .desktop .production {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    height: auto;
    padding: 80px 24px;

    background-image: url(./Images/wafk-assets/hero.jpg);
    background-size: cover;
    background-position: center;

    overflow: visible;
  }

  /* OVERLAY */
  .desktop .frame-3 {
    position: absolute;
    inset: 0;
    margin: 0;
    pointer-events: none;
  }

  .desktop .frame-3 .rectangle {
    width: 100%;
    height: 100%;
  }

  /* HEADING */
  .desktop .frame-4 {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 32px;
    justify-content: center;
  }

  .desktop .text-wrapper-2 {
    font-size: clamp(50px, 30vw, 104px);
    line-height: 1.1;
    text-align: center;
    white-space: normal;
  }

  /* TEXT BLOCK */
  .desktop .frame-wrapper {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    justify-content: center;
  }

  .desktop .winter-as-frida-wrapper {
    width: 100%;
    max-width: 520px;
  }

  /*  BODY TEXT — SAME AS SYNOPSIS */
  .desktop .winter-as-frida-2 {
    height: auto;
    font-size: clamp(18px, 6vw, 20px);
    line-height: 1.6;
    text-align: center;
  }
}

/* =========================
   CAST WRAPPER
========================= */
.desktop .cast {
  isolation: isolate;
}

.desktop .cast {
  display: flex;
  flex-direction: column;
  height: auto;      /* or just remove height entirely */
  min-height: 1230px; /* optional: keeps desktop feel */
  align-items: center;
  justify-content: center;
  gap: 54px;
  padding: 81px 54px;
  position: relative;
  align-self: stretch;
  width: 100%;
  background-image: url(./Images/wafk-assets/cast-bg.jpg);
  background-size: cover;
  background-position: 50% 50%;
  z-index: 2;
}

.desktop .text-wrapper-3 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 141.72px;
  height: 109.1px;
  margin-top: -1.00px;
  font-family: "Bestons", cursive;
  font-weight: 400;
  color: #A70100;
  font-size: 103px;
  text-align: center;
  letter-spacing: 0;
  line-height: 24px;
}

.desktop .frame-5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(408px, 1fr));
  gap: 10px;
  width: 100%;
  max-width: 1920px;   /* 🔑 controls visual spacing */
  margin: 0 auto;      /* center the grid */
  justify-items: center;
}

.desktop .placeholder {
  width: 408px;
  height: 829.09px;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.desktop .image-2 {
  position: relative;
  width: 408px;
  height: 488.09px;
  aspect-ratio: 0.84;
  object-fit: cover;
}

.desktop .text {
  display: flex;
  flex-direction: column;
  height: 341px;
  align-self: stretch;
  width: 100%;
  align-items: center;
  justify-content: flex-start; /* 🔑 snap text to top */
  gap: 10px;
  padding: 0px 36px;
  position: relative;
  background-color: #83000a;
}

.desktop .text-wrapper-4 {
  margin-left: -0.11px;
  margin-right: -0.11px;
  position: relative;
  width: 336.22px;
  height: 287px;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  color: #ffffff;
  font-size: 19px;
  letter-spacing: 0;
  line-height: 24px;
}

.desktop .image-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
}

/* =========================
   CAST – MOBILE VERSION
========================= */

@media (max-width: 768px) {

  /* SECTION */
  .desktop .cast {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: 64px 24px;

    width: 100%;
    height: auto;

    background-image: url(./Images/wafk-assets/cast-bg.jpg);
    background-size: cover;
    background-position: center;
  }

  /* HEADING */
  .desktop .text-wrapper-3 {
    font-size: clamp(50px, 30vw, 104px);
    line-height: 1.1;
    text-align: center;
    color: #A70100;
  }

  /* CARD LIST */
  .desktop .frame-5 {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    max-width: 420px;
  }

  /* CARD */
  .desktop .placeholder {
    display: flex;
    flex-direction: column;
    width: 100%;
    
    height: auto;        /* 🔑 allow card to grow */
    overflow: visible;   /* 🔑 stop clipping */
  }

  /* IMAGE */
  .desktop .image-2 {
    width: 100%;
    height: auto;
    aspect-ratio: 0.84;
    object-fit: cover;
  }

  /* TEXT BOX */
  .desktop .text {
    width: 100%;
    padding: 24px;

    display: flex;
    justify-content: flex-start;
    align-items: flex-start;

    background-color: #83000a;
    height: auto;        /* 🔑 allow text to grow */
    min-height: unset;   /* safety reset */
  }

  /* TEXT */
  .desktop .text-wrapper-4 {
    width: 100%;
    height: auto;

    font-size: clamp(18px, 6vw, 20px); /* ← same as Synopsis */
    line-height: 1.6;
    text-align: left;
  }

}



/* =========================
   DESIGNERS SECTION — DESKTOP
========================= */

.desktop .designers {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 54px;

  padding: 81px 54px;
  width: 100%;

  background-image: url(./Images/wafk-assets/Designers-bg.jpg);
  background-size: cover;
  background-position: center;
}

/* ===== Heading ===== */

.desktop .frame-6 {
  display: flex;
  justify-content: center;
  width: 100%;
}

.desktop .text-wrapper-5 {
   position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 141.72px;
  height: 109.1px;
  margin-top: -1.00px;
  font-family: "Bestons", cursive;
  font-weight: 400;
  color: #A70100;
  font-size: 103px;
  text-align: center;
  letter-spacing: 0;
  line-height: 24px;
}

/* ===== Grid ===== */

.desktop .designers .frame-7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px;

  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

/* ===== Cards ===== */

.desktop .designers .frame-7 article {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* 🔑 snap contents to top */

  width: 100%;
  height: auto;
  overflow: visible;
}

/* ===== Image ===== */

.desktop .designers .image-2{
  width: 100%;
  height: auto;
  object-fit: unset;
  display: block;
}

/* ===== Text Box ===== */

.desktop .text-3 {
  flex: 1; /* 🔥 forces equal height based on tallest card */
  
  width: 100%;
  padding: 0 36px 24px 36px;

  background-color: #83000a;

  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.desktop .text-wrapper-6 {
  width: 100%;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  color: #ffffff;

  font-size: 19px;
  line-height: 1.5;
}


@media (max-width: 768px) {

/* =========================
   DESIGNERS – MOBILE VERSION
========================= */

@media (max-width: 768px) {

  /* SECTION */
  .desktop .designers {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: 64px 24px;

    width: 100%;
    height: auto;

    background-image: url(./Images/wafk-assets/Designers-bg.jpg);
    background-size: cover;
    background-position: center;
  }

  /* HEADING */
  .desktop .text-wrapper-5 {
    font-size: clamp(50px, 30vw, 104px);
    line-height: 1.1;
    text-align: center;
    color: #A70100;
  }

  /* CARD LIST */
  .desktop .frame-7 {
    display: flex;
    flex-direction: column;
    gap: 40px;

    width: 100%;
    max-width: 420px;
  }

  /* CARD */
  .desktop .frame-7 article {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;        /* 🔑 grow naturally */
    overflow: visible;   /* 🔑 no clipping */
  }

  /* IMAGE */
  .desktop .frame-7 .image-2 {
    width: 100%;
    height: auto;
    aspect-ratio: 0.84;
    object-fit: cover;
    display: block;
  }

  /* TEXT BOX */
  .desktop .text-3 {
    width: 100%;
    padding: 24px;

    display: flex;
    align-items: flex-start;
    justify-content: flex-start;

    background-color: #83000a;
    height: auto;        /* 🔑 content-driven height */
    min-height: unset;
  }

  /* TEXT */
  .desktop .text-wrapper-6 {
    width: 100%;
    height: auto;

    font-size: clamp(18px, 6vw, 20px); /* same as Cast + Synopsis */
    line-height: 1.6;
    text-align: left;
  }
}
}

/* =========================
   CTA SECTION (HERO-BASED)
========================= */
.desktop .CTA {
  align-items: center;
  justify-content: center;
  padding: 136px 41px;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-image: url(./Images/wafk-bg.jpg);
  background-size: cover;
  background-position: 50% 50%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.desktop .frame-8 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.desktop .rectangle-3 {
  position: relative;
  width: 1175px;
  height: 603px;
  object-fit: cover;
}

.desktop .CTA-card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0px 0px 0px 113px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  margin-top: -94px;
}

.desktop .CTA-card {
  width: 582px;
  min-height: 183px;
  align-items: center;
  gap: 17px;
  padding: 34px 167px;
  background-color: #860605;
  display: flex;
  flex-direction: column;
  position: relative;
}

.desktop .winter-as-frida-3 {
  width: 246.74px;
  min-height: 51.99px;
  margin-top: -1.00px;
  font-size: 20px;
  line-height: 23.4px;
  position: relative;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0;
}

.desktop .download-button {
  position: relative;
  width: 146.02px;
  height: 39.93px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.desktop .download-button:hover {
  opacity: 0.8;
}

.desktop .download-button:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.desktop .rectangle-4 {
  position: absolute;
  top: 0;
  left: 0;
  width: 144px;
  height: 40px;
  background-color: #282626;
}

.desktop .text-wrapper-7 {
  position: absolute;
  top: 14px;
  left: 0;
  width: 144px;
  height: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  color: #ffffff;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0;
  line-height: 16.4px;
  white-space: nowrap;
}

/* =========================
   CTA – MOBILE (Breakpoint)
========================= */

@media (max-width: 768px) {

  .desktop .CTA {
    height: auto;
    padding: 136px 24px;
    width: 100%;

    background-image: url(./Images/wafk-bg.jpg);
    background-size: cover;
    background-position: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    position: relative;
  }

  .desktop .frame-12 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    width: 100%;
    margin: 0; /* 🔑 remove negative margins */
  }

  .desktop .img-wrapper {
    display: none;
  }

  .desktop .CTA-card-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    padding: 0;
    margin-top: 0;
  }

  .desktop .CTA-card {
    width: 100%;
    max-width: 341px;

    padding: 32px 24px;
    gap: 17px;

    background-color: #860605;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .desktop .winter-as-frida-3 {
    width: 100%;
    height: auto;

    font-family: "futura-pt", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4;

    color: #ffffff;
    text-align: center;
  }
}

/* =========================
   FOOTER SECTION
========================= */

.desktop .footer {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 32px 24px;
  width: 100%;

  background-color: #860505;
}

.desktop .winter-as-frida-4 {
  max-width: 680px;
  width: 100%;

  font-family: "futura-pt", sans-serif;
  font-size: 16px;
  line-height: 1.5;

  color: #ffffff;
  text-align: center;
}

@media (max-width: 768px) {

  .desktop .footer {
    padding: 24px 20px;
  }

  .desktop .winter-as-frida-4 {
    width: 100%;
    max-width: 370px;
    font-size: 15px;
    line-height: 1.4;
  }

}



