/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Manrope',sans-serif;
    background:#f8f5ef;
    color:#2f332b;
}

/* ==========================
   NAVBAR
========================== */

nav{

    position:fixed;
    top:0;
    left:0;

    width:100%;
    height:90px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 6%;

    background:rgba(25,35,30,.35);

    backdrop-filter:blur(6px);
    -webkit-backdrop-filter:blur(6px);

    z-index:1000;

}

.nav-left{

    flex:1.4;

}

.nav-center{

    flex:2.6;

}

.nav-right{

    flex:1;

    display:flex;
    justify-content:flex-end;
    align-items:center;

}

.logo{

    display:flex;
    align-items:center;

}

.logo img{

    width:auto;

    height:70px;

    display:block;

}

nav ul{

    display:flex;
    flex-direction:row;
    justify-content:center;
    align-items:center;

    gap:32px;

    list-style:none;

}

nav li{

    list-style:none;

}

nav a{

    color:white;
    text-decoration:none;

    font-size:15px;
    font-weight:500;

    letter-spacing:.5px;

    transition:.3s;

}

nav a:hover{

    opacity:.75;

}

.book-btn{

    border:1px solid #C6A66A;

    color:#C6A66A;

    border-radius:50px;

    padding:10px 24px;

    transition:.3s;

}

.book-btn:hover{

    background:#C6A66A;

    color:white;

}

/* ==========================
   HERO
========================== */

header{

    height:100vh;

    background-image:
        linear-gradient(
            rgba(0,0,0,.35),
            rgba(0,0,0,.35)
        ),
        url("../images/backgroundimage.jpg");

    background-size:cover;
    background-position:center;

    display:flex;
    flex-direction:column;

    justify-content:center;
    align-items:center;

    text-align:center;

    color:white;

    padding:0 20px;

}

header h1{

    font-family:'Cormorant Garamond',serif;

    font-size:72px;
    font-weight:500;

    max-width:900px;

    line-height:1.05;

}

header p{

    margin-top:25px;

    max-width:720px;

    font-size:22px;

    line-height:1.7;

}

.hero-btn{

    margin-top:45px;

    display:inline-block;

    border:1px solid #C6A66A;

    color:#C6A66A;

    text-decoration:none;

    padding:14px 34px;

    border-radius:50px;

    transition:.3s;

}

.hero-btn:hover{

    background:#C6A66A;

    color:white;

}

/* ==========================
   WELCOME
========================== */

.welcome{

    padding:120px 10%;

    background:#f8f5ef;

    text-align:center;

}

.welcome h2{

    font-size:16px;

    letter-spacing:4px;

    color:#8C7A52;

    margin-bottom:25px;

}

.welcome h3{

    font-family:'Cormorant Garamond',serif;

    font-size:56px;

    font-weight:500;

    line-height:1.2;

    margin-bottom:35px;

}

.welcome p{

    max-width:700px;

    margin:auto;

    font-size:19px;

    line-height:1.9;

}

.story-btn{

    display:inline-block;

    margin-top:45px;

    padding:14px 34px;

    border:1px solid #2F332B;

    color:#2F332B;

    text-decoration:none;

    border-radius:50px;

    transition:.3s;

}

.story-btn:hover{

    background:#2F332B;

    color:white;

}

/* ==========================
   LOBBY PMS
========================== */

.ldrs-header{

    display:none;

}

/* ==================================================
   ABOUT HERO
================================================== */

.about-hero{

    height:100vh;

    background-image:
    linear-gradient(
    rgba(0,0,0,.35),
    rgba(0,0,0,.35)
    ),
    url("../images/about-hero.jpg");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    color:white;

}

.about-overlay{

    max-width:850px;
    padding:20px;

}

.about-overlay h1{

    font-family:'Cormorant Garamond',serif;

    font-size:90px;

    font-weight:500;

    margin-bottom:25px;

}

.about-overlay p{

    font-size:26px;

    line-height:1.8;

}

/* ==================================================
   OUR STORY
================================================== */

.our-story{

    padding:140px 8%;

    background:#F8F5EF;

}

.story-container{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

    align-items:center;

}

.section-subtitle{

    color:#B28A46;

    letter-spacing:5px;

    font-size:14px;

    font-weight:600;

}

.story-text h2{

    font-family:'Cormorant Garamond',serif;

    font-size:62px;

    font-weight:500;

    line-height:1.15;

    margin:20px 0 35px;

}

.story-text p{

    font-size:18px;

    line-height:2;

    margin-bottom:25px;

}

.story-image img{

    width:100%;

    border-radius:14px;

    display:block;

}

/* ==================================================
   PHILOSOPHY
================================================== */

.philosophy{

    padding:140px 8%;

    background:white;

    text-align:center;

}

.philosophy h2{

    font-family:'Cormorant Garamond',serif;

    font-size:60px;

    margin-bottom:70px;

}

.philosophy-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:40px;

    max-width:1400px;

    margin:auto;

}

.card{

    padding:50px;

    border:1px solid #e6e1d8;

    border-radius:15px;

    transition:.35s;

}

.card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.card h3{

    font-family:'Cormorant Garamond',serif;

    font-size:34px;

    margin-bottom:20px;

}

.card p{

    line-height:1.9;

}

/* ==================================================
   TEAM
================================================== */

.team{

    padding:140px 8%;

    background:#F8F5EF;

    text-align:center;

}

.team h2{

    font-family:'Cormorant Garamond',serif;

    font-size:60px;

}

.team p{

    max-width:750px;

    margin:25px auto 70px;

    line-height:1.9;

}

.team-gallery{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.team-gallery img{

    width:100%;

    border-radius:14px;

    display:block;

    transition:.35s;

}

.team-gallery img:hover{

    transform:scale(1.03);

}

/* ==================================================
   VISION
================================================== */

.vision{

    padding:140px 10%;

    text-align:center;

    background:white;

}

.vision h2{

    font-family:'Cormorant Garamond',serif;

    font-size:60px;

    margin-bottom:35px;

}

.vision p{

    max-width:900px;

    margin:20px auto;

    line-height:2;

    font-size:19px;

}

/* ==================================================
   CTA
================================================== */

.about-cta{

    padding:170px 10%;

    background-image:
    linear-gradient(
    rgba(0,0,0,.35),
    rgba(0,0,0,.35)
    ),
    url("../images/backgroundimage.jpg");

    background-size:cover;

    background-position:center;

    text-align:center;

    color:white;

}

.about-cta h2{

    font-family:'Cormorant Garamond',serif;

    font-size:72px;

    margin-bottom:25px;

}

.about-cta p{

    font-size:22px;

    margin-bottom:45px;

}

/* ==================================================
   ROOMS PAGE
================================================== */

/* HERO */

.rooms-hero{

    height:100vh;

    background-image:
    linear-gradient(
    rgba(0,0,0,.40),
    rgba(0,0,0,.40)
    ),
    url("../images/room-sol-hero.jpg");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    color:white;

}

.rooms-intro{

    padding:120px 8%;

    background:#F8F5EF;

    text-align:center;

}

.rooms-intro h2{

    font-family:'Cormorant Garamond',serif;

    font-size:58px;

    margin:20px 0;

}

.rooms-intro p{

    max-width:900px;

    margin:auto;

    line-height:2;

    font-size:18px;

}

/* ==================================================
   ROOM SECTION
================================================== */

.room-section{

    padding:120px 8%;

    background:white;

}

.room-section.light{

    background:#F8F5EF;

}

.room-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

    max-width:1400px;

    margin:auto;

}

.room-container.reverse .room-text{

    order:1;

}

.room-container.reverse .room-image{

    order:2;

}

.room-image img{

    width:100%;

    display:block;

    border-radius:18px;

}

.room-text h2{

    font-family:'Cormorant Garamond',serif;

    font-size:58px;

    margin:15px 0 25px;

}

.room-text p{

    font-size:18px;

    line-height:2;

}

/* ==================================================
   SPECS
================================================== */

.room-specs{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin:45px 0;

}

.room-specs div{

    padding:22px;

    background:#f6f3ed;

    border-radius:12px;

}

.room-specs strong{

    color:#A98A4A;

}

/* ==================================================
   FEATURES
================================================== */

.room-text h3{

    margin-top:35px;

    margin-bottom:20px;

    font-family:'Cormorant Garamond',serif;

    font-size:32px;

}

.room-features{

    padding-left:20px;

    margin-bottom:45px;

}

.room-features li{

    margin-bottom:12px;

    line-height:1.8;

}

/* ==================================================
   GALLERY
================================================== */

.room-gallery{

    max-width:1400px;

    margin:0 auto 120px;

    padding:0 8%;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

}

.room-gallery img{

    width:100%;

    height:260px;

    object-fit:cover;

    border-radius:15px;

    transition:.35s;

    cursor:pointer;

}

.room-gallery img:hover{

    transform:scale(1.04);

}

/* ==================================================
   LAYOUT
================================================== */

.layout-section{

    padding:120px 8%;

    background:white;

}

.layout-section h2{

    text-align:center;

    font-family:'Cormorant Garamond',serif;

    font-size:55px;

    margin-bottom:60px;

}

.layout-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:45px;

    max-width:1200px;

    margin:auto;

}

.layout-card{

    padding:45px;

    border:1px solid #e7e3dc;

    border-radius:18px;

}

.layout-card h3{

    font-family:'Cormorant Garamond',serif;

    font-size:34px;

    margin-bottom:25px;

}

.layout-card ul{

    padding-left:20px;

}

.layout-card li{

    margin-bottom:14px;

    line-height:1.8;

}

/* ==================================================
   WHY SECTION
================================================== */

.why-section{

    padding:130px 8%;

    background:#F8F5EF;

    text-align:center;

}

.why-section h2{

    font-family:'Cormorant Garamond',serif;

    font-size:58px;

    margin:20px 0 30px;

}

.why-section p{

    max-width:900px;

    margin:auto;

    line-height:2;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:70px;

}

.why-card{

    background:white;

    padding:40px;

    border-radius:16px;

    transition:.3s;

}

.why-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.why-card h3{

    font-family:'Cormorant Garamond',serif;

    margin-bottom:15px;

    font-size:30px;

}

/* ==================================================
   BUTTON
================================================== */

.hero-btn{

    display:inline-block;

    margin-top:15px;

    padding:16px 36px;

    border-radius:50px;

    background:#A98A4A;

    color:white;

    text-decoration:none;

    transition:.3s;

}

.hero-btn:hover{

    background:#8f733d;

}

/* =====================================
   MOBILE MENU
===================================== */

.menu-toggle{

    display:none;

    background:none;

    border:none;

    color:white;

    font-size:36px;

    cursor:pointer;

    padding:8px;

    z-index:10000;

}
/* ==========================
   ROOM HERO
========================== */

.room-hero{

    width:100%;

    margin:90px 0 50px;

}

.room-hero img{

    width:100%;

    height:75vh;

    object-fit:cover;

    display:block;

    border-radius:18px;

}
/* ==========================
   CONTACT
========================== */

.contact-hero{

    height:70vh;

    background:
    linear-gradient(rgba(0,0,0,.35),rgba(0,0,0,.35)),
    url("../images/contact-hero.jpg");

    background-size:cover;
    background-position:center center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    color:white;

}

.contact-hero h1{

    font-family:'Cormorant Garamond',serif;

    font-size:72px;

    margin:15px 0;

}

.contact-hero p{

    font-size:20px;

    max-width:650px;

    margin:auto;

}

.contact-section{

    padding:100px 8%;

    background:#f8f5ef;

}

.contact-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:start;

}

.contact-info h2{

    font-family:'Cormorant Garamond',serif;

    font-size:54px;

    margin:20px 0;

}

.contact-info p{

    line-height:1.8;

}

.contact-card{

    margin-top:30px;

    padding-bottom:25px;

    border-bottom:1px solid #d8d2c8;

}

.contact-card h3{

    color:#7f8667;

    margin-bottom:10px;

    font-size:18px;

}

.contact-map iframe{

    width:100%;

    border-radius:18px;

    min-height:550px;

}

.contact-info .hero-btn{

    margin-top:45px;

    display:inline-block;

}

/* ==========================
   FOOTER
========================== */

footer{

    background:#1d2b24;

    color:white;

    padding:70px 8% 40px;

    text-align:center;

}

footer h3{

    font-family:'Cormorant Garamond',serif;

    font-size:42px;

    color:#C6A66A;

    margin-bottom:20px;

}

footer p{

    color:#d8d8d8;

    margin-bottom:35px;

}

.footer-links{

    display:flex;

    justify-content:center;

    gap:35px;

    flex-wrap:wrap;

    margin-bottom:30px;

}

.footer-links a{

    color:white;

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover{

    color:#C6A66A;

}

.footer-social{

    display:flex;

    justify-content:center;

    gap:30px;

    margin-bottom:35px;

}

.footer-social a{

    color:#C6A66A;

    text-decoration:none;

}

footer small{

    color:#a5a5a5;

    font-size:14px;

}
.map-btn{

    display:inline-block;

    margin-top:25px;

    padding:14px 32px;

    background:#C6A66A;

    color:white;

    text-decoration:none;

    border-radius:40px;

    transition:.3s;

    font-weight:500;

}

.map-btn:hover{

    background:#1d2b24;

}
/* ==========================
   GALLERY HERO
========================== */

.gallery-hero{

    height:70vh;

    background:
    linear-gradient(rgba(0,0,0,.35),rgba(0,0,0,.35)),
    url("../images/gallery-hero.jpg");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    color:white;

}

.gallery-hero h1{

    font-family:'Cormorant Garamond',serif;

    font-size:72px;

    margin:18px 0;

}

.gallery-hero p{

    font-size:20px;

    max-width:700px;

    margin:auto;

    line-height:1.8;

}

/* ==========================
   INTRO
========================== */

.gallery-intro{

    padding:100px 8%;

    text-align:center;

    background:#f8f5ef;

}

.gallery-intro h2{

    font-family:'Cormorant Garamond',serif;

    font-size:52px;

    margin-bottom:25px;

}

.gallery-intro p{

    max-width:760px;

    margin:auto;

    line-height:1.9;

    color:#555;

}

/* ==========================
   GALLERY SECTIONS
========================== */

.gallery-category{

    padding:90px 8%;

}

.gallery-category h2{

    font-family:'Cormorant Garamond',serif;

    font-size:46px;

    text-align:center;

    margin-bottom:25px;

}

.gallery-text{

    max-width:800px;

    margin:0 auto 45px;

    text-align:center;

    line-height:1.9;

    color:#666;

}

/* ==========================
   GRID
========================== */

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:28px;

}

.gallery-grid img{

    width:100%;

    height:380px;

    object-fit:cover;

    border-radius:18px;

    transition:.45s;

    cursor:pointer;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.gallery-grid img:hover{

    transform:scale(1.04);

}

/* ==========================
   PANORAMIC IMAGE
========================== */

.gallery-banner{

    padding:20px 8% 90px;

}

.gallery-banner img{

    width:100%;

    height:650px;

    object-fit:cover;

    border-radius:24px;

    display:block;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

/* ==========================
   CTA
========================== */

.about-cta{

    text-align:center;

    padding:110px 8%;

    background:#1D2B24;

    color:white;

}

.about-cta h2{

    font-family:'Cormorant Garamond',serif;

    font-size:56px;

    margin-bottom:25px;

    color:white;

}

.about-cta p{

    max-width:700px;

    margin:auto;

    line-height:1.8;

    margin-bottom:40px;

    color:rgba(255,255,255,.85);

}

}

.about-cta h2{

    font-family:'Cormorant Garamond',serif;

    font-size:56px;

    margin-bottom:25px;

}

.about-cta p{

    max-width:700px;

    margin:auto;

    line-height:1.8;

    margin-bottom:40px;

}
/* ==========================
   LIGHTBOX
========================== */

.lightbox{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.92);

    display:none;

    justify-content:center;
    align-items:center;

    z-index:99999;

    padding:30px;

}

.lightbox.active{

    display:flex;

}

.lightbox img{

    max-width:90%;

    max-height:90%;

    border-radius:12px;

}

.close-lightbox{

    position:absolute;

    top:30px;

    right:40px;

    color:white;

    font-size:50px;

    cursor:pointer;

    font-weight:300;

}
/* ==========================
   EXPERIENCES HERO
========================== */

.experience-hero{

    height:70vh;

    background:
    linear-gradient(rgba(0,0,0,.35),rgba(0,0,0,.35)),
    url("../images/experience-hero.jpg");

    background-size:cover;
    background-position:center top;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    color:white;

}

.experience-hero h1{

    font-family:'Cormorant Garamond',serif;

    font-size:72px;

    margin:18px 0;

}

.experience-hero p{

    max-width:700px;

    margin:auto;

    font-size:20px;

    line-height:1.8;

}

/* ==========================
   INTRO
========================== */

.experience-intro{

    padding:100px 8%;

    text-align:center;

    background:#f8f5ef;

}

.experience-intro h2{

    font-family:'Cormorant Garamond',serif;

    font-size:52px;

    margin-bottom:25px;

}

.experience-intro p{

    max-width:760px;

    margin:auto;

    line-height:1.9;

    color:#555;

}

/* ==========================
   EXPERIENCE SECTION
========================== */

.experience-section{

    padding:90px 8%;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.experience-section.reverse{

    direction:rtl;

}

.experience-section.reverse>*{

    direction:ltr;

}

.experience-image img{

    width:100%;

    height:520px;

    object-fit:cover;

    border-radius:20px;

    display:block;

    box-shadow:0 20px 45px rgba(0,0,0,.10);

    transition:.4s;

}

.experience-image img:hover{

    transform:scale(1.02);

}

.experience-text h2{

    font-family:'Cormorant Garamond',serif;

    font-size:48px;

    margin:18px 0 25px;

}

.experience-text p{

    line-height:1.9;

    margin-bottom:20px;

    color:#555;

}

.section-subtitle{

    color:#7f8667;

    letter-spacing:2px;

    font-size:14px;

    font-weight:600;

}
/* ==========================
   DIGITAL NOMADS
========================== */

.digital-nomads{

    padding:120px 8%;

    background:#F8F5EF;

    text-align:center;

}

.digital-nomads h2{

    font-family:'Cormorant Garamond',serif;

    font-size:56px;

    color:#1D2B24;

    margin:20px 0;

}

.digital-nomads>p{

    max-width:780px;

    margin:0 auto 60px;

    line-height:1.9;

    color:#555;

}

.nomad-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.nomad-card{

    background:white;

    padding:40px 30px;

    border-radius:18px;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.nomad-card:hover{

    transform:translateY(-8px);

}

.nomad-icon{

    display:block;

    font-size:28px;

    color:#A67C52;

    margin-bottom:20px;

    line-height:1;

}

.nomad-card h3{

    font-family:'Cormorant Garamond',serif;

    font-size:30px;

    color:#1D2B24;

    margin-bottom:15px;

}

.nomad-card p{

    color:#666;

    line-height:1.8;

}

/* ==========================
   SEO INTRO
========================== */

.seo-intro{

    max-width:900px;
    margin:100px auto;
    padding:0 30px;
    text-align:center;

}

.seo-intro h2{

    font-family:var(--title-font);
    font-size:48px;
    color:var(--green);
    margin-bottom:25px;

}

.seo-intro p{

    font-size:18px;
    line-height:1.9;
    color:var(--text-color);

}
/*=========================================
OPENING OFFER POPUP
=========================================*/

.popup-overlay{

    position:fixed;
    inset:0;
    background:rgba(15,25,20,.70);
    backdrop-filter:blur(8px);
    display:flex;
    justify-content:center;
    align-items:center;
    padding:30px;
    z-index:99999;

}

.popup-card{

    width:100%;
    max-width:560px;
    background:#1E352C;
    border:1px solid rgba(198,161,91,.35);
    border-radius:24px;
    padding:55px;
    text-align:center;
    position:relative;
    box-shadow:0 35px 80px rgba(0,0,0,.35);
    animation:popupFade .45s ease;

}

@keyframes popupFade{

    from{

        opacity:0;
        transform:translateY(20px) scale(.96);

    }

    to{

        opacity:1;
        transform:translateY(0) scale(1);

    }

}

.popup-close{

    position:absolute;
    top:18px;
    right:22px;
    background:none;
    border:none;
    color:#C6A15B;
    font-size:30px;
    cursor:pointer;
    transition:.3s;

}

.popup-close:hover{

    transform:rotate(90deg);
    color:#fff;

}

.popup-badge{

    display:inline-block;
    color:#C6A15B;
    font-family:'Cormorant Garamond',serif;
    font-size:2.1rem;
    font-weight:600;
    margin-bottom:28px;

}

.popup-card h2{

    color:white;
    font-family:'Cormorant Garamond',serif;
    font-size:2.7rem;
    font-weight:600;
    margin:0 0 20px;

}

.popup-card p{

    color:rgba(255,255,255,.90);
    font-size:1rem;
    line-height:1.9;
    margin-bottom:40px;

}

.popup-card strong{

    color:#F4E2B3;
    font-weight:600;

}

.popup-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#C6A15B;
    color:#fff;
    text-decoration:none;
    padding:16px 42px;
    border-radius:50px;
    font-weight:600;
    font-size:1rem;
    transition:.35s;

}

.popup-btn:hover{

    background:#D8B56C;
    transform:translateY(-3px);

}

.popup-card small{

    display:block;
    margin-top:26px;
    color:rgba(255,255,255,.55);
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:.75rem;

}

/*=========================
MOBILE
=========================*/

@media(max-width:768px){

.popup-overlay{

    padding:20px;

}

.popup-card{

    padding:40px 28px;

}

.popup-badge{

    font-size:1.7rem;

}

.popup-card h2{

    font-size:2.2rem;

}

.popup-card p{

    font-size:.95rem;
    line-height:1.7;

}

.popup-btn{

    width:100%;
    padding:16px;

}

}
/*=========================================
THE PEOPLE BEHIND SE'TENA
=========================================*/

.team-section{

    padding:120px 8%;
    background:#F8F6F1;

}

.team-section .section-subtitle{

    display:block;
    text-align:center;
    color:#A88A52;
    letter-spacing:3px;
    text-transform:uppercase;
    font-size:.85rem;
    margin-bottom:15px;

}

.team-section h2{

    text-align:center;
    font-family:'Cormorant Garamond',serif;
    font-size:3.3rem;
    color:#1E352C;
    margin-bottom:25px;
    line-height:1.15;

}

.team-intro{

    max-width:850px;
    margin:0 auto 90px;
    text-align:center;
    color:#5E5E5E;
    line-height:1.9;
    font-size:1.05rem;

}

/*=========================================
TEAM MEMBER
=========================================*/

.team-member{

    display:flex;
    align-items:center;
    gap:70px;
    margin-bottom:120px;
    position:relative;
    transition:.35s ease;

}

.team-member.reverse{

    flex-direction:row-reverse;

}

.team-member:last-child{

    margin-bottom:0;

}

/*=========================================
PHOTO
=========================================*/

.team-photo{

    flex:1;
    position:relative;
    overflow:hidden;
    border-radius:22px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
    transition:.45s;

}

.team-member:hover .team-photo{

    box-shadow:0 28px 70px rgba(0,0,0,.18);

}

.team-photo img{

    width:100%;
    height:560px;
    object-fit:cover;
    object-position:center;
    display:block;
    transition:transform .7s ease;

}

.team-member:hover .team-photo img{

    transform:scale(1.03);

}

/*=========================================
SLIDER
=========================================*/

.team-photo.slider{

    position:relative;
    height:560px;

}

.team-photo.slider img{

    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;
    object-position:center;

    opacity:0;

    transition:opacity 1.5s ease-in-out;

}

.team-photo.slider img.active{

    opacity:1;

}

/*=========================================
TEXT
=========================================*/

.team-info{

    flex:1;

}

.team-info h3{

    font-family:'Cormorant Garamond',serif;
    font-size:2.4rem;
    color:#1E352C;
    margin-bottom:12px;

}

.team-role{

    display:block;
    color:#A88A52;
    font-size:.9rem;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:8px;

}

.team-location{

    display:block;
    color:#888;
    margin-bottom:28px;
    font-size:.95rem;

}

.team-info p{

    color:#5E5E5E;
    line-height:1.9;
    font-size:1rem;

}

/*=========================================
DIVIDER
=========================================*/

.team-member::after{

    content:"";

    position:absolute;

    bottom:-60px;

    left:50%;

    transform:translateX(-50%);

    width:80px;

    height:1px;

    background:rgba(168,138,82,.25);

}

.team-member:last-child::after{

    display:none;

}
