@font-face {
    font-family: "Aeonik Pro medium"; 
    src: url(fonts/Aeonik-Pro-Medium.ttf);
    font-style: normal;
    font-weight: 500;
}

:root {
    --aeonik: "Aeonik Pro medium";
    --primaryColor: #5D6D4F;
    --whiteColor: #fff;
    --blackColor: #000;
}

*,
*:after,
*:before {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {	
    font-family: var(--aeonik);
    font-size: 16px;
    font-weight: 400;    
	background: #F9F8F6;
    margin: 0;
	color: #1A1C19;	
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
}

p,
figure,
label {
    margin: 0;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

small {
    font-size: inherit;
}

a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

a:hover{
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0; 
    margin: 0;
}

input,
button {
    background-color: transparent;
    border: 1px solid transparent;
    outline: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

input[type=number] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
}

select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(images/select-input-arrow.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: calc(100% - 15px) 50%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

::selection {
    color: var(--whiteColor);
    background: var(--primaryColor);
}

::-webkit-selection {
    color: var(--whiteColor); 
    background: var(--primaryColor);
}

::-moz-selection {
    color: var(--whiteColor); 
    background: var(--primaryColor);
}

.text-primary {
    color: var(--primaryColor) !important;
}

.font-medium {
    font-weight: 500 !important;
}

.font-semibold {
    font-weight: 600 !important;
}

.bg-included {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.absolute-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.flex-col-between {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gap-x-26 {
    row-gap: 26px;
}

.container{
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-inline: 16px;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1230px;
  }
}

/*======= header-area design =======*/
.nav-wrapper {
    padding-block: 20px;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.pt-80 {
    padding-top: 80px;
}

.pb-80 {
    padding-bottom: 80px;
}

.hero-inner h1 {
    font-weight: 500;
    font-size: 100px;
    line-height: 124%;
    letter-spacing: -2%;
}

.hero-inner p {
    font-weight: 500;
    font-size: 48px;
    line-height: 124%;
    letter-spacing: -2%;
}

.hero-inner .curated-space {
    font-weight: 500;
    font-size: 48px;
    line-height: 124%;
    letter-spacing: -2%;
    display: block;
    color: #A66355;
}

.hero-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 790px;
}

.btn {
    border-radius: 80px;
    padding: 16px 30px;
    gap: 10px;
    font-weight: 500;
    font-size: 24px;
    line-height: 124%;
    letter-spacing: -3%;
    text-align: center;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    height: 70px;
    transition: 0.5s !important;
}

.btn > * {
    margin-bottom: -2px;
}

.btn:hover {
    transform: scale(1.03);
}

.btn-primary {
    color: #F9F8F6;
    background-color: var(--primaryColor);
}

.button-arrow {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 16px;
}

/* both arrows */
.button-icon1,
.button-icon2 {
  display: inline-block;
  transition: all 0.30s cubic-bezier(0.22, 1, 0.36, 1);
}

/* initial state */
.button-icon1 {
  transform: translate(0, 0);
  opacity: 1;
}

.button-icon2 {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-15px, 15px); /* start bottom-left */
  opacity: 0;
}

/* hover effect */
.btn:hover .button-icon1 {
  transform: translate(10px, -10px); /* move ↗ */
  opacity: 0;
}

.btn:hover .button-icon2 {
  transform: translate(0, 0); /* come into place */
  opacity: 1;
}

.input-box .btn:hover .button-icon2 {
  transform: translate(2px, 3px);
  opacity: 1;
}

.btn-secondary {
    border: 2px solid #1A1C19;
    color: #1A1C19;
}


.button-arrow2 {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

/* both arrows */
.button-arrow2 span {
  display: inline-block;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* first arrow */
.button-arrow2 span:first-child {
  transform: translateY(0);
  opacity: 1;
}

/* second arrow */
.button-arrow2 span:last-child {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-12px); /* start from top */
  opacity: 0;
}

/* hover effect ONLY for secondary button */
.btn-secondary:hover .button-arrow2 span:first-child {
  transform: translateY(12px); /* move down */
  opacity: 0;
}

.btn-secondary:hover .button-arrow2 span:last-child {
  transform: translateY(0); /* come into place */
  opacity: 1;
}



.features-area .banner img {
    border-radius: 24px;
}

.featrues-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.featrues-wrapper .single-features {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.featrues-wrapper .single-features h3 {
    font-weight: 500;
    font-size: 42px;
    line-height: 124%;
    letter-spacing: -3%;
    color: var(--primaryColor);
}

.featrues-wrapper .single-features p {
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0%;
    color: #3A3D39;
}

.focus-inner {
    display: grid;
    gap: 30px;
    grid-template-columns: 250px auto;
}

.focus-inner .focus-left span {
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -3%;
    color: #1A1C1961;
}

.focus-inner .focus-right h2 {
    font-weight: 500;
    font-size: 64px;
    line-height: 124%;
    letter-spacing: -2%;
    margin-top: -8px;
}

.focus-inner .focus-right p {
    font-weight: 500;
    font-size: 28px;
    line-height: 120%;
    letter-spacing: -3%;
}

.pt-40 {
    padding-top: 40px;
}

.pb-40 {
    padding-bottom: 40px;
}

.vw-padding-l {
    padding-left: calc((100vw - 1230px) / 2);
}

.swiper-slider-area {
    padding-top: 40px;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal {
  top: inherit;
  bottom: 0;
  background-color: #E2E3DD;
}

.swiper-pagination {
    max-width: 1230px;
    height: 2px;
}

.swiper-pagination .swiper-pagination-progressbar-fill {
    background-color: #5D6D4F;
}

.swiper-slider-area .swiper-slide img {
    width: 100%;
    border-radius: 12px;
}

.swiper-slider-area .swiper-slide h3 {
    font-weight: 500;
    font-size: 28px;
    line-height: 120%;
    letter-spacing: -3%;
    padding-top: 40px;
    padding-bottom: 20px;
}

.swiper-slider-area .swiper-slide p {
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0%;
    color: #3A3D39;
}

/*======= subscribe-area design =======*/
.subscribe-area {
    padding-top: 120px;
    padding-bottom: 120px;
    background-image: url(images/Background-Image.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 160px;
}

.subscribe-inner {
    border-radius: 24px;
    gap: 80px;
    padding: 80px;
    background-color: #F9F8F6;
}

.subscribe-inner h2 {
    font-weight: 500;
    font-size: 64px;
    line-height: 120%;
    padding-bottom: 65px;
    letter-spacing: -3%;
}

.subscribe-inner .bg-box {
    border-radius: 24px;
    padding: 40px;
    background-color: #1A1C19;
    display: flex;
    flex-direction: column;
    align-items: stretch !important; /* Forces children to take full width */
    width: 100%;
}

/* TOP DESCRIPTION - Fixed to full width */
.subscribe-inner .bg-box p:not(.form-success-msg) {
    font-weight: 500;
    font-size: 28px;
    line-height: 120%;
    letter-spacing: -3%;
    color: #F9F8F6;
    padding-bottom: 45px;
    text-align: left !important;
    max-width: 100% !important; /* Removed 600px limitation */
    width: 100% !important;
}

.subscribe-inner .input-box {
    border-radius: 80px;
    padding: 20px 20px 20px 70px;
    background-color: #F9F8F6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100% !important;
}

#earlyAccessForm {
    width: 100% !important;
}

.subscribe-inner .input-box .btn {
    max-width: 400px;
}
.subscribe-inner .input-box .btn > *{
    padding-top: 3px;
}

button {
    font-family: var(--aeonik);
    cursor: pointer;
}

.subscribe-inner .input-box input {
    font-family: var(--aeonik);
    font-weight: 500;
    font-size: 24px;
    line-height: 124%;
    color: #B3B7B2;
    letter-spacing: -3%;
    padding: 3px 0 0 0;
    width: 100%;
}

.subscribe-inner .input-box input::placeholder {
    color: #B3B7B2;
}

/* SUCCESS MESSAGE - Full width & left aligned */
.form-success-msg {
    display: none;
    width: 100% !important;
    max-width: 100% !important;
    text-align: left !important;
    margin-top: 35px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.5;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.form-success-msg.show {
    display: block !important;
    opacity: 1;
}

/*======= footer-area design =======*/
.footer-area {
    background-color: #1A1C19;
}

.footer-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-2nd-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: 40px;
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0%;
    color: #F9F8F6;
}

.footer-2nd-row a {
    color: #F9F8F6;
    display: inline-block;
    padding-top: 12px;
}

.hero-inner {
    padding-top: 110px;
}

.nav-inner {
    position: relative;
    z-index: 1;
}

.nav-inner:after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    width: calc(100% - 10%);
    height: 1px;
    background-color: #1A1C19;
    z-index: -1;
}

.nav-inner .logo img {
    background: #F9F8F6;
    padding-right: 20px;
    transition: 0.5s;
}

.nav-inner .nav-right-text img {
    background: #F9F8F6;
    padding-left: 20px;
    transition: 0.5s !important;
}

.nav-wrapper.scrolled .nav-inner > div:nth-child(1) .logo img {
	transform: scale(1) !important;
	transform-origin: left center;
}

.nav-wrapper.scrolled .nav-inner .logo img {
    max-width: 95px;
}

.nav-wrapper.scrolled .nav-inner .nav-right-text img {
    max-width: 170px;
}

/*======= Loader design =======*/
.loader-nav {
    background-color: #20221f;
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease;
}

.loader-nav.hide {
    opacity: 0;
    pointer-events: none;
}

.loader-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.loader-left img {
    height: 30px;
    background: #20221f;
}

.loader-right img {
    height: 14px;
    background: #20221f;
}

.loader-line {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.loader-line-fill {
    height: 100%;
    width: 0%;
    background: #fff;
    transition: width 0.2s linear;
}