
/* Hero */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0px 0px 0px;
    position: relative;
    overflow: hidden;
    /* background: linear-gradient(160deg, #f5efe6 0%, #fdfaf5 50%, #f0e8d8 100%); */
    /* background-image: url("../images/about-img.png"); */
    /* width: 100%; */
    /* background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
}
.hero .banner-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hero .banner-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 39%);
    z-index: 1;
}
.hero > *:not(.banner-img){
    position: relative;
    z-index: 2;
}
.hero .opicity{}
.hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 24px;
    animation: fadeUp 0.8s 0.2s ease both;
    font-weight: 600;
}
.hero h1 {
   font-family: 'Cormorant Garamond', serif;
   font-size: clamp(3.5rem, 8vw, 7rem);
   font-weight: 300;
   line-height: 1.05;
   color: #ffffff;
   margin-bottom: 32px;
   animation: fadeUp 0.9s 0.3s ease both;
   font-size: 96px;
}
.hero h1 em {
    font-style: italic;
    color: #ffffff;
}
.hero-sub {
    max-width: 583px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #ffffff;
    animation: fadeUp 0.9s 0.45s ease both;
}
.hero-line {
    width: 60px;
    height: 1px;
    background: #224093;
    margin: 35px auto;
    animation: scaleIn 0.8s 0.6s ease both;
}
.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    animation: fadeUp 0.9s 0.7s ease both;
    margin-bottom: 32px;
}
.stat-item {
    text-align: center;
}
.stat-num {
   font-family: 'Cormorant Garamond', serif;
   font-size: 2.8rem;
   font-weight: 600;
   color: #ffffff;
   line-height: 1;
}
.stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffffff;
    margin-top: 6px;
}
.scroll-hint {
    /* position: absolute; */
    bottom: 36px;
    left: 50%;
    /* transform: translateX(-50%); */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeUp 1s 1s ease both;
}
.scroll-hint span {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8a7560;
}
.scroll-dot {
    width: 1px;
    height: 61px;
    background: linear-gradient(to bottom, #224093, #00000096);
    animation: scrollPulse 2s ease-in-out infinite;
}
/* STORY */
.story {
    /* display: grid; */
    grid-template-columns: 1fr 1fr;
    gap: 0;
    /* max-width: 1200px; */
    /* margin: 0 auto; */
    padding: 72px 0px;
    background: #ebebeb;
}
.story-text{
    padding-right: 80px;
}
.story-text .small-tag{
  
text-transform: uppercase;
  
letter-spacing: 3.5px;
  
color: #7c7c7c;
  
font-weight: 500;
  
font-size: 14px;
  
margin-bottom: 14px;
  
display: block;
}
.story-text h2{
  
}

.story p.visible {
    opacity: 1;
    transform: translateY(0);
}
.section-tag.visible {
    opacity: 1;
    transform: translateY(0);
}
.story p {
    font-size: 0.98rem;
    line-height: 1.9;
    color: #2a2a2a;
    margin-bottom: 20px;
    /* opacity: 0;
    transform: translateY(20px); */
    transition: all 0.7s 0.2s ease;
}
.section-tag {
    /* font-size: 0.72rem; */
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 20px;
    /* opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s ease; */
}
.story h2.visible {
    opacity: 1;
    transform: translateY(0);
}
.story h2 {
   font-family: 'Cormorant Garamond', serif;
   font-size: clamp(2.2rem, 4vw, 3.2rem);
   font-weight: 900;
   line-height: 66px;
   color: #224093;
   margin-bottom: 32px;
   /* opacity: 0;
    transform: translateY(20px); */
   transition: all 0.7s 0.1s ease;
   font-size: 58px;
}
.story-visual.visible {
    opacity: 1;
    transform: translateX(0);
}

.story-visual {
    position: relative;
    /* opacity: 0;
    transform: translateX(30px); */
    transition: all 0.9s 0.2s ease;
}
.story-visual .story-banner{
    position: relative;
}
.story-visual .story-banner img{
    width: 100%;
    display: block;
    /* border-radius: 10px; */
    box-shadow: 0px 3px 4px #00000047;
}
.story-card {
    /* background: #1a1208;
    padding: 60px 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden; */
    position: absolute;
    bottom: 40px;
    left: 40px;
    max-width: 350px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    z-index: 2;
}
.story-card-quote {
   font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 4rem;
    color: #c9a84c;
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 24px;
}
.story p.visible {
    opacity: 1;
    transform: translateY(0);
}

.story-card p {
   font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
    color: #f5efe6;
    line-height: 1.6;
    /* opacity: 1;
    transform: none; */
}
.story p {
    /* font-size: 0.98rem;
    line-height: 1.9;
    color: #8a7560; */
    margin-bottom: 20px;
    /* opacity: 0;
    transform: translateY(20px); */
    transition: all 0.7s 0.2s ease;
}
.story-card-author {
    margin-top: 32px;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #f05724;
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
}
/* values */
.values {
    background: #ffffff;
    padding: 70px 0px;
    text-align: center;
}
.values-header {
    margin-bottom: 48px;
}
.section-tag.visible{
    opacity: 1;
    transform: translateY(0);
}

.section-tag{
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 20px;
    /* opacity: 0;
    transform: translateY(20px); */
    transition: all 0.7s ease;
}
.values h2 {
   font-family: 'Cormorant Garamond', serif;
   font-size: 38px;
   font-weight: 400;
   color: #224093;
   margin-top: 16px;
   /* text-transform: uppercase; */
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    /* max-width: 1100px; */
    /* margin: 0 auto; */
}
.value-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.value-card {
    background: #fff8f0;
    padding: 32px 42px;
    text-align: left;
    position: relative;
    overflow: hidden;
    /* opacity: 0;
    transform: translateY(30px); */
    transition: all 0.6s ease;
    border: #fff1d58c 6px solid;
    border-radius: 13px;
}
.value-card:hover{box-shadow: 0px 5px 9px #0000002e;/* background: #f9f9ff; */border: #d6d5ff8c 6px solid;}
.value-icon {
    font-size: 2rem;
    margin-bottom: 24px;
    color: #f27623;
}
.value-card h3 {
   font-family: 'Cormorant Garamond', serif;
   font-size: 26px;
   font-weight: 600;
   color: #302999;
   margin-bottom: 16px;
}
.value-card p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #262320;
}



/* DESTINATION */
.destinations-strip {
    padding: 59px 25px;
    /* max-width: 1200px; */
    /* margin: 0 auto; */
    background: #224093;
}
.destinations-strip .section-tag, .destinations-strip h2 {
    text-align: center;
}
.destinations-strip h2 {
   font-family: 'Cormorant Garamond', serif;
   font-size: clamp(2rem, 4vw, 3rem);
   font-weight: 300;
   color: #ffffff;
   margin-top: 16px;
   margin-bottom: 49px;
}
.section-tag.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-tag {
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #f05724;
    margin-bottom: 20px;
    /* opacity: 0;
    transform: translateY(20px); */
    transition: all 0.7s ease;
}
.dest-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.dest-pill.visible {
    opacity: 1;
    transform: translateY(0);
}
.dest-pill {
    background: #f5efe6;
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 20px 16px;
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    color: #4a3520;
    cursor: default;
    /* transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px); */
    transition: all 0.5s ease;
    width: 100%;
}
.dest-pill:hover {
    background: #f05724;
    color: #224093;
    border-color: #f05724;
}
.dest-pill .dest-icon {
    font-size: 1.4rem;
    display: block;
    margin-bottom: 8px;
}


/* PROMISE */
.promise {
    background: #c0c0c0;
    padding: 120px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.promise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
}
.promise h2 {
   font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: #f5efe6;
    max-width: 700px;
    margin: 16px auto 60px;
    line-height: 1.2;
}
.promise h2 em {
    font-style: italic;
    color: #c9a84c;
}
.promise .section-tag {
    color: #fff;
}
.section-tag.visible {
    opacity: 1;
    transform: translateY(0);
}
.section-tag {
    font-size: 15px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #f05724;
    margin-bottom: 10px;
    /* opacity: 0;
    transform: translateY(20px); */
    transition: all 0.7s ease;
}
.promise h2 {
   font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: #f5efe6;
    max-width: 700px;
    margin: 16px auto 60px;
    line-height: 1.2;
}
.promise h2 em{
    font-style: italic;
    color: #f05724;
}
.promise-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}
.promise-item.visible {
    opacity: 1;
    transform: translateY(0);
}
.promise-item {
    /* opacity: 0;
    transform: translateY(20px); */
    transition: all 0.6s ease;
}
.promise-num {
   font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1;
}
.promise-item h4 {
   font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.3rem;
    color: #f5efe6;
    margin: 12px 0 10px;
    font-weight: 400;
}
.promise-item p {
    font-size: 0.85rem;
    color: #fff;
    line-height: 1.7;
}

/* CTA */
.cta-section {
    padding: 120px 60px;
    text-align: center;
    background: var(--cream);
}
.cta-section h2 {
   font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    color: #224093;
    line-height: 1.1;
    margin-bottom: 24px;
}
.cta-section h2 em{
    font-style: italic;
    color: #f05724;
}
.cta-section p {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 48px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.btn-primary {
    background: #224093;
    color: #fff;
    padding: 16px 44px;
    border-radius: 2px;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-outline {
    background: transparent;
    border: 1px solid #4a3520;
    color: #4a3520;
    padding: 16px 44px;
    border-radius: 2px;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
}
.cta-buttons .btn-primaryone{}
.cta-buttons .btn-outlinetwo{}

@media screen and (max-width: 780px) {
    .values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    /* max-width: 1100px; */
    /* margin: 0 auto; */
}
.hero .banner-img img {
    width: auto;
    height: 100%;
    object-fit: cover;
    /* width: 150%; */
    transform: translateX(-15%);
    /* transition: transform 0.5s ease; */
}
}
@media screen and (max-width: 667px) {
    .hero h1 {
  
    font-size: 43px;
}
.hero-stats {
        display: flex;
        flex-wrap: wrap;
}
.story-text {
    padding: 25px;
}
.story {
    display: block;
    padding: 10px 0px;
}
.story h2 {
    font-size: 44px;
    line-height: 50px;
}
.section-tag {
    font-weight: 600;
}
.values {
    padding: 48px 10px;
}
.values-grid {
    display: block;
}
.value-card {
    padding: 10px 10px;
    text-align: center;
    margin-bottom: 20px;
}
.section-tag.visible {
    font-weight: 600;
    font-size: 15px;
}
.destinations-strip h2{
    font-size: 21px;
    font-weight: 600;
}
.dest-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.dest-pill {
    width: 48%;
}    
.promise h2 {
    font-size: 34px;
    font-weight: 600;
}
.promise-list {
    display: block;
}
.cta-section {
    padding: 120px 2px;
}
.cta-section h2 {
    font-size: 38px;
}

.btn-primary {
    padding: 10px 10px;
    font-size: 10px;
}
.hero .banner-img img {
    width: auto;
    height: 100%;
    object-fit: cover;
    /* width: 150%; */
    transform: translateX(-21%);
    /* transition: transform 0.5s ease; */
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    /* max-width: 1100px; */
    /* margin: 0 auto; */
}
.hero-sub {
    max-width: 441px;
   
}
.hero-stats {
    display: flex;
    gap: 78px;
  
    margin-bottom: 32px;
}
    
}

@media screen and (max-width: 480px) {
    .values-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 18px;
    /* max-width: 1100px; */
    /* margin: 0 auto; */
}
}





