/* ============================================================
   HETTICH MAGICAL HOME FEST
   Desktop 1920 / 60px  |  Mobile stacked
   Units: px
   ============================================================ */

   @font-face {
    font-family: "Gotham";
    src: url("../fonts/Gotham-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: "Myriad Pro";
    src: url("../fonts/MyriadPro-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  
  
  
  :root {
    --black: #000000;
    --surface: #141414;
    --card: #1a1a1a;
    --white: #ffffff;
    --muted: #c8c8c8;
    --line: rgba(255, 255, 255, 0.16);
    --gold: #d4af37;
    --font: "Myriad Pro";
    --font-heading: "Gotham";
    --font-manrope: "Manrope", sans-serif;
    --max: 1920px;
    --pad: 90px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
    background: var(--black);
  }
  
  body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.5;
    color: var(--white);
    background: var(--black);
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
  }
  
  img {
    display: block;
    max-width: 100%;
    height: auto;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  button,
  input,
  select {
    font: inherit;
    color: inherit;
  }
  
  button {
    border: 0;
    background: none;
    cursor: pointer;
  }
  
  ul {
    list-style: none;
  }
  
  h1,
  h2,
  h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
  }
  
  .container {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding-left: var(--pad);
    padding-right: var(--pad);
  }
  
  .section-title {
    font-size: 40px;
    text-align: center;
    max-width: 1080px;
    margin: 0 auto 56px;
  }
  
  /* ---------- BUTTONS ---------- */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 28px;
    border-radius: 4px;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 400;
    transition: background-color 220ms var(--ease), color 220ms var(--ease), transform 220ms var(--ease);
  }
  
  .btn--light {
    background: var(--white);
    color: var(--black);
  }
  
  .btn--light:hover {
    background: #111111;
    color: var(--white);
  }
  
  .btn--dark {
    background: var(--black);
    color: var(--white);
    width: 100%;
  }
  
  .btn--dark:hover {
    background: #222222;
  }
  
  .btn--login {
    position: relative;
    z-index: 90;
    justify-self: end;
    min-height: 48px;
    padding: 0 30px;
    border-radius: 25px;
    background: var(--white);
    color: #111111;
    font-family: var(--font-manrope);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.15px;
    white-space: nowrap;
    gap: 7px;
    width: 119px;
  }
  
  .btn--login:hover {
    background: #111111;
    color: var(--white);
  }
  
  .btn--login:hover .btn__arrow {
    transform: translate(2px, -2px);
  
  }
  
  .btn--login:hover .btn__arrow path {
    stroke: #ffffff;
  }
  
  .btn__arrow {
    display: block;
    flex-shrink: 0;
    margin-top: -1px;
    transition: transform 220ms var(--ease);
  }
  
  body.nav-open {
    overflow: hidden;
  }
  
  /* ---------- HEADER ---------- */
  .site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding-top: 16px;
  }
  
  .header__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .header__nav {
    position: absolute;
    left: 50%;
    top: 16px;
    height: 80px;
    transform: translateX(-50%);
    z-index: 90;
    display: flex;
    align-items: center;
  }
  
  .header__burger {
    display: none;
    position: relative;
    z-index: 90;
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
    align-items: center;
    justify-content: center;
    transition: transform 220ms var(--ease);
  }
  
  .header__burger:hover {
    transform: scale(1.05);
  }
  
  .header__burger-box {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    width: 16px;
    height: 12px;
  }
  
  .header__burger-box span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: #111111;
    border-radius: 2px;
    transform-origin: center;
    transition: transform 220ms var(--ease), opacity 180ms var(--ease);
  }
  
  .header__burger-box span:nth-child(1) {
    width: 80%;
  }
  
  .header__burger-box span:nth-child(3) {
    width: 80%;
  }
  
  .header__burger[aria-expanded="true"] .header__burger-box span:nth-child(1) {
    transform: translateY(5.25px) rotate(45deg);
  }
  
  .header__burger[aria-expanded="true"] .header__burger-box span:nth-child(2) {
    opacity: 0;
  }
  
  .header__burger[aria-expanded="true"] .header__burger-box span:nth-child(3) {
    transform: translateY(-5.25px) rotate(-45deg);
  }
  
  .logo {
    justify-self: start;
    display: block;
    width: 118px;
    height: 61px;
    overflow: hidden;
  }
  
  .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
  
  .header__nav {
    justify-self: center;
  }
  
  .header__nav-panel {
    display: flex;
    align-items: center;
  
    padding: 15px 8px;
    border-radius: 100px;
    background: #1f1f1fa8;
  }
  
  .header__nav a {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 17px;
    font-family: var(--font-manrope);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.50px;
    color: #FFFFFFCC;
    white-space: nowrap;
    transition: color 200ms var(--ease);
  }
  
  
  
  .header__nav a::after {
    content: "";
    position: absolute;
    left: 17px;
    right: 17px;
    bottom: -3px;
    height: 1px;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 260ms var(--ease);
  }
  
  .header__nav a:hover {
    color: var(--white);
  }
  
  .header__nav a:hover::after {
    transform: scaleX(1);
  }
  
  /* ---------- HERO ---------- */
  .hero {
    position: relative;
  }
  
  .hero__media,
  .hero__media img {
    display: block;
    width: 100%;
    height: auto;
  }
  
  .hero__content {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 720px;
    margin-left: 0;
    padding-top: 50px;
  }
  
  .hero h1 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 400;
    max-width: 560px;
    letter-spacing: -0.2px;
    line-height: 1.35;
  }
  
  .hero p {
    margin-top: 14px;
    font-family: var(--font-manrope);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.35;
    color: #FFFFFFCC;
    letter-spacing: 0.50px;
    max-width: 440px;
  }

  /* ---------- THANK YOU ---------- */
  .thank-you {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
  }

  .thank-you.hero::after {
    display: none;
  }

  .thank-you__media,
  .thank-you__media img {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
  }

  .thank-you__media img {
    object-fit: cover;
    object-position: center;
  }

  .thank-you__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: none;
    margin: 0;
    padding: 88px var(--pad) 40px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  }

  .thank-you h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.2px;
    max-width: 720px;
    color: var(--white);
  }

  .thank-you p {
    margin-top: 16px;
    margin-bottom: 32px;
    max-width: 520px;
    font-family: var(--font-manrope);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.3px;
    color: var(--white);
    opacity: 0.95;
  }

  .thank-you .btn {
    text-decoration: none;
  }
  
  /* ---------- FESTIVE / MAGICAL HOME FEST ---------- */
  .fest {
    padding: 60px 0 0;
  }
  
  .fest__top,
  .fest__main {
    display: grid;
    grid-template-columns: 0.72fr 1fr;
    gap: 42px;
  }
  
  .fest__top {
    align-items: start;
  }
  
  .fest__title {
    font-size: 28px;
    line-height: 1.32;
    max-width: 470px;
  }
  
  .fest__lead {
    font-size: 16px;
    line-height: 24px;
    color: #8a8a8a;
    max-width: 720px;
  }
  
  .fest__main {
    margin-top: 40px;
  
  }
  
  .fest__figure {
    overflow: hidden;
    border-radius: 20px;
  }
  
  .fest__figure img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 700ms var(--ease);
  }
  
  .fest__figure:hover img {
    transform: scale(1.04);
  }
  
  .fest__note {
    display: grid;
    grid-template-columns: 216px 1fr;
    gap: 24px;
    border-top: 1px solid #1F1F1F;
    padding-top: 36px;
  }
  
  .fest__note+.fest__note {
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid #1F1F1F;
  }
  
  .fest__note h3 {
    font-size: 18px;
    line-height: 1.48;
  }
  
  .fest__note p {
    font-size: 14px;
    color: #8A8A8A;
    font-weight: 400;
    letter-spacing: 0.50px;
  }
  
  /* ---------- SLABS ---------- */
  .slabs {
    padding: 38px 0 0;
  }
  
  /* padding-top leaves room for the badge that overhangs the card */
  .slabs__swiper {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 30px var(--pad) 0;
  }

  .slabs__swiper .swiper-slide {
    overflow: visible;
  }
  
  .slab {
    position: relative;
    height: 100%;
    padding: 48px 20px 12px;
    border-radius: 20px;
    background: linear-gradient(180deg, #1D1D1D 52.91%, #000000 100%);
    text-align: center;
    transition: border-color 320ms var(--ease), transform 320ms var(--ease),
      box-shadow 320ms var(--ease);
  }

  @media (hover: hover) and (pointer: fine) {
    .slab:hover {
      border-color: rgba(255, 255, 255, 0.2);
      transform: translateY(-4px);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    }
  }
  
  .slab__badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -60%);
    padding: 5px 14px;
    border: 1px solid #FFFFFF66;
    border-radius: 999px;
    background: #000;
    font-size: 12px;
    line-height:normal;
    color: #fff;
    white-space: nowrap;
    width: fit-content;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
  }
  
  .slab__label {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    font-family: var(--font-heading);
    color: #9A9A9A;
  }
  
  .slab__rule {
    display: block;
    width: 36px;
    height: 1px;
    margin: 12px auto 6px;
    border: 1px solid #C0AF81;
  }
  
  .slab__price {
    font-family: var(--font);
    font-size: 30px;
    line-height: 1.2;
    font-weight: 600;
    margin-top: 20px;
  }

  .slab__asterisk {
    font-size: 0.5em;
    font-weight: 400;
    vertical-align: super;
    line-height: 0;
  }
  
  .slab__pick {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin: 18px 0 16px;
    font-family: var(--font);
    font-size: 12px;
    line-height: 1;
    color: #9A9A9A;
    font-weight: 400;
    white-space: nowrap;
  }
  
  .slab__pick::before,
  .slab__pick::after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
    min-width: 8px;
    background: rgba(255, 255, 255, 0.22);
  }
  
  .slab__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
    gap: 0px;
    text-align: left;
  }
  
  .slab__list li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 7px 0;
    font-family: var(--font);
    font-size: 14px;
    color: #9a9a9a;
    font-weight: 400;
    transition: color 220ms var(--ease);
    padding-left: 30px;
    letter-spacing: 0.50px;
  
  }
  
  .slab__list img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    background: #2b2724;
    flex-shrink: 0;
    transition: transform 320ms var(--ease);
  }

  @media (hover: hover) and (pointer: fine) {
    .slab__list li:hover {
      color: var(--white);
    }

    .slab__list li:hover img {
      transform: scale(1.1);
    }
  }
  
  .slabs__bar {
    display: none;
    align-items: center;
    gap: 14px;
    margin-top: 26px;
    padding: 0 44px;
  }
  
  .slabs__num {
    font-size: 12px;
    color: #8d8781;
    letter-spacing: 0.6px;
  }
  
  .slabs__track {
    position: relative;
    flex: 1;
    height: 2px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.16);
    overflow: hidden;
  }
  
  .slabs__fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 25%;
    border-radius: 2px;
    background: #ffffff;
    transition: width 420ms var(--ease);
  }
  
  /* ---------- BONUS / MAGIC LIGHTS ---------- */
  .bonus {
    position: relative;
    margin-top: 56px;
    padding: 84px 0 58px;
    overflow: hidden;
    background: #1F1F1F;
    text-align: center;
  }
  
  .bonus__art {
    position: absolute;
    height: auto;
    pointer-events: none;
    user-select: none;
  }
  
  /* each graphic fades toward the middle so the copy stays clean */
  .bonus__art--left {
    left: -40px;
    top: -488px;
    width: fit-content;
  }
  
  .bonus__art--right {
    right: -30px;
    width: fit-content;
  
  }
  
  .bonus__inner {
    position: relative;
    z-index: 1;
  }
  
  .bonus h2 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 16px;
  }
  
  .bonus p {
    max-width: 390px;
    margin: 0 auto;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.50px;
    font-family: var(--font);
  }
  
  /* ---------- JOURNEY (5-STEP) ---------- */
  .journey {
    padding: 68px 0 56px;
  }
  
  .journey__title {
    max-width: 580px;
    margin: 0 auto;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 28px;
    line-height: 1.3;
    text-align: center;
    color: var(--white);
  }
  
  .timeline {
    position: relative;
    margin-top: 60px;
    padding-bottom: 35px;
  }
  
  .timeline__track {
    position: absolute;
    left: 50%;
    top: 70px;
    width: 1px;
    height: calc(100% - 140px);
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-50%);
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
  }
  
  .timeline__fill {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    transform: scaleY(0);
    transform-origin: top center;
  }
  
  .timeline::before {
    display: none;
  }
  
  /* Rows keep a 141px rhythm while the cards are taller, so neighbouring
     cards overlap slightly -- they sit on opposite sides, so nothing collides. */
  .step {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 150px 1fr;
    align-items: center;
    height: 141px;
  }
  
  .step__card {
    --step-icon: 133px;
    position: relative;
    grid-column: 1;
    grid-row: 1;
    display: grid;
    grid-template-columns: var(--step-icon) 1fr;
    align-items: flex-start;
    min-height: 176px;
    padding-right: 27px;
    border-radius: 20px;
    background: linear-gradient(180deg, #1D1D1D 52.91%, #000000 100%);
    transition: transform 420ms var(--ease), box-shadow 420ms var(--ease);
  }
  
  .step--right .step__card {
    grid-column: 3;
  }
  
  .step__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.55);
  }
  
  /* Small chevron pointing from the timeline into the card. */
  /* .step__card::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 7px;
    height: 7px;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    border-right: 1px solid rgba(255, 255, 255, 0.4);
  }
  
  .step--left .step__card::before {
    right: -14px;
    transform: translateY(-50%) rotate(-135deg);
  }
  
  .step--right .step__card::before {
    left: -14px;
    transform: translateY(-50%) rotate(45deg);
  } */
  
  .step__card::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--step-icon);
    z-index: 1;
    width: 13px;
    background: url("../images/step-split.svg") 0 0 / 13px 100% no-repeat;
    pointer-events: none;
  }
  
  .step__icon {
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .step__icon img {
    width: auto;
    height: auto;
    max-width: 64px;
    max-height: 64px;
    transition: transform 420ms var(--ease);
  }
  
  .step__card:hover .step__icon img {
    transform: scale(1.06);
  }
  
  .step__body {
    padding: 22px 0 22px 31px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }
  
  .step__body h3 {
    margin: 0 0 10px;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.3;
    color: #CECECE;
  }
  
  .step__body p {
    margin: 0;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.25;
    font-weight: 400;
    color: #8A8A8A;
  }
  
  .step__mark {
    grid-column: 2;
    grid-row: 1;
    align-self: stretch;
    position: relative;
  }
  
  .step__dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 10px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    background: var(--black);
    transform: translate(-50%, -50%);
    transition: background-color 280ms var(--ease), border-color 280ms var(--ease),
      transform 280ms var(--ease);
  }
  
  .step.is-active .step__dot {
    width: 11px;
    height: 11px;
    border-color: var(--white);
    background: var(--white);
  }
  
  .step__num {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.02em;
    color: #8d8985;
    transition: color 280ms var(--ease);
  }
  
  .step.is-active .step__num {
    color: var(--white);
  }
  
  .step--left .step__num {
    right: calc(50% + 10px);
  }
  
  .step--right .step__num {
    left: calc(50% + 10px);
  }
  
  /* Narrower desktops: cards get taller than the 141px rhythm, so let the rows
     grow instead of letting neighbouring cards overlap. */
  @media (min-width: 1024px) and (max-width: 1439px) {
    .step {
      height: auto;
      padding-bottom: 20px;
    }
  
    .step__card {
      --step-icon: 112px;
      padding-right: 22px;
    }
  
    .step__body {
      padding-left: 24px;
    }
  
    .step__body p {
      font-size: 15px;
    }
  
    .timeline {
      padding-bottom: 0;
    }
  
    .store__orbit {
      --store-r: 380px;
    }
  
    .store__viewport {
      height: 500px;
    }
  
    .store__pill {
      min-width: 148px;
      width: 148px;
      height: 52px;
    }
  
    .solutions__swiper {
      height: 460px;
    }
  }
  
  /* ---------- SOLUTIONS ---------- */
  .solutions {
    position: relative;
    overflow: hidden;
    padding: 52px 0 80px;
    background: #1C1C1C;
  }

  .solutions .container {
    position: relative;
    z-index: 1;
  }

  .solutions__art {
    position: absolute;
    height: auto;
    pointer-events: none;
    user-select: none;
  }

  .solutions__art--tl {
    left: -40px;
    top: -71%;
    width: fit-content;
   
}

.solutions__art--br {
  right: -61px;
  bottom: -324px;
  width: 282px;
  /* opacity: 0.95; */
}
  
  .solutions__title {
    margin: 0 auto 40px;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 36px;
    line-height: 1.2;
    text-align: center;
    color: var(--white);
  }
  
  .solutions__swiper {
    overflow: hidden;
  }
  
  .solutions__swiper .swiper-wrapper {
    align-items: stretch;
  }
  
  .sol {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    cursor: pointer;
  }
  
  .sol img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
    transition: transform 700ms var(--ease);
  }
  
  .sol.is-active img,
  .sol:hover img {
    transform: scale(1);
  }
  
  .sol::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 48%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.72) 100%);
    pointer-events: none;
  }
  
  .sol__copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 0 28px 28px;
  }
  
  .sol__copy h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 17px;
    line-height: 1.3;
    color: var(--white);
  }
  
  .sol__copy p {
    max-width: 340px;
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.82);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(8px);
    transition: opacity 360ms var(--ease), transform 360ms var(--ease), max-height 360ms var(--ease);
  }
  
  .sol.is-active .sol__copy h3 {
    font-size: 20px;
  }
  
  .sol.is-active .sol__copy p {
    opacity: 1;
    max-height: 80px;
    transform: none;
    font-size: 16px;
    font-weight: 400;
    color: #C7C7C7;
    letter-spacing: 0.20px;
    font-family: var(--font);
  }
  
  .solutions__bar {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 236px;
    margin: 28px auto 0;
  }
  
  .solutions__num {
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.6px;
    color: #b8b8b8;
  }
  
  .solutions__track {
    position: relative;
    flex: 1;
    height: 2px;
    overflow: hidden;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.18);
  }
  
  .solutions__fill {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    border-radius: 2px;
    background: #ffffff;
    transition: width 420ms var(--ease);
  }
  
  @media (min-width: 1024px) {
    .solutions__swiper {
      overflow: visible;
      height: 520px;
    }
  
    .solutions__swiper .swiper-wrapper {
      display: flex;
      height: 100%;
      gap: 16px;
      transform: none !important;
    }
  
    .solutions__swiper .swiper-slide {
      width: auto !important;
      height: 100%;
      margin: 0 !important;
      flex: 1 1 0;
      min-width: 0;
      transition: flex 520ms var(--ease);
    }
  
    .solutions__swiper .swiper-slide.is-active {
      flex: 2.42 1 0;
    }
  
    .solutions__swiper:hover .swiper-slide.is-active:not(:hover) {
      flex: 1 1 0;
    }
  
    .solutions__swiper:hover .swiper-slide:hover {
      flex: 2.42 1 0;
    }
  
    .solutions__swiper:hover .swiper-slide.is-active:not(:hover) .sol__copy p {
      opacity: 0;
      max-height: 0;
      transform: translateY(8px);
    }
  
    .solutions__swiper:hover .swiper-slide:hover .sol__copy p {
      opacity: 1;
      max-height: 80px;
      transform: none;
    }
  }
  
  .swiper-pagination-bullet {
    background: var(--white);
  }
  
  /* ---------- STORE ---------- */
  .store {
    position: relative;
    padding: 56px 0 40px;
    overflow: hidden;
    background-color: #101010;
    padding-bottom: 0;
  }
  
  .store__art {
    position: absolute;
    left: -80px;
    bottom: -220px;
    width: 420px;
    height: auto;
    pointer-events: none;
    user-select: none;
    opacity: 0.7;
    -webkit-mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.55) 46%, transparent 78%);
    mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.55) 46%, transparent 78%);
  }
  
  .store__title {
    position: relative;
    z-index: 1;
    margin: 0 auto 8px;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 36px;
    line-height: 1.2;
    text-transform: capitalize;
    text-align: center;
    color: var(--white);
  }
  
  .store__wheel {
    position: relative;
    z-index: 1;
  }
  
  .store__viewport {
    position: relative;
    height: 600px;
    overflow: hidden;
  
  }
  
  .store__orbit {
    --store-r: 440px;
    position: absolute;
    left: 50%;
    top: 36px;
    width: calc(var(--store-r) * 2);
    height: calc(var(--store-r) * 2);
    margin-left: calc(var(--store-r) * -1);
    pointer-events: none;
    margin-top: 50px;
  }
  
  .store__pill {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 158px;
    width: 158px;
    height: 110px;
    padding: 0 22px;
    border-radius: 20px;
    background: #d0d0d0;
    color: #1F1F1F;
    font-family: var(--font);
    font-size: 18px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0.01em;
    white-space: nowrap;
    overflow: hidden;
    pointer-events: auto;
    transition: transform 800ms var(--ease), background-color 320ms var(--ease),
      box-shadow 320ms var(--ease), opacity 420ms var(--ease);
  }
  
  .store__pill span {
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .store__pill svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
  }
  
  .store__pill.is-active {
    z-index: 4;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  }
  
  .store__detail {
    position: absolute;
    left: 0;
    right: 0;
    top: 236px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
  }
  
  .store__stem {
    position: relative;
    width: 1px;
    height: 34px;
    margin-bottom: 18px;
    background: rgba(255, 255, 255, 0.32);
  }
  
  .store__stem::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 7px;
    height: 7px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    background: #000000;
    transform: translate(-50%, -50%);
  }
  
  .store__addr {
    max-width: 420px;
    margin: 0 auto;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font);
    line-height: 1.55;
    text-align: center;
    max-width: 254px;
    color: #8A8A8A;
    transition: opacity 320ms var(--ease);
  }
  
  .store__tel {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 16px;
    color: #8A8A8A;
  }
  
  .store__tel a {
    pointer-events: auto;
  }
  
  .store__nav {
    display: flex;
    gap: 14px;
    margin-top: 28px;
    pointer-events: auto;
  }
  
  .store__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    color: var(--white);
    transition: background-color 220ms var(--ease), border-color 220ms var(--ease),
      transform 220ms var(--ease);
  }
  
  .store__arrow:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--white);
    transform: scale(1.06);
  }
  
  /* ---------- APPOINTMENT ---------- */
  .appoint {
    position: relative;
    padding: 72px 0 80px;
    overflow: hidden;
    background: #000000;
    scroll-margin-top: 24px;
  }
  
  .appoint__art {
    position: absolute;
    height: auto;
    pointer-events: none;
    user-select: none;
  }
  
  .appoint__art--tl {
    left: -40px;
    top: -160px;
    width: 380px;
    opacity: 0.95;
    -webkit-mask-image: linear-gradient(135deg, #000 0%, rgba(0, 0, 0, 0.75) 52%, transparent 82%);
    mask-image: linear-gradient(135deg, #000 0%, rgba(0, 0, 0, 0.75) 52%, transparent 82%);
  }
  
  .appoint__art--br {
    right: -30px;
    bottom: -90px;
    width: 400px;
    opacity: 0.95;
    -webkit-mask-image: linear-gradient(315deg, #000 0%, rgba(0, 0, 0, 0.75) 55%, transparent 82%);
    mask-image: linear-gradient(315deg, #000 0%, rgba(0, 0, 0, 0.75) 55%, transparent 82%);
  }
  
  .appoint__card {
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin: 0 auto;
    padding: 40px 48px 36px;
    border-radius: 24px;
    background: #ffffff;
    color: #111111;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  }
  
  .appoint__card h2 {
    margin: 0 0 34px;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    color: #111111;
  }
  
  .form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px 28px;
  }
  
  .form>.field:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  
  .form>.field:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }
  
  .form>.field:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
  }
  
  .form>.field:nth-child(4) {
    grid-column: 2;
    grid-row: 1;
  }
  
  .form>.field:nth-child(5) {
    grid-column: 2;
    grid-row: 2;
  }
  
  .form>.field:nth-child(6) {
    grid-column: 2;
    grid-row: 3;
  }
  
  .field {
    position: relative;
    min-width: 0;
  }
  
  .field label {
    position: absolute;
    left: 12px;
    top: -7px;
    z-index: 1;
    padding: 0 5px;
    background: #ffffff;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font);
    line-height: 1;
    color: #1f1f1f;
  }
  
  .field input,
  .field select {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    background: #ffffff;
    color: #707070;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font);
    outline: none;
  }
  
  .field input:focus,
  .field select:focus {
    border-color: #9a9a9a;
  }
  
  .field input::placeholder,
  .field select:invalid {
    color: #707070;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font);
  }

  .field select option:disabled {
    color: #9a9a9a;
  }
  
  .field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5 L6 6.5 L11 1.5' stroke='%23111' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
  }
  
  .field--select > select {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
  }
  
  .sel {
    position: relative;
  }
  
  .sel__btn {
    width: 100%;
    height: 48px;
    padding: 0 36px 0 14px;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5 L6 6.5 L11 1.5' stroke='%23111' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 14px center;
    color: #707070;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font);
    text-align: left;
    outline: none;
  }
  
  .sel.is-open .sel__btn,
  .sel__btn:focus {
    border-color: #9a9a9a;
  }

  .field.is-invalid .sel__btn {
    border-color: #c62828;
  }
  
  .sel.is-open .sel__btn {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 6.5 L6 1.5 L11 6.5' stroke='%23111' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  }
  
  .sel__btn:not(.is-placeholder) {
    color: #111111;
  }
  
  .sel__panel {
    position: fixed;
    z-index: 120;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
  }
  
  .sel__panel[hidden] {
    display: none;
  }
  
  .sel__search {
    flex-shrink: 0;
    width: 100%;
    height: 40px;
    padding: 0 12px;
    border: 0;
    border-bottom: 1px solid #E0E0E0;
    border-radius: 0;
    background: #ffffff;
    color: #111111;
    font-size: 14px;
    font-family: var(--font);
    outline: none;
  }
  
  .sel__search::placeholder {
    color: #b0b0b0;
  }
  
  .sel__list {
    overflow-y: auto;
    min-height: 0;
    padding: 6px 0;
  }
  
  .sel__opt {
    padding: 10px 14px;
    color: #1f1f1f;
    font-size: 14px;
    font-family: var(--font);
    line-height: 1.3;
    cursor: pointer;
  }
  
  .sel__opt:hover,
  .sel__opt.is-active {
    background: #f3f3f3;
  }
  
  .sel__opt.is-selected {
    background: #111111;
    color: #ffffff;
  }
  
  .sel__empty {
    padding: 12px 14px;
    color: #8a8a8a;
    font-size: 13px;
  }
  
  .field--date > input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
  }
  
  .datepick__btn {
    width: 100%;
    height: 48px;
    padding: 0 42px 0 14px;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none'%3E%3Crect x='2' y='3.2' width='12' height='11' rx='1.4' stroke='%23666' stroke-width='1.3'/%3E%3Cpath d='M2 7h12M5.5 2v3M10.5 2v3' stroke='%23666' stroke-width='1.3' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 14px center;
    color: #707070;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font);
    text-align: left;
    outline: none;
  }
  
  .field--date.is-open .datepick__btn,
  .datepick__btn:focus {
    border-color: #9a9a9a;
  }

  .field.is-invalid .datepick__btn {
    border-color: #c62828;
  }
  
  .datepick__btn:not(.is-placeholder) {
    color: #111111;
  }
  
  .cal {
    position: fixed;
    z-index: 120;
    box-sizing: border-box;
    padding: 12px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
  }
  
  .cal[hidden] {
    display: none;
  }
  
  .cal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
  }
  
  .cal__title {
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    color: #111111;
  }
  
  .cal__nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    color: #111111;
  }
  
  .cal__nav:hover:not(:disabled) {
    background: #f3f3f3;
  }
  
  .cal__nav:disabled {
    opacity: 0.28;
    cursor: default;
  }
  
  .cal__week,
  .cal__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
  }
  
  .cal__dow {
    padding: 4px 0 6px;
    color: #8a8a8a;
    font-size: 11px;
    line-height: 1;
    text-align: center;
  }
  
  .cal__day {
    height: 34px;
    border-radius: 6px;
    color: #111111;
    font-size: 13px;
    font-family: var(--font);
  }
  
  .cal__day:hover:not(:disabled):not(.is-selected) {
    background: #f3f3f3;
  }
  
  .cal__day.is-today {
    box-shadow: inset 0 0 0 1px #111111;
  }
  
  .cal__day.is-selected {
    background: #111111;
    color: #ffffff;
  }
  
  .cal__day:disabled {
    color: #c4c4c4;
    cursor: default;
  }
  
  .cal__blank {
    height: 34px;
  }
  
  .form__consent {
    grid-column: 1 / -1;
  }

  .form__check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: -2px;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font);
    line-height: 1.45;
    color: #707070;
  }

  .form__consent .field__error {
    margin-top: 6px;
  }
  
  .form__check input {
    appearance: none;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    border: 1px solid #c8c8c8;
    border-radius: 2px;
    background: #ffffff;
    cursor: pointer;
  }
  
  .form__check input:checked {
    border-color: #111111;
    background: #111111;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none'%3E%3Cpath d='M2.2 6.2 L4.8 8.8 L9.8 3.4' stroke='%23fff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .form__submit {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    justify-self: center;
    width: 430px;
    max-width: 100%;
    min-height: 56px;
    margin-top: 6px;
    padding: 0 32px;
    border-radius: 8px;
    background: #000000;
    color: #ffffff;
    font-family: var(--font);
    font-size: 18px;
    font-weight: 400;
    transition: background-color 220ms var(--ease), transform 220ms var(--ease);
  }
  
  .form__submit:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
  }
  
  .form__submit:hover .btn__arrow {
    transform: translate(2px, -2px);
  }
  
  .form__note {
    grid-column: 1 / -1;
    text-align: center;
    color: #1a7a3a;
    font-size: 14px;
  }
  
  @media (min-width: 1024px) {
    .appoint {
      min-height: 780px;
      display: flex;
      align-items: center;
    }
  
    .appoint .container {
      width: 100%;
    }
  
    .appoint__card {
      transform: translateY(118%);
      opacity: 0;
      transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), opacity 480ms var(--ease);
    }
  
    .appoint.is-open .appoint__card {
      transform: none;
      opacity: 1;
    }
  }
  
  /* ---------- FOOTER ---------- */
  .site-footer {
    position: relative;
    z-index: 2;
    background: #ffffff;
    color: #111111;
    padding: 18px 0 20px;
  }
  
  .footer__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px 20px;
  }
  
  .footer__logo {
    justify-self: start;
    display: block;
    line-height: 0;
  }
  
  .footer__logo img {
    display: block;
    height: 32px;
    width: auto;
    mix-blend-mode: multiply;
  }
  
  .footer__copy {
    justify-self: center;
    max-width: 720px;
    font-size: 12px;
    font-weight: 400;
    font-family: var(--font-manrope);
    line-height: 1.5;
    text-align: center;
    color: #1F1F1FE5;
  }
  
  .footer__copy a {
    color: inherit;
  }
  
  .footer__copy a:hover {
    color: #111111;
  }
  
  .footer__break {
    display: none;
  }
  
  .footer__social {
    display: flex;
    justify-self: end;
    gap: 8px;
  }
  
  .footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid #c4c4c4;
    border-radius: 50%;
    color: #111111;
    transition: background-color 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease);
  }
  
  .footer__social a:hover {
    background: #111111;
    border-color: #111111;
    color: #ffffff;
  }
  
  .bookbar {
    position: fixed;
    right: 0;
    bottom: 20px;
    z-index: 80;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 137px;
    height: 52px;
    padding: 0 28px;
    transform: translateX(-50%);
    border: 1px solid #111111;
    border-radius: 100px;
    background: #ffffff;
    color: #111111;
    font-family: var(--font);
    border: 1px solid #000000;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.06);
    transition: opacity 220ms var(--ease), visibility 220ms var(--ease),
      transform 220ms var(--ease);
  }
  
  .bookbar.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(16px);
  }
  
  .bookbar:hover {
    background: #111111;
    color: #ffffff;
  }
  
  /* ---------- ANIMATIONS ---------- */
  [data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  }
  
  [data-animate="fade-left"] {
    transform: translateX(24px);
  }
  
  [data-animate="fade-right"] {
    transform: translateX(-24px);
  }
  
  [data-animate].is-inview {
    opacity: 1;
    transform: none;
  }
  
  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }
  
    [data-animate] {
      animation: none !important;
      opacity: 1;
      transform: none;
    }
  
    .appoint__card {
      transform: none !important;
      opacity: 1 !important;
    }
  
    .solutions__swiper .swiper-slide,
    .sol img,
    .sol__copy p,
    .solutions__fill,
    .store__pill,
    .step__dot,
    .step__num {
      transition: none !important;
    }
  }
  
  /* ---------- LAPTOP ---------- */
  @media (max-width: 1439px) {
    :root {
      --pad: 48px;
    }
  
    .logo {
      width: 104px;
      height: 54px;
    }
  
    .header__nav a {
      font-size: 13px;
      padding: 0 13px;
    }
  
    .hero h1 {
      font-size: 34px;
    }

    .thank-you h1 {
      font-size: 40px;
    }
  
    .fest__title {
      font-size: 26px;
    }
  
    .fest__lead {
      font-size: 16px;
    }
  
    .fest__note {
      grid-template-columns: 190px 1fr;
    }
  
    .section-title,
    .bonus h2 {
      font-size: 32px;
    }
  
    .slab {
      padding: 26px 16px 12px;
    }
  
    .slab__label {
      font-size: 16px;
    }
  
    .slab__price {
      font-size: 25px;
    }
  
    .slab__list li {
      font-size: 14px;
      gap: 10px;
    }
  }
  
  /* ---------- TABLET / MOBILE ---------- */
  @media (max-width: 1023px) {
    .site-header {
      padding-top: 16px;
    }
  
    .header__inner {
      display: grid;
      grid-template-columns: 0.9fr auto 1fr;
      align-items: center;
      gap: 8px;
    }
  
    .header__burger {
      display: flex;
      justify-self: start;
    }
  
    .logo {
      justify-self: center;
      width: 92px;
      height: 48px;
    }
  
    .header__nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      max-width: none;
      margin: 0;
      transform: none;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #000000;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 240ms var(--ease), visibility 240ms var(--ease);
    }
  
    .header__nav.is-open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }
  
    .header__nav-panel {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 28px;
      width: 100%;
      max-width: none;
      height: auto;
      padding: 0 20px;
      border: 0;
      border-radius: 0;
      background: transparent;
      backdrop-filter: none;
      transform: none;
      text-align: center;
    }
  
    .header__nav a {
      width: auto;
      height: auto;
      padding: 0;
      font-size: 22px;
      color: rgba(255, 255, 255, 0.72);
      border: 0;
      opacity: 0;
      transform: translateY(14px);
      transition: opacity 320ms var(--ease), transform 320ms var(--ease), color 200ms var(--ease);
    }
  
    .header__nav a+a {
      border-left: 0;
    }
  
    .header__nav.is-open a {
      opacity: 1;
      transform: none;
    }
  
    .header__nav.is-open a:nth-child(1) {
      transition-delay: 90ms;
    }
  
    .header__nav.is-open a:nth-child(2) {
      transition-delay: 150ms;
    }
  
    .header__nav.is-open a:nth-child(3) {
      transition-delay: 210ms;
    }
  
    .header__nav.is-open a:nth-child(4) {
      transition-delay: 270ms;
    }
  
    .header__nav.is-open a:nth-child(5) {
      transition-delay: 330ms;
    }
  
    .header__nav a::after {
      left: 0;
      right: 0;
      bottom: -4px;
      transform-origin: center;
    }
  
    .header__nav a:hover {
      color: var(--white);
    }
  
    .btn--login {
      min-height: 42px;
      padding: 0 16px;
      font-size: 14px;
      gap: 9px;
      width: fit-content;
  }
  
    .btn__arrow {
      width: 11px;
      height: 11px;
    }
  
    .fest__top,
    .fest__main,
    .fest__note,
    .form {
      grid-template-columns: 1fr;
    }
  
    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 40%, rgba(0, 0, 0, 0.58) 100%);
      pointer-events: none;
    }
  
    .hero__content {
      max-width: none;
      padding-top: 0;
      padding-bottom: 26px;
      justify-content: flex-end;
      text-align: center;
      align-items: center;
      z-index: 2;
    }
  
    .hero h1 {
      font-size: 28px;
      line-height: 1.28;
      text-transform: uppercase;
      letter-spacing: 0.4px;
      max-width: none;
    }
  
    .hero p {
      margin-top: 12px;
      font-size: 16px;
      line-height: 1.5;
      max-width: 300px;
      color: #FFFFFFCC;
    }
  
    .hero p br {
      display: none;
    }

    .thank-you h1 {
      font-size: 32px;
      text-transform: none;
      letter-spacing: -0.2px;
      max-width: 520px;
    }

    .thank-you p {
      margin-top: 12px;
      margin-bottom: 24px;
      font-size: 16px;
      max-width: 360px;
    }

    .thank-you__content {
      padding-top: 72px;
      padding-bottom: 32px;
    }
  
    .fest {
      padding-top: 32px;
    }
  
    .fest__top {
      gap: 12px;
    }
  
    .fest__title {
      font-size: 24px;
      line-height: 1.35;
      max-width: 340px;
    }
  
    .fest__lead,
    .fest__note p {
      font-size: 16px;
      line-height: 1.5;
      max-width: 100%;
    }
  
    .fest__main {
      margin-top: 26px;
      gap: 28px;
    }
  
    .fest__figure {
      border-radius: 12px;
    }
  
    /* .fest__figure img {
      height: 205px;
    } */
  
    .fest__note {
      gap: 14px;
    }
  
    .fest__note+.fest__note {
      margin-top: 20px;
      padding-top: 0;
      border-top: 0;
    }
  
    .fest__note h3 {
      font-size: 18px;
      line-height: 1.35;
    }
  
    .fest__note h3 br {
      display: none;
    }
  
    .slabs {
      padding-top: 40px;
    }
  
    .slabs__swiper {
      padding: 24px 0 0 var(--pad);
      overflow: hidden;
    }

    .slabs__swiper .swiper-slide {
      overflow: visible;
    }
  
    .slabs__bar {
      display: flex;
    }
  
    .slab {
      padding: 30px 16px 12px;
    }
    .slab__badge {
      font-size: 16px;
      padding: 5px 12px;
      height: auto;
  }
  
    .slab__label {
      font-size: 14px;
    }
  
    .slab__rule {
      margin: 10px auto 5px;
    }
  
    .slab__price {
      font-size: 30px;
    }
  
    .slab__pick {
      margin: 14px 0 12px;
      gap: 8px;
      font-size: 11px;
    }
  
    .slab__list {
      gap: 10px;
    }
  
    .slab__list li {
      font-size: 16px;
      gap: 10px;
    }
  
    .slab__list li {
      padding-left: 25px;
    }
  
    .slab__list img {
      width: 32px;
      height: 32px;
    }
  
    .slabs__bar {
      padding: 0 40px;
    }
  
    .bonus {
      margin-top: 28px;
      padding: 42px 0 30px;
    }
  
    .bonus h2 {
      font-size: 24px;
      margin-bottom: 12px;
    }
  
    .bonus p {
      max-width: 300px;
      font-size: 16px;
      line-height: 1.6;
    }
  
    .solutions {
      padding: 36px 0 48px;
    }

    .solutions__art--tl {
      left: 0;
      top: -212px;
      width: 220px;
  }
  
    .solutions__title {
      margin-bottom: 24px;
      font-size: 24px;
    }
  
    .sol {
      height: 400px;
      border-radius: 22px;
    }
  
    .sol.is-active img,
    .sol img {
      transform: none;
    }
  
    .sol__copy {
      padding: 0 22px 22px;
    }
  
    .sol__copy h3 {
      font-size: 18px;
    }
  
    .sol__copy p {
      max-width: 280px;
      margin-top: 10px;
      font-size: 13px;
      line-height: 1.4;
      opacity: 1;
      max-height: none;
      overflow: visible;
      transform: none;
    }
  
    .solutions__bar {
      width: 168px;
      margin-top: 22px;
      gap: 10px;
    }
  
    .bonus__art--left {
      top: -204px;
      width: 200px;
    }
  
    .bonus__art--right {
      width: 200px;
      top: 160px;
      right: 0;
    }
  
    .journey {
      padding: 30px 0 28px;
    }
  
    .journey__title {
      max-width: 100%;
      font-size: 24px;
    }
  
    .timeline {
      display: flex;
      flex-direction: column;
      gap: 35px;
      margin-top: 22px;
      padding-bottom: 0;
    }
  
  
    .timeline__track {
      left: 1px;
      transform: none;
    }
  
    .timeline::before {
      display: none;
    }
  
    .step {
      grid-template-columns: 32px 1fr;
      height: auto;
    }
  
    .step__card,
    .step--right .step__card {
      --step-icon: 64px;
      grid-column: 2;
      min-height: 126px;
      padding-right: 16px;
      border-radius: 12px;
    }
  
    .step__card::before {
      display: none;
    }
  
    .step__icon img {
      max-width: 40px;
      max-height: 40px;
    }
  
    .step__body {
      padding: 12px 0 12px 20px;
    }
  
    .step__body h3 {
      margin-bottom: 8px;
      font-size: 18px;
    }
  
    .step__body p {
      font-size: 12px;
      line-height: 1.35;
    }
  
    .step__mark {
      grid-column: 1;
    }
  
    .step__dot {
      left: 1px;
    }
  
    .step__num,
    .step--left .step__num,
    .step--right .step__num {
      left: 11px;
      right: auto;
      font-size: 12px;
    }
  
    .store {
      padding: 36px 0 28px;
    }
  
    .store__art {
      width: 240px;
      left: -90px;
      bottom: -140px;
      opacity: 0.45;
    }
  
    .store__title {
      margin-bottom: 18px;
      font-size: 24px;
    }
  
    .store__viewport {
      width: 100vw;
      margin-left: calc(50% - 50vw);
      height: 220px;
      overflow: hidden;
    }
  
    .store__orbit {
      --store-r: 420px;
      --store-step: 28;
      left: 50%;
      top: 56px;
      width: calc(var(--store-r) * 2);
      height: calc(var(--store-r) * 2);
      margin-left: calc(var(--store-r) * -1);
      margin-top: 0;
    }
  
    .store__pill {
      min-width: 158px;
      width: 158px;
      height: 96px;
      padding: 0 16px;
      font-size: 17px;
      border-radius: 18px;
      gap: 8px;
      overflow: hidden;
    }
  
    .store__pill svg {
      width: 18px;
      height: 18px;
    }
  
    .store__detail {
      position: relative;
      top: -37px;
      padding-top: 4px;
    }
  
    .store__stem {
      height: 28px;
      margin-bottom: 14px;
    }
  
    .store__addr {
      max-width: 300px;
      font-size: 16px;
      line-height: 1.5;
    }
  
    .store__tel {
      margin-top: 10px;
      font-size: 16px;
    }
  
    .store__nav {
      margin-top: 22px;
      gap: 12px;
    }
  
    .store__arrow {
      width: 40px;
      height: 40px;
    }
  
    .appoint {
      padding: 28px 0 36px;
    }
  
    .appoint__art--tl {
      left: -70px;
      top: -70px;
      width: 220px;
    }
  
    .appoint__art--br {
      right: -70px;
      bottom: -80px;
      width: 240px;
    }
  
    .appoint__card {
      padding: 28px 16px 22px;
      border-radius: 20px;
    }
  
    .appoint__card h2 {
      margin-bottom: 26px;
      font-size: 24px;
    }
  
    .form {
      gap: 22px;
    }
  
    .form>.field {
      grid-column: 1 !important;
      grid-row: auto !important;
    }

    .field input,
    .field select,
    .field input::placeholder,
    .field select:invalid,
    .sel__btn,
    .sel__search,
    .datepick__btn {
      font-size: 16px;
    }
  
    .form__check {
      font-size: 12px;
    }
  
    .form__submit {
      width: 100%;
      min-width: 0;
      min-height: 50px;
      border-radius: 10px;
    }
  
    .footer__inner {
      grid-template-columns: 1fr;
      justify-items: center;
      gap: 20px;
      text-align: center;
    }
  
    .footer__logo {
      order: 1;
      justify-self: center;
    }
  
    .footer__logo img {
      height: 36px;
    }
  
    .footer__social {
      order: 2;
      justify-self: center;
      gap: 12px;
    }
  
    .footer__copy {
      order: 3;
      justify-self: center;
      max-width: 280px;
      font-size: 11px;
      line-height: 1.55;
    }
  
    .footer__break {
      display: block;
    }
  
    .site-footer {
      padding: 32px 0 30px;
    }
  
    .bookbar {
    
      right: 12px;
   
      width: fit-content;
      min-width: 0;
      height: 50px;
      padding: 0 16px;
      transform: none;
      border: 1px solid #111111;
      border-bottom: none;
      border-radius: 100px;
      box-shadow: none;
      font-size: 16px;
      letter-spacing: 0.04em;
    }
  
    .bookbar.is-hidden {
      transform: translateY(20px);
    }
  }
  
  @media (max-width: 767px) {
    :root {
      --pad: 20px;
    }
  
    .hero h1 {
      font-size: 28px;
    }

    .thank-you h1 {
      font-size: 24px;
      line-height: 1.3;
    }

    .thank-you p {
      font-size: 15px;
      line-height: 1.5;
    }

    .thank-you .btn {
      min-height: 44px;
      padding: 10px 22px;
      font-size: 14px;
    }
  
    .logo {
      width:fit-content;
      height:fit-content;
    }
  
    .header__burger {
      width: 40px;
      height: 40px;
    }
  
    .section-title {
      font-size: 24px;
      margin-bottom: 28px;
    }

    .fest__note {

padding-top: 15px;
    }
  
    .form {
      padding: 0;
    }
  
    .store__viewport {
      height: 210px;
    }
  
    .store__orbit {
      --store-step: 32;
      top: 54px;
    }
  
    .store__pill {
      min-width: 140px;
      width: 140px;
      height: 96px;
      padding: 0 14px;
      font-size: 16px;
      border-radius: 16px;
    }
  
    .sol.is-active .sol__copy h3 {
      font-size: 18px;
    }
  
    .footer__copy {
  
      max-width: 100%;
    }
  }
  
  
  
  
  
  .category-promo__inner {
    height: 100%;
  }
  
  .category-promo {
    height: 100%;
  }
  
  .category-vogue__promo-inner {
    height: 100%;
  }
  
  .category-vogue__promo-inner {
    height: 100%;
  }
  
  .category-hero {
    aspect-ratio: 1920/800;
  }
  
  @media (max-width: 767px) {
    .category-hero {
      aspect-ratio: 480/200;
    }
    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background: none;
      pointer-events: none;
    }
    .solutions__art--br {
      /* right: -70px; */
      bottom: -326px;
      width: 240px;
  }
  }