@import 'reset.css'; /* ← reset */

@import 'typography.css';
@import 'icons.css';
@import 'buttons.css';


@import 'util.css'; /* ← utility classes */


/* -------------------------------- 

File#: _2_coming-soon
Title: Coming Soon
Descr: Coming soon template
Usage: codyhouse.co/license

-------------------------------- */
.coming-soon {
position: relative;
z-index: 1;
}

.coming-soon__figure {
position: relative;
height: 40vh;
}
.coming-soon__figure img {
position: absolute;
top: 0;
right: 0;
width: 100%;
height: 100%;
-o-object-fit: cover;
 object-fit: cover;
}



@media (min-width: 64rem) {
.coming-soon__figure {
height: auto;
-webkit-clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
        clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
-webkit-animation: coming-soon-figure-anim 0.6s var(--ease-out) forwards;
        animation: coming-soon-figure-anim 0.6s var(--ease-out) forwards;
}
}
@-webkit-keyframes coming-soon-figure-anim {
from {
-webkit-clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
        clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
}
to {
-webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 10% 100%);
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 10% 100%);
}
}
@keyframes coming-soon-figure-anim {
from {
-webkit-clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
        clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
}
to {
-webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 10% 100%);
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 10% 100%);
}
}





/* -------------------------------- 

File#: _1_button-effects
Title: Button Effects
Descr: A collection of button effects
Usage: codyhouse.co/license

-------------------------------- */
.btn-fx-1 {
    --border-radius: 0.25em;
    --transition-duration: .3s;
    position: relative;
    display: inline-block;
    border-radius: var(--border-radius);
    line-height: 1;
    text-decoration: none;
    color: var(--color-primary);
    transition: var(--transition-duration);
    cursor: pointer;
  }
  .btn-fx-1 span, .btn-fx-1 .btn-fx-1__icon-wrapper {
    position: relative;
    z-index: 2;
  }
  .btn-fx-1 .icon {
    display: block;
    will-change: transform;
    transition: var(--transition-duration);
  }
  .btn-fx-1 .icon:first-child {
    color: var(--color-primary);
  }
  .btn-fx-1 .icon:last-child {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    color: var(--color-white);
    transform: translateY(100%);
  }
  .btn-fx-1:hover {
    color: var(--color-white);
  }
  .btn-fx-1:hover .icon:first-child {
    opacity: 0;
    transform: translateY(-100%);
  }
  .btn-fx-1:hover .icon:last-child {
    opacity: 1;
    transform: translateY(0);
  }
  .btn-fx-1:hover .btn-fx-1__inner::after {
    transform: skewY(0deg) scaleY(2);
  }
  .btn-fx-1:focus {
    outline: none;
    box-shadow: 0 0 0 1px var(--color-bg), 0 0 0 3px var(--color-primary);
  }
  
  .btn-fx-1__inner {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.15);
    overflow: hidden;
    -webkit-clip-path: inset(0% 0% 0% 0% round var(--border-radius));
            clip-path: inset(0% 0% 0% 0% round var(--border-radius));
  }
  .btn-fx-1__inner::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    left: -5%;
    width: 110%;
    height: 100%;
    background-color: var(--color-primary);
    transform-origin: center bottom;
    transform: skewY(10deg) scaleY(0);
    transition: transform var(--transition-duration);
  }
  
  .btn-fx-2 {
    position: relative;
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
  }
  .btn-fx-2 span {
    position: relative;
    display: inline-flex;
    -webkit-clip-path: inset(0%);
            clip-path: inset(0%);
  }
  .btn-fx-2 em {
    display: inline-flex;
  }
  .btn-fx-2 em * {
    color: var(--color-primary);
    padding: 0.25em 0;
    will-change: transform;
    transition: transform 0.3s;
  }
  .btn-fx-2 em:last-child {
    position: absolute;
    top: 0;
    left: 0;
  }
  .btn-fx-2 em:last-child * {
    transform: translateY(100%);
  }
  .btn-fx-2::before, .btn-fx-2::after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 2px;
    left: 0;
    width: 100%;
  }
  .btn-fx-2::before {
    background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
  }
  .btn-fx-2::after {
    background-color: var(--color-primary);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: right center;
  }
  .btn-fx-2:hover em *:nth-child(2) {
    transition-delay: 0.05s;
  }
  .btn-fx-2:hover em *:nth-child(3) {
    transition-delay: 0.1s;
  }
  .btn-fx-2:hover em *:nth-child(4) {
    transition-delay: 0.15s;
  }
  .btn-fx-2:hover em *:nth-child(5) {
    transition-delay: 0.2s;
  }
  .btn-fx-2:hover em *:nth-child(6) {
    transition-delay: 0.25s;
  }
  .btn-fx-2:hover em *:nth-child(7) {
    transition-delay: 0.3s;
  }
  .btn-fx-2:hover em *:nth-child(8) {
    transition-delay: 0.35s;
  }
  .btn-fx-2:hover em *:nth-child(9) {
    transition-delay: 0.4s;
  }
  .btn-fx-2:hover em *:nth-child(10) {
    transition-delay: 0.45s;
  }
  .btn-fx-2:hover em:first-child * {
    transform: translateY(-100%);
  }
  .btn-fx-2:hover em:last-child * {
    transform: translateY(0);
  }
  .btn-fx-2:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
  }
  
  .btn-fx-3 {
    --transition-duration: 0.3s;
    position: relative;
    display: inline-block;
    color: var(--color-bg);
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    will-change: transform;
    transition: transform var(--transition-duration);
  }
  .btn-fx-3 span {
    will-change: transform;
    transition: opacity var(--transition-duration), transform var(--transition-duration) var(--ease-out);
  }
  .btn-fx-3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-contrast-higher);
    border-radius: inherit;
    will-change: transform;
    transition: transform var(--transition-duration) var(--ease-out-back), box-shadow var(--transition-duration);
  }
  .btn-fx-3:active {
    transform: scale(0.9);
  }
  .btn-fx-3:hover span {
    opacity: 0;
    transform: scale(0.5);
  }
  .btn-fx-3:hover::before {
    transform: scale(1.1);
  }
  .btn-fx-3:hover .btn-fx-3__icon-wrapper {
    transform: translateY(0);
  }
  .btn-fx-3:focus {
    outline: none;
  }
  .btn-fx-3:focus::before {
    box-shadow: var(--shadow-sm), 0 0 0 3px hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.15);
  }
  
  .btn-fx-3__inner {
    position: relative;
    z-index: 2;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    -webkit-clip-path: inset(0%);
            clip-path: inset(0%);
  }
  
  .btn-fx-3__icon-wrapper {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    will-change: transform;
    transform: translateY(100%);
    transition: transform var(--transition-duration) var(--ease-out);
  }
  .btn-fx-3__icon-wrapper .icon {
    margin: auto;
  }
  
  .btn-fx-4 {
    --transition-duration: .3s;
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-contrast-higher);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    line-height: 1;
    text-decoration: none;
    color: var(--color-bg);
    transition: var(--transition-duration);
  }
  .btn-fx-4 span {
    position: relative;
    z-index: 2;
  }
  .btn-fx-4::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: hsla(var(--color-bg-h), var(--color-bg-s), var(--color-bg-l), 0.25);
    will-change: transform;
    transform: skewX(-15deg) translate(calc(-100% - 0.5em));
    pointer-events: none;
  }
  .btn-fx-4:hover::before {
    transform: skewX(-15deg) translate(calc(100% + 0.5em));
    transition: transform var(--transition-duration);
  }
  .btn-fx-4:focus {
    outline: none;
    box-shadow: var(--shadow-sm), 0 0 0 3px hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.15);
  }

/*



/* -------------------------------- 

File#: _1_reveal-effects
Title: Reveal Effects
Descr: A collection of reveal effects targeting specific elements as they enter the viewport
Usage: codyhouse.co/license

-------------------------------- */
:root {
    --reveal-fx-duration: 0.6s;
    --reveal-fx-timing-function: var(--ease-out);
  }
  
  .reveal-fx {
    opacity: 0;
    transition: opacity, transform var(--reveal-fx-timing-function);
    transition-duration: var(--reveal-fx-duration);
  }
  .reveal-fx::before {
    display: none;
    content: "reveal-fx";
  }
  
  .reveal-fx--translate, .reveal-fx--translate-up {
    transform: translateY(50px);
  }
  
  .reveal-fx--translate-right {
    transform: translateX(-50px);
  }
  
  .reveal-fx--translate-left {
    transform: translateX(50px);
  }
  
  .reveal-fx--translate-down {
    transform: translateY(-50px);
  }
  
  .reveal-fx--scale {
    transform: scale(0.8);
  }
  
  .reveal-fx--scale-up {
    transform: translateY(50px) scale(0.8);
  }
  
  .reveal-fx--scale-right {
    transform: translateX(-50px) scale(0.8);
  }
  
  .reveal-fx--scale-left {
    transform: translateX(50px) scale(0.8);
  }
  
  .reveal-fx--scale-down {
    transform: translateY(-50px) scale(0.8);
  }
  
  .reveal-fx--rotate, .reveal-fx--rotate-down, .reveal-fx--rotate-right, .reveal-fx--rotate-left, .reveal-fx--rotate-up {
    perspective: 1000px;
  }
  .reveal-fx--rotate > *, .reveal-fx--rotate-down > *, .reveal-fx--rotate-right > *, .reveal-fx--rotate-left > *, .reveal-fx--rotate-up > * {
    transition: transform var(--reveal-fx-duration) var(--reveal-fx-timing-function);
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
  }
  
  .reveal-fx--rotate > *, .reveal-fx--rotate-down > * {
    transform-origin: top;
    transform: rotateX(-45deg);
  }
  
  .reveal-fx--rotate-right > * {
    transform-origin: left center;
    transform: rotateY(45deg);
  }
  
  .reveal-fx--rotate-left > * {
    transform-origin: right center;
    transform: rotateY(-45deg);
  }
  
  .reveal-fx--rotate-up > * {
    transform-origin: bottom;
    transform: rotateX(45deg);
  }
  
  .reveal-fx--text-mask {
    overflow: hidden;
  }
  .reveal-fx--text-mask > * {
    display: inline-block;
    transform: translateY(100%);
    transition: transform var(--reveal-fx-duration) var(--reveal-fx-timing-function);
    will-change: transform;
  }
  
  [class*=reveal-fx--translate], [class*=reveal-fx--scale] {
    will-change: opacity, transform;
  }
  
  .reveal-fx--text-mask > *, [class*=reveal-fx--rotate] > * {
    will-change: transform;
  }
  
  .reveal-fx--clip-x > *,
  .reveal-fx--clip-y > * {
    transition: opacity, -webkit-clip-path var(--ease-out);
    transition: opacity, clip-path var(--ease-out);
    transition: opacity, clip-path var(--ease-out), -webkit-clip-path var(--ease-out);
    transition-duration: var(--reveal-fx-duration);
  }
  
  .reveal-fx--clip-x > * {
    -webkit-clip-path: polygon(10% 0%, 90% 0%, 90% 100%, 10% 100%);
            clip-path: polygon(10% 0%, 90% 0%, 90% 100%, 10% 100%);
  }
  
  .reveal-fx--clip-y > * {
    -webkit-clip-path: polygon(0% 50%, 100% 50%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 50%, 100% 50%, 100% 100%, 0% 100%);
  }
  
  .reveal-fx--is-visible {
    opacity: 1;
  }
  .reveal-fx--is-visible[class*=reveal-fx--translate], .reveal-fx--is-visible[class*=reveal-fx--scale], .reveal-fx--is-visible[class*=reveal-fx--rotate] > *, .reveal-fx--is-visible.reveal-fx--text-mask > * {
    transform: translate(0);
  }
  .reveal-fx--is-visible.reveal-fx--clip-x > *, .reveal-fx--is-visible.reveal-fx--clip-y > * {
    opacity: 1;
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }





.coming-soon-v2 {
    position: relative;
    z-index: 1;
  }
  
  .coming-soon-v2__social-btn {
    position: relative;
    --btn-size: 32px;
    width: var(--btn-size);
    height: var(--btn-size);
    display: inline-flex;
  }
  .coming-soon-v2__social-btn .icon {
    position: relative;
    z-index: 2;
    display: block;
    margin: auto;
    font-size: 16px;
    color: var(--color-contrast-high);
    transition: 0.3s;
  }
  .coming-soon-v2__social-btn::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--color-contrast-higher);
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.3s, transform 0.3s var(--ease-out);
  }
  .coming-soon-v2__social-btn:hover .icon {
    color: var(--color-bg);
  }
  .coming-soon-v2__social-btn:hover::before {
    opacity: 1;
    transform: scale(1);
  }

  h1 {
    font-size: 4.5vw;
  }

  p {
    font-size: 1.8vw;
  } 

  @media (max-width: 1000px) {
    h1 {
      font-size: 12vw;
    }
  
    p {
      font-size: 5.5vw;
    } 

    .price {
      font-size: 5.5vw;
    }

    .btn-fx-1{
      margin-top:100px;
    }

    .no-show {
      display: none;
    }
}