.desktop section[id] {
  scroll-margin-top: 140px;
}
main { 
    display: flex;
    flex-direction: column;
    align-items: center;
}
.site-nav {
  position: fixed;
  top: 28px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;
  transition: transform 0.35s ease;
}

.site-nav.nav-hidden {
transform: translateY(-160%);
}

.site-nav .nav-links {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 24px 36px;
  border-radius: 8px;
  backdrop-filter: blur(24px);
  pointer-events: auto;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.site-nav .nav-logo {
display: inline-flex;
align-items: center;
line-height: 0;
}

.site-nav .nav-logo-img {
width: 52px;
height: auto;
display: block;
}

.site-nav .nav-logo-img--dark {
display: none;
}

.site-nav.is-dark .nav-logo-img--light {
display: none;
}

.site-nav.is-dark .nav-logo-img--dark {
display: block;
}

.site-nav .nav-separator {
width: 1px;
height: 32px;
background: rgba(47, 44, 39, 0.2);
}

.site-nav.is-dark .nav-separator {
background: rgba(250, 247, 242, 0.2);
}

.site-nav.is-light .nav-links {
  background-color: transparent;
  border: 1px solid transparent;
  box-shadow: none;
  color: #2f2c27;
}

.site-nav.is-light.nav-scrolled .nav-links {
  background-color: rgba(255, 255, 255, 0.1); 
  border: 1px solid rgba(47, 44, 39, 0.1); 
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.08);
}

.site-nav.is-dark .nav-links {
  background-color: rgba(14, 13, 12, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  color: #f5eee0;
}

.site-nav .nav-links a {
  font-family: "Inter-Medium", Helvetica;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  position: relative;
  padding-bottom: 8px;
}

.site-nav .nav-menu .nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.site-nav .nav-links a:hover::after,
.site-nav .nav-links a.is-active::after,
.site-nav .nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav .nav-links a.is-active {
  opacity: 1;
}

.site-nav.is-dark .nav-links a.is-active,
.site-nav.is-dark .nav-links a:hover,
.site-nav.is-dark .nav-links a:focus-visible {
  color: rgba(245, 238, 224, 0.96);
}

.site-nav.is-dark .nav-links a.is-active::after,
.site-nav.is-dark .nav-links a:hover::after,
.site-nav.is-dark .nav-links a:focus-visible::after {
  background-color: rgba(245, 238, 224, 0.9);
}

.site-nav .nav-links a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 6px;
}

@media (max-width: 900px) {
  .site-nav {
    top: 18px;
  }

  .site-nav .nav-links {
    gap: 18px;
    padding: 12px 26px;
  }

  .site-nav .nav-separator {
    height: 28px;
  }
}

@media (max-width: 720px) {
  .site-nav {
    top: 14px;
  }

  .site-nav .nav-links {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px 18px;
    padding: 12px 18px;
  }

  .site-nav .nav-separator {
    order: 3;
    width: 100%;
    height: 1px;
    background: rgba(47, 44, 39, 0.16);
  }

  .site-nav.is-dark .nav-separator {
    background: rgba(250, 247, 242, 0.18);
  }
}

@media (max-width: 900px) {
  .site-footer .footer-brand {
    align-items: center;
    text-align: center;
  }

  .site-footer .footer-brand-logos {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .site-footer .footer-brand {
    align-items: center;
    text-align: center;
  }
}
.desktop {
  position: relative;
    width: 100%;
    min-height: 100vh;
    background: #fbf7f3;
  }
  
  /* Pattern de grille subtil pour les sections beige */
  .desktop::before {
    content: '';
  position: absolute;
    top: 0;
  left: 0;
    width: 100%;
    height: 100%;
    background-image: 
      linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
  }
  
  /* Hero Section */
  .desktop .hero-section {
    position: relative;
    width: 1440px;
    min-height: auto;
    background: #faf7f2;
    background-image: 
      linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    padding: 133px 80px 80px;
    z-index: 1;
    display: flex;
    flex-direction: column;
  }
  
  .desktop .hero-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    display: none;
  }

  .desktop .hero-date,
  .desktop .hero-location {
    display: inline-block;
    width: fit-content;
    padding: 6px 16px;
    background-color: #fec652;
    border-radius: 20px;
    font-family: "Inter-Regular", Helvetica;
    font-weight: 400;
    font-size: clamp(12px, 1.6vw, 13px);
    color: #2f2c27;
  }
  
  .desktop .hero-title {
    font-family: "Inter-Bold", Helvetica;
    font-weight: 700;
    font-size: 62px;
    line-height: 60px;
    color: #2f2c27;
    width: 100%;
    max-width: 504px;
    letter-spacing: -0.015em;
    margin: 0 0 16px 0;
  }
  
  .desktop .hero-subtitle {
    font-family: "Inter-Regular", Helvetica;
    font-weight: 600;
    font-size: clamp(16px, 2.2vw, 18px);
    line-height: clamp(26px, 3.2vw, 30px);
    color: #2f2c27;
    /* margin: 0 0 16px 0; */
    width: fit-content;
    max-width: 520px;
  }

  .desktop .hero-tagline {
    font-family: "Inter-Bold", Helvetica;
    font-weight: 700;
    font-size: clamp(24px, 3.5vw, 32px);
    line-height: clamp(32px, 4.2vw, 40px);
    color: #fec652;
    margin: 0 0 24px 0;
    width: fit-content;
    max-width: 520px;
    letter-spacing: -0.012em;
  }
  
  .desktop .hero-description {
    font-family: "Inter-Regular", Helvetica;
    font-weight: 400;
    font-size: clamp(16px, 2.2vw, 18px);
    line-height: clamp(26px, 3.2vw, 30px);
    color: #2f2c27;
    width: 100%;
    max-width: 520px;
    margin: 0 0 32px 0;
  }
  
  .desktop .hero-cta-button {
    padding: clamp(14px, 2.5vw, 16px) clamp(28px, 4.5vw, 32px);
    background-color: #2f2c27;
    color: #faf7f2;
    border: none;
    border-radius: 8px;
    font-family: "Inter-SemiBold", Helvetica;
    font-weight: 600;
    font-size: clamp(16px, 2.4vw, 18px);
    cursor: pointer;
    margin-bottom: clamp(16px, 3vw, 24px);
    transition: background-color 0.3s ease;
    width: fit-content;
    max-width: 312px;
  }
  
  .desktop .hero-cta-button:hover {
    background-color: #1a1815;
    width: fit-content;
  }
  
  .desktop .hero-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    width: fit-content;
  }
  
  .desktop .hero-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 24px;
  font-family: "Inter-Medium", Helvetica;
  font-weight: 500;
    font-size: clamp(13px, 1.8vw, 14px);
    letter-spacing: 0.01em;
  }

  .desktop .hero-badge-date,
  .desktop .hero-badge-location {
    background-color: #fec652;
    color: #2f2c27;
  }

  .desktop .hero-badge-duration {
    background-color: #2f2c27;
  color: #faf7f2;
}

  .desktop .hero-image-wrapper {
  position: absolute;
  top: 7rem;
  right: 80px;
  width: clamp(360px, 40vw, 580px);
  aspect-ratio: 16 / 14;
  height: auto;
  border-radius: 12px;
  overflow: hidden;
  }
  
  .desktop .hero-video-mask {
    width: 100%;
    height: 100%;
    position: relative;
    mask: url(#mask-2);
    -webkit-mask: url(#mask-2);
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
    overflow: hidden;
  }
  
  .desktop .hero-video-mask video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .desktop .hero-video-trigger {
  position: absolute;
    inset: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 2;
    padding: 0;
  }

  .desktop .hero-video-trigger:focus {
    outline: none;
  }

  .desktop .hero-video-trigger:focus-visible {
    outline: 2px solid #fec652;
    outline-offset: 4px;
  }

  .desktop .play-button-overlay {
  position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.85);
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .desktop .hero-image-wrapper:hover .play-button-overlay,
  .desktop .hero-video-trigger:focus-visible + .play-button-overlay {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
  }
  
  /* Section noire avec Schedule */
  .desktop .dark-section {
    position: relative;
    width: 100%;
    max-width: 1349px;
    margin: 0 auto;
    background-color: rgb(40 40 40);
    padding: 100px 80px 140px;
    border-radius: 23px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    background-image: url(img/background.png);
  }
  
  /* Feature Boxes / Dossiers */
  .desktop .feature-boxes {
    position: relative;
    width: 100%;
    max-width: 1352px;
    margin: -55px auto 0;
    margin-bottom: 2rem;
    padding: 0;
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    align-items: flex-start;
    z-index: 10;
  }
  
  .desktop .feature-box {
    flex: 0 1 auto;
    position: relative;
  width: 442px;
    aspect-ratio: 443 / 233;
    transition: all 0.3s ease;
  }
  
  .desktop .feature-box:hover {
    transform: translateY(-6px);
  }
  
  .desktop .folder-shape {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .desktop .folder-svg {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
    transition: filter 0.3s ease;
  }
  
  .desktop .feature-box:hover .folder-svg {
    filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.18));
  }
  
  .desktop .feature-content {
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 36px 32px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    box-sizing: border-box;
  }
  
  .desktop .feature-box-yellow {
    color: #2f2c27;
  }
  
  .desktop .feature-box-dark {
    color: #faf7f2;
    cursor: pointer;
  }
  
  .desktop .feature-box-dark:hover {
    transform: translateY(-6px);
  }
  
  .desktop .folder-shape-dark {
    position: relative;
    width: 99.9%;
    height: 100%;
  }
  
  .desktop .folder-svg-dark {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    transition: filter 0.3s ease;
  }
  
  .desktop .feature-content-dark {
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 44px 48px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    box-sizing: border-box;
    z-index: 2;
  }
  
  .desktop .feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: block;
  }

  .desktop .feature-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  
  .desktop .feature-text {
    font-family: "Inter-SemiBold", Helvetica;
    font-weight: 600;
    font-size: clamp(16px, 2.2vw, 24px);
    line-height: clamp(22px, 3.2vw, 28px);
    color: #2f2c27;
    margin: 0;
    letter-spacing: -0.015em;
    max-width: 300px;
  }

  .desktop .feature-text-dark {
    font-family: "Inter-Bold", Helvetica;
    font-weight: 700;
    font-size: clamp(22px, 4vw, 32px);
    line-height: clamp(28px, 4.6vw, 38px);
    color: #faf7f2;
    margin: 0;
    letter-spacing: -0.012em;
    max-width: 260px;
  }
  
  .desktop .arrow-icon {
    align-self: center;
    width: clamp(40px, 5vw, 48px);
    height: clamp(40px, 5vw, 48px);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .desktop .arrow-icon svg {
    width: clamp(34px, 4.6vw, 50px);
    height: clamp(34px, 4.6vw, 50px);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
  }

  .desktop .arrow-icon svg path {
    stroke: #fec652;
    stroke-width: 2.6;
  }

  .desktop .feature-box-dark:hover .arrow-icon svg {
    transform: rotate(0deg);
  }
  
  /* Rectangle de connexion entre la card noire et la section */
  .desktop .connection-rectangle {
    position: absolute;
    bottom: -4rem;
    left: 0.5px;
    width: 99.5%;
    height: 5rem;
    background-color: #282828;
    z-index: 9;
  }
  
  /* Section Schedule - Zone noire */
  .desktop .schedule-section {
    --schedule-progress: 0;
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
  }

  .desktop .schedule-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    margin: 0 auto;
    position: relative;
    top: auto;
    padding-bottom: 0;
    background: none;
    backdrop-filter: none;
    z-index: 3;
  }

  .desktop .schedule-heading .schedule-label,
  .desktop .schedule-heading .what-you-will-do {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }

  .desktop .schedule-heading .what-you-will-do {
    transition-delay: 0.12s;
  }

  .desktop .schedule-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    justify-content: center;
  }
  
  .desktop .schedule {
    font-family: "Inter-Regular", Helvetica;
    font-weight: 400;
    color: #fec652;
    font-size: 16px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    line-height: normal;
  }
  
  .desktop .ellipse {
    width: 12px;
    height: 12px;
    background-color: #fec652;
    border-radius: 50%;
    flex-shrink: 0;
  }
  
  .desktop .what-you-will-do {
  font-family: "Inter-Medium", Helvetica;
  font-weight: 500;
  color: #e4dccf;
    font-size: clamp(36px, 5.6vw, 64px);
  letter-spacing: 0;
    line-height: clamp(44px, 6.8vw, 76px);
    margin: 0;
    width: 100%;
    max-width: 760px;
    text-align: center;
  }

  .desktop .schedule-subtitle {
    font-family: "Inter-Regular", Helvetica;
    font-weight: 400;
    font-size: clamp(15px, 2vw, 17px);
    line-height: clamp(22px, 2.8vw, 26px);
    color: #b8afa0;
    margin: 8px 0 0 0;
    opacity: 0.85;
    text-align: center;
  }
  
  .desktop .schedule-heading .schedule-label,
  .desktop .schedule-heading .what-you-will-do,
  .desktop .schedule-heading .schedule-subtitle {
    opacity: 0;
    transform: translateY(28px);
  }

  .desktop .schedule-heading .schedule-subtitle {
    transition-delay: 0.18s;
  }

  .desktop .schedule-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: clamp(100px, 15vh, 200px);
    margin-top: 40px;
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.55s ease, transform 0.55s ease;
    transition-delay: 0.35s;
  }

  .desktop .schedule-progress {
  position: absolute;
    top: var(--timeline-offset, 0px);
    left: 36.9%;
    width: 3px;
    height: var(--timeline-length, 100%);
    pointer-events: none;
    z-index: 0;
  }

  .desktop .schedule-progress-track,
  .desktop .schedule-progress-fill {
  position: absolute;
    inset: 0;
    border-radius: 999px;
  }

  .desktop .schedule-progress-track {
    background: rgba(254, 198, 82, 0.18);
  }

  .desktop .schedule-progress-fill {
    background: #fec652;
    transform-origin: top;
    transform: scaleY(0);
    transition: transform 0.08s linear;
  }

  .desktop .schedule-progress-indicator {
  position: absolute;
    left: 50%;
    top: calc(var(--schedule-progress, 0) * 100%);
    width: 18px;
    height: 18px;
    background-color: #fec652;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 0 rgba(254, 198, 82, 0.16);
    opacity: 0;
    transition: top 0.08s linear, opacity 0.3s ease, box-shadow 0.3s ease;
  }

  .desktop .schedule-section.is-visible .schedule-progress-indicator {
    opacity: 1;
  }
  
  .desktop .schedule-item {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity 0.45s ease, transform 0.45s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(90px, 12vw, 200px);
  }

  .desktop .schedule-item-meta {
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 12px;
    text-align: right;
  }

  .desktop .schedule-item-body {
    width: clamp(320px, 34vw, 620px);
    display: inline-flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  
  .desktop .schedule-item::before {
    content: '';
    position: absolute;
    left: 35%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    width: 16px;
    height: 16px;
    background-color: rgba(228, 220, 207, 0.2);
    border-radius: 50%;
    border: 2px solid rgba(254, 198, 82, 0.25);
    z-index: 2;
    transition: border-color 0.4s ease, background-color 0.4s ease;
  }

  .desktop .schedule-item::after {
    content: '';
    position: absolute;
    left: 35%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 16px;
    height: 16px;
    background-color: #fec652;
    border-radius: 50%;
    z-index: 3;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 0 0 0 rgba(254, 198, 82, 0.25);
  }
  
  .desktop .element-AM-introduction,
  .desktop .element-AM-kick-off,
  .desktop .element-AM-q-a,
  .desktop .element-PM-lunch-break,
  .desktop .element-PM-kick-off {
  font-family: "Inter-Bold", Helvetica;
  font-weight: 400;
  color: transparent;
  font-size: 48px;
  letter-spacing: 0;
  line-height: 76px;
    text-align: left;
  }
  
  .desktop .element-AM-q-a,
  .desktop .element-PM-lunch-break,
  .desktop .element-PM-kick-off {
    opacity: 0.5;
}

.desktop .span {
  font-weight: 700;
  color: #e4dccf;
    display: block;
    margin-bottom: 4px;
    font-size: clamp(16px, 2.8vw, 24px);
    line-height: 1.15;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.desktop .text-wrapper-2 {
    font-family: "Inter-Medium", Helvetica;
  color: #e4dccf;
    display: inline-block;
    font-size: clamp(26px, 4.8vw, 44px);
    line-height: 1.15;
}

.desktop .text-wrapper-3 {
  font-family: "Inter-Medium", Helvetica;
  font-weight: 500;
  color: #fec652;
    font-size: clamp(14px, 2.6vw, 18px);
    line-height: 1.2;
    display: inline-block;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .desktop .schedule-item .span,
  .desktop .schedule-item .text-wrapper-2,
  .desktop .schedule-item .text-wrapper-3,
  .desktop .schedule-item .schedule-item-subtitle {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  .desktop .schedule-item-subtitle {
    font-family: "Inter-Regular", Helvetica;
    font-size: clamp(16px, 2.8vw, 20px);
    line-height: 1.5;
    color: #c4bdb1;
    max-width: 580px;
    margin: 0;
  }

  .desktop .line,
  .desktop .line-2,
  .desktop .line-3,
  .desktop .line-4,
  .desktop .line-5 {
    display: none;
  }

  .desktop .schedule-section.is-visible .schedule-heading .schedule-label,
  .desktop .schedule-section.is-visible .schedule-heading .what-you-will-do,
  .desktop .schedule-section.is-visible .schedule-heading .schedule-subtitle {
    opacity: 1;
    transform: translateY(0);
  }

  .desktop .schedule-section.is-visible .schedule-list {
    opacity: 1;
    transform: translateY(0);
  }

  .desktop .schedule-section.is-visible .schedule-item {
    opacity: 1;
    transform: translateX(0);
  }

  .desktop .schedule-section.is-visible .schedule-item::before {
    background-color: rgba(254, 198, 82, 0.08);
    border-color: rgba(254, 198, 82, 0.45);
  }

  .desktop .schedule-section.is-visible .schedule-item.is-active::before {
    transform: translate(-50%, -50%) scale(1);
  }

  .desktop .schedule-section.is-visible .schedule-item.is-active::after {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 9px rgba(254, 198, 82, 0.1);
  }

  .desktop .schedule-section.is-visible .schedule-item.is-active .span,
  .desktop .schedule-section.is-visible .schedule-item.is-active .text-wrapper-2,
  .desktop .schedule-section.is-visible .schedule-item.is-active .text-wrapper-3,
  .desktop .schedule-section.is-visible .schedule-item.is-active .schedule-item-subtitle {
    opacity: 1;
    transform: translateY(0);
  }

  .desktop .schedule-section.is-visible .schedule-progress-fill {
    transform: scaleY(var(--schedule-progress, 0));
  }

  .desktop .schedule-section.has-progress .schedule-progress-indicator {
    box-shadow: 0 0 0 12px rgba(254, 198, 82, 0.08);
  }
  
/* Offer Section */
.desktop .offer-section {
  width: 1400px;
  margin: 160px auto 0;
  padding: 120px 120px 140px;
  /* background: linear-gradient(180deg, #fbf7f347 0%, #f2e9dc26 100%); */
  border-radius: 36px;
  position: relative;
  overflow: hidden;
}

.desktop .offer-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 12% 12%, rgb(255 228 175 / 25%) 0%, transparent 55%), radial-gradient(circle at 88% 20%, rgba(47, 44, 39, 0.12) 0%, transparent 50%);
  opacity: 0.8;
  pointer-events: none;
}

.desktop .offer-heading {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 620px;
}

.desktop .offer-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: "Inter-Regular", Helvetica;
  font-size: 16px;
  color: #bba88d;
}

.desktop .offer-dot {
  width: 12px;
  height: 12px;
  border-radius: 12px;
  background-color: #fec652;
}

.desktop .offer-title {
  margin: 0;
  font-family: "Inter-Medium", Helvetica;
  font-size: clamp(36px, 5vw, 56px);
  line-height: clamp(44px, 6vw, 64px);
  color: #2f2c27;
}

.desktop .offer-subtitle {
  margin: 0;
  font-family: "Inter-Regular", Helvetica;
  font-size: clamp(16px, 2.6vw, 20px);
  line-height: clamp(26px, 3.6vw, 32px);
  color: #5d5243;
  max-width: 520px;
}

.desktop .offer-summary {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: clamp(20px, 3vw, 32px);
margin: 48px 0 64px;
width: 100%;
}

.desktop .offer-summary-item {
position: relative;
background: rgba(47, 44, 39, 0.06);
border: 1px solid rgba(47, 44, 39, 0.12);
border-radius: 18px;
padding: 26px 28px 24px;
  display: flex;
flex-direction: column;
gap: 12px;
}

.desktop .offer-summary-label {
font-family: "Inter-SemiBold", Helvetica;
font-size: clamp(13px, 1.9vw, 15px);
letter-spacing: 0.16em;
text-transform: uppercase;
color: rgba(47, 44, 39, 0.62);
}

.desktop .offer-summary-value {
font-family: "Inter-Medium", Helvetica;
font-size: clamp(16px, 2.4vw, 20px);
line-height: 1.45;
color: #2f2c27;
}

.desktop .offer-summary-item::before {
content: '';
width: 34px;
height: 4px;
border-radius: 999px;
background: #fec652;
opacity: 0.85;
align-self: flex-start;
}

.desktop .offer-summary-item.is-place::before {
background: #2f2c27;
opacity: 0.65;
}

.desktop .offer-summary-map {
display: inline-flex;
  align-items: center;
gap: 10px;
align-self: flex-start;
padding: 10px 16px;
border-radius: 999px;
border: 1px solid rgba(47, 44, 39, 0.18);
font-family: "Inter-SemiBold", Helvetica;
font-size: clamp(13px, 2vw, 15px);
letter-spacing: 0.1em;
text-transform: uppercase;
color: #2f2c27;
text-decoration: none;
transition: color 0.25s ease, border-color 0.25s ease;
}

.desktop .offer-summary-map svg {
width: 18px;
height: 18px;
}

.desktop .offer-summary-map:hover,
.desktop .offer-summary-map:focus-visible {
color: #b08931;
border-color: rgba(176, 137, 49, 0.6);
}

.desktop .offer-grid {
  position: relative;
  z-index: 1;
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
}

.desktop .offer-card {
  position: relative;
  padding: 52px 48px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 32px 60px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transform: translateY(45px);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.7s ease, box-shadow 0.4s ease;
}

.desktop .offer-card::before {
  content: '';
  position: absolute;
  inset: -6px;
  background: linear-gradient(135deg, rgb(255 216 135 / 20%) 0%, transparent 60%);
  mask-image: url('img/mask-1.png');
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
  opacity: 0.65;
  pointer-events: none;
}

.desktop .offer-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3.6vw, 28px);
}

.desktop .offer-price {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.desktop .price-amount {
  font-family: "Inter-Bold", Helvetica;
  font-size: clamp(42px, 5.6vw, 64px);
  line-height: 1;
  color: #2f2c27;
}

.desktop .price-label {
  font-family: "Inter-Medium", Helvetica;
  font-size: clamp(14px, 2.8vw, 20px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5d5243;
}

.desktop .offer-details {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 2.5vw, 14px);
  font-family: "Inter-Regular", Helvetica;
  font-size: clamp(16px, 2.4vw, 18px);
  color: #4a4237;
}

.desktop .offer-details li {
  position: relative;
  padding-left: 28px;
}

.desktop .offer-details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fec652;
  box-shadow: 0 0 0 5px rgba(254, 198, 82, 0.18);
}

.desktop .offer-cta {
  align-self: flex-start;
  padding: 16px 32px;
  border-radius: 999px;
  font-family: "Inter-Medium", Helvetica;
  font-size: clamp(14px, 2.4vw, 16px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  background-color: #2f2c27;
  color: #faf7f2;
  transition: transform 0.35s ease, background-color 0.35s ease;
}

.desktop .offer-cta:hover {
  transform: translateY(-4px);
  background-color: #1c1916;
}

.desktop .offer-card-full {
  background: rgba(47, 44, 39, 0.95);
  color: #faf7f2;
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.35);
}

.desktop .offer-card-full::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  opacity: 0.55;
  mask-image: url('img/mask-2.png');
}

.desktop .offer-card-full .price-amount {
  color: #faf7f2;
}

.desktop .offer-card-full .price-label {
  color: rgba(255, 255, 255, 0.72);
}

.desktop .offer-card-full .offer-details {
  color: rgba(255, 255, 255, 0.82);
}

.desktop .offer-card-full .offer-details li::before {
  background-color: #faf7f2;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.18);
}

.desktop .offer-card-full .offer-cta {
  background-color: #fec652;
  color: #2f2c27;
}

.desktop .offer-card-full .offer-cta:hover {
  background-color: #f3a500;
}

.desktop .offer-section.is-visible .offer-card {
  opacity: 1;
  transform: translateY(0);
}

.desktop .offer-section.is-visible .offer-card.offer-card-morning {
  transition-delay: 0.08s;
}

.desktop .offer-section.is-visible .offer-card.offer-card-full {
  transition-delay: 0.18s;
}

.desktop .offer-financing-link {
display: inline-block;
margin: 32px auto 0;
font-family: "Inter-SemiBold", Helvetica;
font-size: clamp(14px, 2.2vw, 16px);
letter-spacing: 0.12em;
text-transform: uppercase;
color: #2f2c27;
text-decoration: none;
transition: color 0.3s ease;
}

.desktop .offer-financing-link:hover,
.desktop .offer-financing-link:focus-visible {
color: #b08931;
}

.desktop .offer-card:hover::before {
  animation: offerCardFloat 3.6s ease-in-out infinite;
}

@keyframes offerCardFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

  /* Section About the Masterclass */
  .desktop .dark-section section[aria-labelledby="about-heading"] {
    position: relative;
    width: 100%;
    background-color: transparent;
    padding: 0;
    padding-bottom: 80px;
    display: grid;
    grid-template-columns: 1fr 606px;
    gap: 80px;
    align-items: start;
    min-height: 600px;
  }
  
  .desktop .dark-section section[aria-labelledby="about-heading"] .about-content {
    display: flex;
    flex-direction: column;
    grid-column: 1;
  }
  
  .desktop .about-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    width: fit-content;
  }
  
  .desktop .about {
    font-family: "Inter-Regular", Helvetica;
    font-weight: 400;
  color: #fec652;
    font-size: 16px;
  letter-spacing: 0;
    line-height: normal;
  }
  
  .desktop .div {
    width: 10px;
    height: 10px;
    background-color: #fec652;
    border-radius: 50%;
    flex-shrink: 0;
  }
  
  .desktop .about-the {
    font-family: "Inter-Medium", Helvetica;
    font-weight: 500;
    font-size: 64px;
    line-height: 76px;
    color: #e4dccf;
    letter-spacing: 0;
    margin: 0 0 32px 0;
    width: 390px;
  }
  
  .desktop .text-wrapper {
    font-family: "Inter-Light", Helvetica;
    font-weight: 300;
    font-size: clamp(18px, 3.4vw, 24px);
    line-height: clamp(30px, 4.8vw, 39px);
    color: #e4dccf;
    letter-spacing: 0;
    margin: 0 0 48px 0;
    width: clamp(280px, 38vw, 390px);
}

.desktop .text-wrapper-4 {
  font-family: "Inter-SemiBold", Helvetica;
  font-weight: 600;
  color: #fec652;
  font-size: clamp(18px, 3.2vw, 24px);
  letter-spacing: 0;
  line-height: clamp(26px, 4vw, 34px);
  text-decoration: none;
  display: inline-block;
  width: fit-content;
  transition: color 0.3s ease;
}
  
.desktop .about-image-mask {
    width: clamp(320px, 42vw, 606px);
    aspect-ratio: 606 / 552;
    height: auto;
    position: relative;
    mask: url(#mask-1);
    -webkit-mask: url(#mask-1);
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
    overflow: hidden;
}

.desktop .about-side {
grid-column: 2;
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 24px;
}

.desktop .about-stats {
list-style: none;
margin: 0;
padding: 0;
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 16px;
width: 100%;
}

.desktop .about-stats li {
background: rgba(250, 247, 242, 0.08);
border: 1px solid rgba(250, 247, 242, 0.16);
border-radius: 16px;
padding: 18px 16px;
display: flex;
flex-direction: column;
gap: 6px;
align-items: flex-start;
}

.desktop .about-stat-value {
  font-family: "Inter-SemiBold", Helvetica;
font-size: clamp(20px, 3vw, 28px);
color: #fec652;
letter-spacing: 0.06em;
}

.desktop .about-stat-label {
font-family: "Inter-Medium", Helvetica;
font-size: clamp(12px, 2.2vw, 14px);
letter-spacing: 0.18em;
text-transform: uppercase;
color: rgba(250, 247, 242, 0.72);
}

.desktop .rectangle-2 {
    position: relative;
    width: 100%;
    height: 100%;
  object-fit: cover;
    display: block;
    filter: grayscale(100%);
  }
  
  /* Section About Lisa Baird */
  .desktop .about-lisa-section {
    position: relative;
    width: 1440px;
    min-height: 800px;
    background: #faf7f2;
    background-image:
      linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    padding: 100px 80px 120px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

.desktop .about-lisa-section .group-4 {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 16px;
}

.desktop .about-lisa-section .about-dot {
width: 12px;
height: 12px;
border-radius: 50%;
background-color: #fec652;
flex-shrink: 0;
}

.desktop .about-lisa-section .about-tag {
font-family: "Inter-Regular", Helvetica;
font-size: 16px;
letter-spacing: 0.18em;
text-transform: uppercase;
color: #2f2c27;
}

.desktop .about-lisa-section .text-wrapper-6 {
width: 100%;
max-width: 849px;
margin-bottom: 60px;
text-align: center;
font-family: "Inter-Medium", Helvetica;
font-weight: 500;
color: #2f2c27;
font-size: clamp(34px, 5.4vw, 64px);
letter-spacing: 0;
line-height: clamp(42px, 6.6vw, 76px);
}

.desktop .lisa-card {
position: relative;
width: 100%;
max-width: 1200px;
min-height: 520px;
padding: 0;
display: flex;
align-items: center;
gap: 80px;
isolation: isolate;
box-sizing: border-box;
background-color: #272727;
border-radius: 12px;
overflow: hidden;
overflow: visible;
}

.desktop .lisa-card-bg {
  position: absolute;
  top: -31px;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top center;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
}

.desktop .lisa-card-bg-desktop {
display: block;
height: clamp(120px, 15vh, 180px);
}

.desktop .lisa-card-bg-mobile {
display: none;
}

.desktop .lisa-card::before {
display: none;
}

.desktop .lisa-card-content,
.desktop .about-lisa-section .IMAGE-2 {
position: relative;
z-index: 1;
}


.desktop .lisa-card-content {
flex: 1 1 auto;
display: flex;
flex-direction: column;
gap: 28px;
padding: 71px;
padding-right: 0;
}

.desktop .lisa-card-title {
font-family: "Inter-Bold", Helvetica;
font-size: clamp(28px, 4.2vw, 46px);
line-height: clamp(34px, 5vw, 54px);
color: #faf7f2;
margin: 0;
}

.desktop .lisa-card-title .highlight-yellow {
color: #fec652;
}

.desktop .lisa-card-description {
font-family: "Inter-Light", Helvetica;
font-size: clamp(16px, 2.8vw, 20px);
line-height: clamp(26px, 3.6vw, 32px);
color: #dcd3c7;
margin: 0;
}

.desktop .lisa-card-link {
  font-family: "Inter-SemiBold", Helvetica;
font-size: clamp(14px, 2.2vw, 16px);
letter-spacing: 0.08em;
text-transform: uppercase;
color: #fec652;
text-decoration: none;
width: fit-content;
transition: color 0.3s ease;
}

.desktop .lisa-card-link:hover {
color: #ffd966;
}

.desktop .about-lisa-section .IMAGE-2 {
width: 441px;
/* height: 460px; */
object-fit: cover;
border-radius: 16px;
filter: grayscale(20%);
/* box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28); */
}
  
  /* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°lÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â©ments cachÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â©s */
  .desktop .start-today,
  .desktop .arrow-down,
  .desktop .group,
  .desktop .group-2,
  .desktop .rectangle {
    display: none;
  }

body.no-scroll {
  overflow: hidden;
}

.video-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  z-index: 220;
}

.video-modal[hidden] {
  display: none !important;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 6, 0.75);
  backdrop-filter: blur(6px);
}

.video-modal__dialog {
  position: relative;
  width: min(960px, 100%);
  background-color: #12100d;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 1;
}

.video-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: #faf7f2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.video-modal__close:hover,
.video-modal__close:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  outline: none;
}

.video-modal__title {
  margin: 0;
  font-family: "Inter-Bold", Helvetica;
  font-size: 28px;
  line-height: 34px;
  color: #faf7f2;
  letter-spacing: -0.3px;
}

.video-modal__player {
  width: 100%;
  max-height: 70vh;
  border-radius: 18px;
  background: #000;
  object-fit: cover;
}

@media (min-width: 360px) and (max-width: 660px) {
  .desktop .hero-title {
      font-size: 58px !important;
      line-height: 58px !important;
  }
    .desktop .dark-section {
      padding: 84px 24px 110px !important;
  }
  .desktop .hero-section {
      padding: 110px 24px 72px !important;
  }
  
  .video-modal__dialog {
    padding: 36px 32px;
    border-radius: 20px;
  }

  .video-modal__title {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (min-width: 660px) and (max-width: 1024px) {
  .feature-box.feature-box-dark {
      max-width: 50% !important;
  }
}
@media (max-width: 640px) {
  .video-modal {
    padding: 24px 16px;
  }

  .video-modal__dialog {
    padding: 28px 20px 24px;
    border-radius: 18px;
  }

  .video-modal__close {
    width: 36px;
    height: 36px;
    font-size: 24px;
  }

  .video-modal__title {
    font-size: 20px;
    line-height: 26px;
  }

  .video-modal__player {
    border-radius: 14px;
  }
}

.site-nav {
position: fixed;
top: 8px;
left: 0;
right: 0;
z-index: 100;
display: flex;
justify-content: center;
pointer-events: none;
}

.site-nav .nav-links {
display: inline-flex;
align-items: center;
gap: 28px;
padding: 24px 28px;
border-radius: 8px;
backdrop-filter: blur(24px); 
pointer-events: auto;
transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.site-nav.is-light .nav-links {
/* background-color: rgba(255, 255, 255, 0.1); */
/* border: 1px solid rgba(47, 44, 39, 0.1); */
/* box-shadow: 0 22px 60px rgba(0, 0, 0, 0.08); */
color: #2f2c27;
}

.site-nav.is-dark .nav-links {
background-color: rgba(14, 13, 12, 0.32);
border: 1px solid rgba(255, 255, 255, 0.16);
box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
color: #f5eee0;
}

.site-nav .nav-menu {
display: inline-flex;
gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav .nav-menu a {
  font-family: "Inter-Medium", Helvetica;
font-size: 14px;
letter-spacing: 0.16em;
text-transform: uppercase;
text-decoration: none;
color: inherit;
position: relative;
padding-bottom: 4px;
}

.site-nav .nav-menu a::after {
content: '';
  position: absolute;
  left: 0;
bottom: 0;
width: 100%;
height: 1px;
background-color: currentColor;
transform: scaleX(0);
transform-origin: center;
transition: transform 0.3s ease;
}

.site-nav .nav-menu a:hover::after,
.site-nav .nav-menu a.is-active::after,
.site-nav .nav-menu a:focus-visible::after {
transform: scaleX(1);
}

.site-nav .nav-menu a:focus-visible {
outline: 2px solid currentColor;
outline-offset: 6px;
}

.site-nav .nav-actions {
display: inline-flex;
  align-items: center;
  gap: 18px;
border-left: 1px solid rgba(47, 44, 39, 0.16);
padding-left: 24px;
}

.site-nav.is-dark .nav-actions {
border-left-color: rgba(255, 255, 255, 0.16);
}

.site-nav .nav-lang {
display: inline-flex;
gap: 6px;
  align-items: center;
font-family: "Inter-Regular", Helvetica;
font-size: 12px;
letter-spacing: 0.24em;
text-transform: uppercase;
background: none;
border: none;
color: inherit;
cursor: pointer;
padding: 4px 10px;
border-radius: 999px;
transition: background-color 0.3s ease;
}

.site-nav .nav-lang:hover,
.site-nav .nav-lang:focus-visible {
background-color: rgba(255, 255, 255, 0.08);
}

.site-nav.is-dark .nav-lang:hover,
.site-nav.is-dark .nav-lang:focus-visible {
background-color: rgba(255, 255, 255, 0.14);
}

.site-nav .nav-lang span {
opacity: 0.6;
transition: opacity 0.3s ease;
}

.site-nav .nav-lang .lang-active {
opacity: 1;
}

.site-nav .nav-cta {
display: inline-flex;
  align-items: center;
  justify-content: center;
position: relative;
gap: 14px;
padding: 8px 28px 8px 22px;
font-family: "Inter-SemiBold", Helvetica;
font-size: 12px;
letter-spacing: 0.2em;
text-transform: uppercase;
border-radius: 999px;
text-decoration: none;
background-color: #2f2c27;
color: #faf7f2;
transition: transform 0.3s ease;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
outline: none;
}

.site-nav .nav-cta-icon {
display: inline-flex;
width: 24px;
height: 24px;
align-items: center;
justify-content: center;
}

.site-nav .nav-cta-icon svg {
width: 24px;
height: 24px;
transform: rotate(45deg);
transition: transform 0.3s ease;
}

.site-nav .nav-cta:hover .nav-cta-icon svg,
.site-nav .nav-cta:focus-visible .nav-cta-icon svg {
transform: rotate(-135deg);
}

.site-nav.is-dark .nav-cta {
background-color: #fec652;
  color: #2f2c27;
}

.site-nav.is-dark .nav-cta:hover,
.site-nav.is-dark .nav-cta:focus-visible {
outline: none;
}

@media (max-width: 900px) {
.site-nav {
  top: 18px;
}

.site-nav .nav-links {
  gap: 18px;
  padding: 12px 22px;
}

.site-nav .nav-menu {
  gap: 20px;
}
}

@media (max-width: 720px) {
.site-nav {
  top: 0;
}

.site-nav .nav-links {
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding: 12px 18px;
}

.site-nav .nav-actions {
  border-left: none;
  padding-left: 0;
}
}

.site-footer {
width: 100%;
background-color: #1a1815;
color: #faf7f2;
padding: 120px 0 80px;
}

.site-footer .footer-inner {
width: min(1200px, 92%);
margin: 0 auto;
display: flex;
flex-direction: column;
gap: 60px;
}

.site-footer .footer-top {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 48px;
flex-wrap: wrap;
}

.site-footer .footer-logo-block {
display: flex;
flex-direction: column;
gap: 16px;
text-decoration: none;
color: inherit;
}

.site-footer .footer-logo {
width: 62px;
height: auto;
display: block;
}

.site-footer .footer-title {
margin: 0;
font-family: "Inter-Medium", Helvetica;
font-size: clamp(22px, 3vw, 28px);
letter-spacing: -0.4px;
}

.site-footer .footer-subtitle {
margin: 0;
  font-family: "Inter-Regular", Helvetica;
font-size: clamp(15px, 2.4vw, 18px);
color: rgba(250, 247, 242, 0.7);
}

.site-footer .footer-tagline {
font-family: "Inter-SemiBold", Helvetica;
font-size: 15px;
letter-spacing: 0.32em;
text-transform: uppercase;
color: rgba(250, 247, 242, 0.72);
}

.site-footer .footer-text {
max-width: 520px;
display: flex;
flex-direction: column;
gap: 18px;
}

.site-footer .footer-links-block {
display: flex;
flex-wrap: wrap;
gap: 28px;
margin-top: 12px;
}

.site-footer .footer-links-list {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 12px;
}

.site-footer .footer-links-list a {
font-family: "Inter-Medium", Helvetica;
font-size: 13px;
letter-spacing: 0.18em;
text-transform: uppercase;
color: rgba(250, 247, 242, 0.78);
text-decoration: none;
transition: color 0.3s ease;
}

.site-footer .footer-links-list a:hover,
.site-footer .footer-links-list a:focus-visible {
color: #fec652;
}

.site-footer .footer-links-list--external a {
color: rgba(250, 247, 242, 0.9);
}

.site-footer .footer-about {
margin: 0;
  font-family: "Inter-Regular", Helvetica;
font-size: clamp(16px, 2.3vw, 18px);
line-height: 1.6;
color: rgba(250, 247, 242, 0.86);
}

.site-footer .footer-about a {
color: #fec652;
text-decoration: none;
font-weight: 600;
}

.site-footer .footer-about a:hover,
.site-footer .footer-about a:focus-visible {
text-decoration: underline;
}

.site-footer .footer-contact-link {
display: inline-flex;
align-items: center;
gap: 12px;
width: fit-content;
padding: 12px 18px;
border: 1px solid rgba(250, 247, 242, 0.24);
border-radius: 999px;
text-decoration: none;
font-family: "Inter-SemiBold", Helvetica;
font-size: 13px;
letter-spacing: 0.18em;
text-transform: uppercase;
color: #faf7f2;
transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.site-footer .footer-contact-link:hover,
.site-footer .footer-contact-link:focus-visible {
color: #fec652;
border-color: rgba(254, 198, 82, 0.7);
transform: translateY(-2px);
}

.site-footer .footer-link-icon {
  font-size: 16px;
line-height: 1;
}

.site-footer .footer-bottom {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
gap: 24px;
}

.site-footer .footer-social {
display: flex;
align-items: center;
gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer .footer-social a {
display: inline-flex;
align-items: center;
justify-content: center;
width: 34px;
height: 34px;
border-radius: 50%;
border: 1px solid rgba(250, 247, 242, 0.3);
font-family: "Inter-SemiBold", Helvetica;
font-size: 12px;
letter-spacing: 0.16em;
text-transform: uppercase;
color: rgba(250, 247, 242, 0.9);
text-decoration: none;
transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.site-footer .footer-social a:hover,
.site-footer .footer-social a:focus-visible {
background-color: #fec652;
border-color: #fec652;
color: #11100e;
}

.site-footer .footer-legal {
display: inline-flex;
align-items: center;
gap: 10px;
font-size: clamp(14px, 2vw, 15px);
font-family: "Inter-SemiBold", Helvetica;
}

.site-footer .footer-legal a {
color: rgba(250, 247, 242, 0.72);
text-decoration: none;
transition: color 0.3s ease;
}

.site-footer .footer-legal a:hover,
.site-footer .footer-legal a:focus-visible {
color: #fec652;
}

.site-footer .footer-copy {
margin: 0;
font-size: clamp(14px, 2vw, 15px);
color: rgba(250, 247, 242, 0.6);
font-family: "Inter-SemiBold", Helvetica;
}

@media (max-width: 900px) {
.site-footer .footer-top {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 36px;
}

.site-footer .footer-logo-block {
  align-items: center;
  gap: 18px;
}

.site-footer .footer-text {
  align-items: center;
}

.site-footer .footer-bottom {
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.site-footer .footer-social {
  justify-content: center;
  flex-wrap: wrap;
}

.site-footer .footer-legal {
  flex-wrap: wrap;
  justify-content: center;
}

.site-footer .footer-links-block {
  justify-content: center;
}
}

@media (max-width: 720px) {
.site-footer {
  padding: 90px 0 60px;
}

.site-footer .footer-inner {
  gap: 44px;
}

.site-footer .footer-links-block {
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 18px;
}

.site-footer .footer-links-list {
  align-items: center;
}
}

.is-light a.nav-cta {
  color: white;
}

.language-banner {
position: fixed;
top: 24px;
right: 28px;
transform: translateX(140%);
display: inline-flex;
align-items: center;
gap: 10px;
padding: 12px 24px;
border-radius: 10px;
background-color: rgba(47, 44, 39, 0.96);
color: #faf7f2;
  font-family: "Inter-Medium", Helvetica;
font-size: 13px;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
transition: transform 0.4s cubic-bezier(0.32, 0.94, 0.6, 1), opacity 0.3s ease;
opacity: 0;
z-index: 120;
pointer-events: none;
}

.language-banner.is-visible {
transform: translateX(0);
opacity: 1;
}

.site-nav.is-dark ~ .language-banner {
background-color: rgba(250, 247, 242, 0.95);
  color: #2f2c27;
}

@media (max-width: 900px) {
.desktop .hero-section,
.desktop .dark-section,
.desktop .offer-section,
.desktop .about-lisa-section,
.desktop .feature-boxes {
  max-width: 100%;
  padding-left: 32px;
  padding-right: 32px;
}

.desktop .hero-section {
  padding: 96px 32px 60px;
}

.desktop .hero-title {
  width: 100%;
  font-size: 42px !important;
  line-height: 62px !important;
}

.desktop .hero-cta-button {
  width: auto;
}

.desktop .hero-meta {
  gap: 10px;
  margin-bottom: 24px;
}

.desktop .hero-date,
.desktop .hero-location {
  font-size: 12px;
  padding: 5px 14px;
}

.desktop .hero-tagline {
  font-size: clamp(20px, 3vw, 28px);
  line-height: clamp(28px, 3.8vw, 36px);
}

.desktop .hero-badges {
  gap: 10px;
}

.desktop .hero-badge {
  font-size: 12px;
  padding: 7px 16px;
}

.desktop .hero-image-wrapper {
  width: min(92%, 440px);
  margin: 40px auto 0;
}

.desktop .schedule-subtitle {
  font-size: 14px;
  line-height: 20px;
}

.desktop .feature-boxes {
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0 32px;
  margin-top: -32px;
}

.desktop .feature-box {
  width: min(320px, 100%);
}

.desktop .offer-summary {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 40px 0 56px;
}

.desktop .about-side {
  align-items: center;
}

.desktop .about-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.desktop .about-stats li {
  align-items: center;
  text-align: center;
}

.desktop .dark-section {
  padding: 72px 32px 96px;
  border-radius: 18px;
}

.desktop .schedule-heading {
  align-items: center;
  text-align: center;
  gap: 16px;
}

.desktop .what-you-will-do {
  text-align: left;
}

.desktop .schedule-progress {
  display: none;
}

.desktop .schedule-list {
  width: 100%;
  margin: 36px 0 0;
  gap: 52px;
}

.desktop .schedule-item {
  max-width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding-left: 40px;
  transform: none;
}

.desktop .schedule-section.is-visible .schedule-item {
  transform: none;
}

.desktop .schedule-item::before,
.desktop .schedule-item::after {
  left: 18px;
}

.desktop .schedule-item-meta {
  align-items: flex-start;
  text-align: left;
  flex-direction: column;
  gap: 12px;
}

.desktop .schedule-item-body {
  width: 100%;
}

.desktop .offer-section {
  padding: 100px 40px 120px;
  border-radius: 28px;
  margin: 120px auto 0;
}

.desktop .offer-heading {
  align-items: flex-start;
  text-align: left;
}

.desktop .offer-grid {
  grid-template-columns: 1fr;
  gap: 36px;
}

.desktop .offer-card {
  padding: 48px 36px;
}

.desktop .about-lisa-section {
  padding: 80px 32px 100px;
}

.desktop .lisa-card-link {
  align-self: center;
}

.desktop .dark-section section[aria-labelledby="about-heading"] {
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
}

.desktop .dark-section section[aria-labelledby="about-heading"] .about-content {
  grid-column: 1;
  width: 100%;
}

.desktop .about-the {
  width: 100%;
  max-width: 100%;
}

.desktop .text-wrapper {
  width: 100%;
  max-width: 100%;
}

.desktop .about-image-mask {
  grid-column: 1;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  aspect-ratio: 606 / 552;
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
}

.site-footer {
  padding: 100px 0 70px;
}

.site-footer .footer-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}
}

@media (max-width: 720px) {
.desktop .hero-section,
.desktop .dark-section,
.desktop .offer-section,
.desktop .about-lisa-section,
.desktop .feature-boxes {
  padding-left: 24px;
  padding-right: 24px;
}

.desktop .hero-section {
  padding: 88px 24px 52px !important;
}

.desktop .hero-meta {
  gap: 8px;
  margin-bottom: 20px;
}

.desktop .hero-date,
.desktop .hero-location {
  font-size: 11px;
  padding: 4px 12px;
}

.desktop .hero-tagline {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 20px;
}

.desktop .hero-badges {
  gap: 8px;
}

.desktop .hero-badge {
  font-size: 11px;
  padding: 6px 14px;
}

.desktop .schedule-subtitle {
  font-size: 13px;
  line-height: 19px;
}

.desktop .hero-date {
  margin-bottom: 24px;
}

.desktop .hero-cta-button {
  width: 100%;
  text-align: center;
}

.desktop .hero-image-wrapper {
  width: min(100%, 400px);
}

.desktop .feature-boxes {
  gap: 18px;
  margin-top: -20px;
}

.desktop .feature-box {
  max-width: 360px;
}

.desktop .about-side {
  align-items: center;
  gap: 18px;
}

.desktop .about-stats {
  grid-template-columns: 1fr;
  gap: 12px;
  width: min(360px, 100%);
}

.desktop .about-stats li {
  align-items: center;
  text-align: center;
}

.desktop .feature-content,
.desktop .feature-content-dark {
  padding: 32px 28px;
}

.desktop .dark-section {
  padding: 68px 24px 88px;
}

.desktop .schedule-list {
  gap: 44px;
}

.desktop .schedule-item {
  padding-left: 32px;
}

.desktop .schedule-item::before,
.desktop .schedule-item::after {
  left: 12px;
}

.desktop .offer-section {
  padding: 88px 28px 110px;
  margin: 100px auto 0;
  border-radius: 24px;
}

.desktop .offer-heading {
  align-items: center;
  text-align: center;
}

.desktop .offer-subtitle {
  max-width: 100%;
}

.desktop .offer-summary {
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 36px 0 48px;
}

.desktop .offer-summary-item {
  text-align: center;
  align-items: center;
}

.desktop .offer-summary-item::before {
  align-self: center;
}

.desktop .offer-summary-map {
  justify-content: center;
  align-self: center;
}

.desktop .offer-card {
  padding: 44px 32px;
  align-items: center;
  text-align: center;
}

.desktop .offer-card-content {
  align-items: center;
}

.desktop .offer-cta,
.desktop .offer-cta.offer-cta-dark {
  width: 100%;
  justify-content: center;
}

.desktop .offer-details {
  align-items: center;
}

.desktop .offer-details li {
  padding-left: 22px;
}

.desktop .about-lisa-section {
  padding: 72px 24px 88px;
}

.desktop .lisa-card {
  padding: 64px 32px 56px;
}

.desktop .lisa-card-description {
  line-height: 30px;
}

.desktop .dark-section section[aria-labelledby="about-heading"] {
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 56px;
}

.desktop .about-image-mask {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  aspect-ratio: 606 / 552;
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
}

.desktop .lisa-card {
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: calc(clamp(80px, 10vh, 120px) + 24px) 24px 36px;
  min-height: auto;
  width: 100%;
  max-width: 100%;
  position: relative;
}

.desktop .lisa-card-content {
  width: 100% !important;
  text-align: center;
  align-items: center;
  gap: 20px;
}

.desktop .about-lisa-section .text-wrapper-6 {
  font-size: clamp(28px, 5vw, 40px);
  line-height: clamp(34px, 6vw, 48px);
  margin-bottom: 48px;
}

.desktop .lisa-card-title {
  font-size: clamp(20px, 4.5vw, 24px);
  line-height: clamp(26px, 5.5vw, 30px);
}

.desktop .lisa-card-description {
  font-size: clamp(13px, 2.8vw, 15px);
  line-height: clamp(20px, 3.8vw, 22px);
}

.desktop .about-lisa-section .IMAGE-2 {
  width: min(180px, 65%);
  height: auto;
  max-width: 220px;
  display: none;
}

.desktop .lisa-card {
  background-color: #272727;
  border-radius: 8px;
}

.desktop .lisa-card-bg-desktop {
  display: none;
}

.desktop .lisa-card-bg-mobile {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top center;
  height: clamp(80px, 10vh, 120px);
}

.site-footer .footer-inner {
  width: min(640px, 90%);
}
}

@media (max-width: 640px) {
.site-footer .footer-columns {
  grid-template-columns: 1fr;
}

.site-footer .footer-bottom {
  flex-direction: column;
  align-items: flex-start;
}

.desktop .hero-section {
  padding: 84px 20px 48px;
}

.desktop .hero-image-wrapper {
  width: min(100%, 360px);
}

.desktop .feature-boxes {
  padding: 0 20px;
  gap: 16px;
}

.desktop .feature-box {
  max-width: none;
  width: 100%;
  max-width: 100%;
}

.desktop .feature-content,
.desktop .feature-content-dark {
  padding: 28px 24px;
}

.desktop .dark-section {
  padding: 64px 20px 80px;
  border-radius: 8px !important;
}

.desktop .schedule-list {
  gap: 36px;
}

.desktop .schedule-item {
  padding-left: 28px;
}

.desktop .schedule-item::before,
.desktop .schedule-item::after {
  left: 10px;
}

.desktop .offer-section {
  padding: 80px 24px 96px;
}

.desktop .offer-card {
  padding: 40px 28px;
}

.desktop .offer-details li {
  padding-left: 18px;
}

.desktop .about-lisa-section {
  padding: 68px 20px 80px;
}

.desktop .lisa-card {
  padding: 56px 28px 52px;
  gap: 36px;
}

.desktop .lisa-card-description {
  line-height: 28px;
}

.desktop .dark-section section[aria-labelledby="about-heading"] {
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 52px;
}

.desktop .about-image-mask {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  aspect-ratio: 606 / 552;
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
}

.desktop .lisa-card {
  flex-direction: column;
  gap: 20px;
  padding: calc(clamp(80px, 10vh, 120px) + 20px) 20px 32px;
  width: 100%;
  max-width: 100%;
  position: relative;
}

.desktop .lisa-card-content {
  gap: 18px;
}

.desktop .about-lisa-section .text-wrapper-6 {
  font-size: clamp(26px, 4.8vw, 36px);
  line-height: clamp(32px, 5.8vw, 42px);
  margin-bottom: 44px;
}

.desktop .lisa-card-title {
  font-size: clamp(18px, 4vw, 22px);
  line-height: clamp(24px, 4.8vw, 28px);
}

.desktop .lisa-card-description {
  font-size: clamp(12px, 2.6vw, 14px);
  line-height: clamp(18px, 3.6vw, 20px);
}

.desktop .about-lisa-section .IMAGE-2 {
  width: min(160px, 60%);
  max-width: 200px;
}

.desktop .lisa-card {
  background-color: #272727;
  border-radius: 8px;
}

.desktop .lisa-card-bg-desktop {
  display: none;
}

.desktop .lisa-card-bg-mobile {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top center;
  height: clamp(80px, 10vh, 120px);
}

.desktop .hero-video-mask {
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
}

.site-nav .nav-links {
  flex-wrap: wrap;
  justify-content: center;
}

.site-nav .nav-actions {
  border-left: none;
  padding-left: 0;
}

.language-banner {
  top: 14px;
  right: 14px;
}
}

@media (max-width: 540px) {
.site-nav .nav-menu {
  gap: 14px;
  display: none;
}

.site-nav .nav-links {
  gap: 14px;
  padding: 12px 16px;
}

.site-nav .nav-cta {
  padding: 8px 22px;
  gap: 10px;
}

.desktop .hero-section {
  padding: 80px 18px 44px;
}

.desktop .hero-details span {
  font-size: 14px;
}

.desktop .feature-content,
.desktop .feature-content-dark {
  padding: 26px 22px;
}

.desktop .feature-text {
  line-height: 24px;
}

.desktop .feature-text-dark {
  line-height: 34px;
}

.desktop .arrow-icon svg {
  width: 40px;
  height: 40px;
}

.desktop .what-you-will-do {
  line-height: 42px;
}

.desktop .schedule-item {
  padding-left: 24px;
}

.desktop .schedule-item::before,
.desktop .schedule-item::after {
  left: 9px;
}

.desktop .offer-section {
  padding: 72px 20px 88px;
}

.desktop .offer-card {
  padding: 36px 24px;
}


.desktop .lisa-card-title {
  line-height: 44px;
}

.desktop .dark-section section[aria-labelledby="about-heading"] {
  grid-template-columns: 1fr;
  gap: 28px;
  padding-bottom: 48px;
  display: flex;
  flex-direction: column;
}

.desktop .about-image-mask {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  aspect-ratio: 606 / 552;
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
}

.desktop .lisa-card {
  flex-direction: column;
  gap: 18px;
  padding: calc(clamp(80px, 10vh, 120px) + 16px) 18px 28px;
  width: 100%;
  max-width: 100%;
  position: relative;
}

.desktop .lisa-card-content {
  gap: 16px;
  padding: 36px;
}

.desktop .about-lisa-section .text-wrapper-6 {
  font-size: clamp(24px, 4.5vw, 32px);
  line-height: clamp(30px, 5.5vw, 38px);
  margin-bottom: 40px;
}

.desktop .lisa-card-title {
  font-size: clamp(16px, 3.5vw, 20px);
  line-height: clamp(22px, 4.5vw, 26px);
}

.desktop .lisa-card-description {
  font-size: clamp(11px, 2.4vw, 13px);
  line-height: clamp(16px, 3.4vw, 18px);
}

.desktop .about-lisa-section .IMAGE-2 {
  width: min(140px, 55%);
  max-width: 180px;
}

.desktop .lisa-card {
  background-color: #272727;
  border-radius: 8px;
}

.desktop .lisa-card-bg-desktop {
  display: none;
}

.desktop .lisa-card-bg-mobile {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top center;
  height: clamp(80px, 10vh, 120px);
}

.desktop .hero-video-mask {
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
}

.desktop .folder-svg,
.desktop .folder-svg-dark {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.site-footer {
  padding: 72px 0 56px;
}

.site-footer .footer-links {
  flex-wrap: wrap;
  gap: 10px;
}
}

@media (max-width: 1320px) {
.desktop .hero-section,
.desktop .dark-section,
.desktop .offer-section,
.desktop .about-lisa-section,
.desktop .feature-boxes {
  width: 100%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
}

.desktop .hero-section {
  padding: 120px 60px 80px;
}

.desktop .hero-image-wrapper {
  right: 60px;
}

.desktop .feature-boxes {
  padding: 0 60px;
  gap: 24px;
}

.desktop .feature-box {
  flex: 1 1 320px;
  width: clamp(280px, 32vw, 360px);
}

.desktop .dark-section {
  padding: 90px 60px 120px;
  border-radius: 22px;
}

.desktop .offer-section {
  padding: 110px 80px 130px;
}

.desktop .about-lisa-section {
  padding: 96px 60px 110px;
}
}

@media (max-width: 1320px) {
.desktop .hero-section,
.desktop .dark-section,
.desktop .offer-section,
.desktop .about-lisa-section,
.desktop .feature-boxes {
  max-width: 980px;
}

.desktop .hero-section {
  padding: 110px 48px 72px;
  align-items: center;
  text-align: center;
}

.desktop .hero-date,
.desktop .hero-title,
.desktop .hero-subtitle,
.desktop .hero-description,
.desktop .hero-details,
.desktop .hero-cta-button {
  align-self: center;
  text-align: center;
}

.desktop .hero-details {
  align-items: center;
}

.desktop .hero-title {
  width: 100%;
  max-width: 600px;
  font-size: 68px;
  line-height: 70px;
}

.desktop .hero-description {
  width: 100%;
  max-width: 600px;
}

.desktop .hero-image-wrapper {
  position: relative;
  top: 0;
  right: 0;
  width: min(100%, 520px);
  aspect-ratio: 12 / 11;
  height: auto;
  margin: 48px auto 0;
}

.desktop .hero-details {
  flex-wrap: wrap;
  gap: 12px 24px;
}

.desktop .feature-boxes {
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 0 40px;
  margin-top: -40px;
}

.desktop .feature-box {
  width: min(340px, 100%);
}

.desktop .dark-section {
  padding: 84px 48px 110px;
}

.desktop .schedule-section {
  padding: 0;
}

.desktop .offer-section {
  padding: 100px 60px 120px;
}

.desktop .offer-heading {
  max-width: 640px;
}

.desktop .about-lisa-section {
  padding: 90px 48px 110px;
}

.desktop .dark-section section[aria-labelledby="about-heading"] {
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 72px;
}

.desktop .dark-section section[aria-labelledby="about-heading"] .about-content {
  grid-column: 1;
  width: 100%;
}

.desktop .about-the {
  width: 100%;
  max-width: 100%;
}

.desktop .text-wrapper {
  width: 100%;
  max-width: 100%;
}

.desktop .about-image-mask {
  grid-column: 1;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  aspect-ratio: 606 / 552;
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
}

.desktop .lisa-card {
  align-items: self-end;
  gap: 28px;
  padding: 0;
  min-height: auto;
  width: 100%;
  max-width: 100%;
  position: relative;
}

.desktop .lisa-card-content {
  width: 50%;
  text-align: left;
  align-items: self-start;
  gap: 22px;
}

.desktop .lisa-card-title {
  font-size: clamp(24px, 4.5vw, 32px);
  line-height: clamp(30px, 5.5vw, 38px);
}

.desktop .lisa-card-description {
  font-size: clamp(15px, 3vw, 18px);
  line-height: clamp(23px, 4vw, 26px);
}

.desktop .about-lisa-section .IMAGE-2 {
  width: 40%;
  max-width: 390px;
}

.desktop .lisa-card {
  background-color: #272727;
  border-radius: 8px;
  overflow: visible;
}

.desktop .lisa-card-bg-desktop {
  display: none;
}

.desktop .lisa-card-bg-mobile {
  display: block;
  position: absolute;
  top: -33px;
  left: -1px;
  right: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top center;
  height: clamp(80px, 10vh, 120px);
}

.desktop .hero-video-mask {
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
}
}
video.IMAGE {
  height: 90% !important;
}
.container-offer {
    display: flex;
    flex-direction: column-reverse;
}