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

:root{
    --bg-cream:#F6F1E8;
    --bg-soft:#FBF8F2;
    --forest:#1F3328;
    --forest-2:#2D4638;
    --olive:#5D6F52;
    --brown:#7A5137;
    --gold:#B79B62;
    --text:#233126;
    --text-soft:#5E655B;
    --white:#FFFFFF;
    --shadow:0 14px 38px rgba(0,0,0,0.13);
    --shadow-soft:0 8px 24px rgba(0,0,0,0.08);
}

html{
    scroll-behavior:smooth;
    overflow-x:hidden;
}

body{
    font-family:Inter, Arial, sans-serif;
    background:var(--bg-cream);
    color:var(--text);
    line-height:1.75;
    text-rendering:optimizeLegibility;
}

a{ text-decoration:none; color:inherit; }
img{ max-width:100%; display:block; }
section, footer{ width:100%; }

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:150px;
    padding:14px 24px;
    border-radius:999px;
    border:1.5px solid transparent;
    font-size:.95rem;
    font-weight:600;
    letter-spacing:.04em;
    transition:all .28s ease;
}
.btn-primary{ background:var(--forest); color:var(--white); }
.btn-primary:hover{ background:var(--forest-2); transform:translateY(-2px); }
.btn-outline{ background:transparent; color:var(--forest); border-color:var(--forest); }
.btn-outline:hover{ background:var(--forest); color:var(--white); transform:translateY(-2px); }

.kicker{
    color:var(--gold);
    font-size:.92rem;
    letter-spacing:2px;
    text-transform:uppercase;
    font-weight:700;
    margin-bottom:14px;
}
.kicker.light{ color:#E6D4A5; }

.section-title{
    font-family:"Cormorant Garamond", Georgia, serif;
    font-size:clamp(2.2rem, 4vw, 3.2rem);
    line-height:1.08;
    color:var(--forest);
    margin-bottom:12px;
}

.section-subtitle{
    max-width:760px;
    color:var(--text-soft);
    font-size:1.03rem;
    line-height:1.8;
}

/* Header */
.guidBarFrameWork{
    width:100%;
    height:78px;
    position:fixed;
    top:0;
    left:0;
    z-index:20;
    background:rgba(17,30,22,0.88);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.nav-inner{
    width:min(1240px, 94%);
    height:100%;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}

.guideBarLogo{
    width:158px;
    height:48px;
    display:flex;
    align-items:center;
    flex-shrink:0;
}

.guideBarLogo img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.buttonOuter,
.buttonInter1,
.buttonInter2{
    position:static;
    width:auto;
    height:auto;
}

.buttonOuter{
    display:flex;
    align-items:center;
    gap:18px;
}

.buttonInter1,
.buttonInter2{
    display:flex;
    align-items:center;
    gap:8px;
}

.guideBarButton1,
.guideBarButton2{
    background:transparent;
    color:rgba(255,255,255,0.92);
    width:auto;
    height:auto;
    padding:12px 16px;
    font-size:14px;
    letter-spacing:1.4px;
    font-weight:600;
    border-radius:999px;
    position:relative;
    transition:color .25s ease, background .25s ease;
}

.guideBarButtonText1,
.guideBarButtonText2{ margin:0; }

.guideBarButton1::after,
.guideBarButton2::after{
    content:"";
    position:absolute;
    left:16px;
    right:16px;
    bottom:8px;
    height:2px;
    background:var(--gold);
    transform:scaleX(0);
    transform-origin:center;
    transition:transform .25s ease;
}

.guideBarButton1:hover,
.guideBarButton2:hover{
    color:#DDE8D6;
    background:rgba(255,255,255,0.05);
}

.guideBarButton1:hover::after,
.guideBarButton2:hover::after{ transform:scaleX(1); }

/* current page nav item */
.active-nav{
    color:#E3D0A1;
    background:rgba(255,255,255,0.06);
}

.active-nav::after{
    transform:scaleX(1);
}

/* Hero */
.headerImageFrame{
    min-height:100vh;
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:flex-end;
}

.BirdsPageHeaderImage{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center 52%;
    transform:scale(1.03);
    filter:brightness(1.25) contrast(1.08) saturate(1.08);
}

.headerImageOverlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg, rgba(12,22,17,.72) 0%, rgba(12,22,17,.42) 44%, rgba(12,22,17,.18) 100%),
        linear-gradient(180deg, rgba(0,0,0,.06) 0%, rgba(0,0,0,.34) 100%);
}

.headerImageContentBox{
    width:min(780px, 90%);
    position:relative;
    margin:0 0 8vh max(4vw, 32px);
    z-index:2;
    padding-top:110px;
    padding-bottom:48px;
}

.hero-eyebrow{
    display:inline-block;
    margin-bottom:16px;
    color:#E6D4A5;
    font-size:.92rem;
    letter-spacing:2px;
    text-transform:uppercase;
    font-weight:700;
}

.PageTitle{
    font-family:"Cormorant Garamond", Georgia, serif;
    font-size:clamp(3.2rem, 7vw, 5.2rem);
    line-height:1.02;
    color:var(--white);
    margin-bottom:18px;
    max-width:760px;
}

.classDescription{
    width:min(720px, 100%);
    font-size:clamp(1.1rem, 2vw, 1.34rem);
    color:rgba(255,255,255,0.92);
    line-height:1.68;
}

.hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:38px;
}
.hero-actions .btn-outline{ border-color:rgba(255,255,255,0.75); color:var(--white); }
.hero-actions .btn-outline:hover{ background:rgba(255,255,255,0.12); border-color:rgba(255,255,255,0.95); }


/* Intro */
.intro-section,
.stay-section,
.classroom-section,
.stats-section{ padding:118px 0; }
.intro-section,
.classroom-section{ background:linear-gradient(180deg, var(--bg-soft) 0%, #F8F4EC 100%); }
.stay-section{ background:var(--bg-cream); }
.stats-section{ background:linear-gradient(180deg, #1B2A22 0%, #263C31 100%); }

.intro-grid,
.classroom-grid{
    width:min(1220px, 92%);
    margin:0 auto;
    display:grid;
    grid-template-columns:1.08fr .92fr;
    align-items:center;
    gap:54px;
}

.intro-image,
.classroom-image{
    min-height:620px;
    border-radius:30px;
    box-shadow:var(--shadow);
    overflow:hidden;
    position:relative;
}

.intro-image{
    background:
        linear-gradient(rgba(15,25,18,.04), rgba(15,25,18,.12)),
        url("ExplorationPageImage/capuchinMonkey.jpg")
        60% 42% / 170%
        no-repeat;
}

.classroom-image{
    min-height:560px;
    border-radius:30px;
    box-shadow:var(--shadow);
    overflow:hidden;
    position:relative;
    background:
        linear-gradient(rgba(10,14,12,.10), 
        rgba(10,14,12,.18)),
        url("ExplorationPageImage/ClassroomImage.JPG") 
        70% center/140% no-repeat;
}

.intro-text,
.classroom-text{
    max-width:620px;
}

.intro-copy,
.classroom-copy{
    display:grid;
    gap:18px;
    margin-top:14px;
    color:var(--text);
    font-size:1rem;
    line-height:1.9;
}


/* Featured activities */
.activities-section{ 
    padding:118px 0; 
    background:linear-gradient(180deg, #EFE7D7 0%, #E7DCC8 100%); 
}

.activities-header{
    width:min(980px, 90%);
    margin:0 auto 72px;
    text-align:center;
}

.activities-subtitle{
    max-width:720px;
    margin:18px auto 0;
    font-size:1.08rem;
    line-height:1.9;
    color:var(--text-soft);
}

.activities-grid{
    width:min(1280px, 94%);
    margin:0 auto;
    display:grid;
    grid-template-columns:1.18fr .82fr;
    grid-template-areas:
        "hiking birdwatching"
        "live night";
    gap:24px;
    align-items:stretch;
}

.activity-feature,
.activity-card{
    border-radius:30px;
    overflow:hidden;
    position:relative;
    box-shadow:var(--shadow-soft);
    border:1px solid rgba(31,51,40,0.07);
    transition:transform .28s ease, box-shadow .28s ease;
}

.activity-feature:hover,
.activity-card:hover,
.beyond-card:hover{ 
    transform:translateY(-4px); 
    box-shadow:var(--shadow); 
}

.activity-feature{
    grid-area:hiking;
    min-height:640px;
    background:
        linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.52) 100%),
        url("ExplorationPageImage/Hiking.jpg")
        center 42% / cover
        no-repeat;
    display:flex;
    align-items:flex-end;
}

.activity-feature-content{
    padding:56px 36px 38px;
    color:var(--white);
    width:min(680px, 100%);
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    height:100%;
}

.activity-feature h3{
    font-family:"Cormorant Garamond", Georgia, serif;
    font-size:clamp(2.2rem, 3.8vw, 3.2rem);
    line-height:1.05;
    margin-bottom:12px;
}
.activity-feature p{
    color:rgba(255,255,255,0.88);
    line-height:1.8;
    margin-bottom:18px;
}

.activity-feature .btn-outline{
    align-self:flex-start;
    margin-top:12px;
    border-color:rgba(255,255,255,0.78);
    color:var(--white);
    background:rgba(255,255,255,0.04);
    backdrop-filter:blur(6px);
}

.activity-feature .btn-outline:hover{
    background:rgba(255,255,255,0.12);
    border-color:rgba(255,255,255,0.95);
    color:var(--white);
    transform:translateY(-2px);
}

.tag-row{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:18px;
}
.tag-row span{
    display:inline-flex;
    align-items:center;
    padding:8px 14px;
    border-radius:999px;
    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.16);
    color:var(--white);
    font-size:.8rem;
    letter-spacing:.06em;
    text-transform:uppercase;
    font-weight:600;
}

.activity-card{
    background:#FBF8F2;
    display:grid;
    grid-template-rows:240px auto;
}

.activity-birdwatching-card .media{
    background:
        linear-gradient(rgba(255,255,255,.04), rgba(0,0,0,.18)),
        url("ExplorationPageImage/birdWatching.jpeg")
        48% 43% / 300%
        no-repeat;
    filter:brightness(1.08) contrast(1.05);
}

.activity-card .copy{
    padding:24px 24px 28px;
}

.activity-card h3{
    font-family:"Cormorant Garamond", Georgia, serif;
    font-size:1.95rem;
    color:var(--forest);
    margin-bottom:8px;
    line-height:1.08;
}
.activity-card p{
    color:var(--text-soft);
    line-height:1.8;
}

/* Birdwatching: larger image area */
.activity-birdwatching-card{
    grid-area:birdwatching;
    min-height:360px;
    grid-template-rows:250px auto;
    align-self:start;
    margin-bottom:0;
}

.activity-birdwatching-card .copy{
    padding:18px 22px 40px;
}


/* Live in Nature: image left, text right */
.activity-live-card{
    grid-area:live;
    min-height:325px;
    display:grid;
    grid-template-columns:1.05fr .95fr;
    grid-template-rows:none;
    align-self:end;
}

.activity-live-card .media{
    height:100%;
    min-height:290px;
    background:
        linear-gradient(rgba(12,18,14,.05), rgba(12,18,14,.18)),
        url("ExplorationPageImage/liveInNature.JPG")
        50% 60% / cover
        no-repeat;
}

.activity-live-card .copy{
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:30px 28px;
}

/* Night Exploration: slightly taller and more image */
.activity-night-card{
    grid-area:night;
    min-height:400px;
    grid-template-rows:270px auto;
    align-self:start;
    margin-top:-165px;
    z-index:2;
}

.activity-night-card .media{
    background:
        linear-gradient(rgba(255,255,255,.04), rgba(0,0,0,.18)),
        url("ExplorationPageImage/NightExploration.jpg")
        65% 65% / 120%
        no-repeat;
        filter: brightness(1.18) contrast(1.05);
}

/* Stay section */
.stay-grid{
    width:min(1260px, 92%);
    margin:0 auto;
    display:grid;
    grid-template-columns:.92fr 1.08fr;
    gap:34px;
    align-items:stretch;
}
.stay-card{
    background:#EFE7D7;
    border-radius:32px;
    padding:44px 40px;
    box-shadow:var(--shadow-soft);
}
.stay-copy{ display:grid; gap:18px; color:var(--text); line-height:1.9; }

.stay-media{
    min-height:620px;
    border-radius:32px;
    box-shadow:var(--shadow);
    position:relative;
    overflow:hidden;
    background:
        linear-gradient(rgba(255,255,255,.05), rgba(0,0,0,.08)),
        url("ExplorationPageImage/house.JPG")
        42% 65% / cover
        no-repeat;
    filter:brightness(1.18) contrast(1.04);
}

/* Stats / wildlife */
.stats-header{
    width:min(980px, 90%);
    margin:0 auto 40px;
    text-align:center;
}

.stats-header .section-title,
.stats-header .section-subtitle{ color:var(--white); }
.stats-header .section-subtitle{ color:rgba(255,255,255,0.82); }
.stats-grid{
    width:min(1260px, 92%);
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:22px;
}

.stat-card{
    min-height:380px;
    border-radius:28px;
    overflow:hidden;
    position:relative;
    box-shadow:var(--shadow);
    transition:transform .28s ease, box-shadow .28s ease;
}

.stat-card:nth-child(1){
    background:
        linear-gradient(180deg, rgba(0,0,0,.02) 0%, rgba(0,0,0,.60) 100%),
        url("ExplorationPageImage/mammal.jpeg")
        40% 60% / 350%
        no-repeat;
}

.stat-card:nth-child(2){
    background:
        linear-gradient(180deg, rgba(0,0,0,.02) 0%, rgba(0,0,0,.60) 100%),
        url("ExplorationPageImage/bird.jpeg")
        55% 30% / 330%
        no-repeat;
}

.stat-card:nth-child(3){
    background:
        linear-gradient(180deg, rgba(0,0,0,.04) 0%, rgba(0,0,0,.62) 100%),
        url("ExplorationPageImage/herps.jpeg")
        46% 48% / 320%
        no-repeat;
}

.stat-card:nth-child(4){
    background:
        linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.62) 100%),
        url("ExplorationPageImage/insect.jpg")
        center 45% / cover
        no-repeat;
}

.stat-card:nth-child(1),
.stat-card:nth-child(2),
.stat-card:nth-child(3),
.stat-card:nth-child(4){
    background-blend-mode:normal;
    filter:brightness(1.18) contrast(1.06);
}

.stat-card:hover{ 
    transform:translateY(-4px); 
    box-shadow:0 18px 38px rgba(0,0,0,.18); 
}

.stat-content{
    position:absolute;
    left:24px;
    right:24px;
    bottom:30px;
    color:var(--white);
    text-align:center;
}

.stat-number{
    display:block;
    font-size:3rem;
    font-family:"Cormorant Garamond", Georgia, serif;
    line-height:1;
    margin-bottom:8px;
}

.stat-label{
    display:block;
    font-size:1.18rem;
    font-weight:600;
    letter-spacing:.02em;
}


.stats-cta{
    width:min(1260px, 92%);
    margin:34px auto 0;
    display:flex;
    justify-content:flex-end;
}

.stats-cta .btn-outline{ border-color:rgba(255,255,255,0.68); color:var(--white); }
.stats-cta .btn-outline:hover{ background:rgba(255,255,255,0.12); border-color:rgba(255,255,255,0.95); }

/* Beyond OneK */
.beyond-section{ padding:118px 0 124px; background:var(--bg-soft); }
.beyond-header{
    width:min(980px, 90%);
    margin:0 auto 56px;
    text-align:center;
}

.beyond-subtitle{
    max-width:720px;
    margin:18px auto 0;
    font-size:1.08rem;
    line-height:1.9;
    color:var(--text-soft);
}

.beyond-grid{
    width:min(1260px, 92%);
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:26px;
}
.beyond-card{
    background:#FAF8F2;
    border-radius:30px;
    overflow:hidden;
    box-shadow:var(--shadow-soft);
    border:1px solid rgba(31,51,40,0.07);
    transition:transform .28s ease, box-shadow .28s ease;
}

.beyond-media{
    height:280px;
    background:
        url("ExplorationPageImage/WhaleWatching.JPG")
        center 58% / 145%
        no-repeat;
}

.beyond-card:nth-child(2) .beyond-media{
    background:
        url("ExplorationPageImage/Safari.jpg")
        center 42% / cover
        no-repeat;
}

.beyond-card:nth-child(3) .beyond-media{
    background:
        url("ExplorationPageImage/highLand.jpg")
        62% 42% / 155%
        no-repeat;
}

.beyond-copy{ padding:26px 28px 30px; }
.beyond-copy h3{
    font-family:"Cormorant Garamond", Georgia, serif;
    font-size:2rem;
    color:var(--forest);
    margin-bottom:10px;
}
.beyond-copy p{ color:var(--text-soft); line-height:1.82; }

/* Footer */
.footerFrame{
    width:100%;
    background:linear-gradient(180deg, #101913 0%, #16231B 100%);
    padding:72px 0 48px;
    border-top:1px solid rgba(183,155,98,0.28);
    position:relative;
}
.footerFrame::before{
    content:"";
    position:absolute;
    top:0; left:0; right:0; height:1px;
    background:linear-gradient(90deg, transparent, rgba(183,155,98,0.55), transparent);
}
.footer-inner{
    width:min(1200px, 92%);
    margin:0 auto;
    display:grid;
    grid-template-columns:1.1fr .7fr .95fr;
    gap:36px;
}
.footerLogo{ width:205px; height:88px; margin-bottom:18px; }
.footerLogo img{ width:100%; height:100%; object-fit:contain; }
.footerLogoText{ color:rgba(255,255,255,0.8); font-size:1rem; }
.footer-about p{ color:rgba(255,255,255,0.8); max-width:360px; margin-top:14px; }
.footer-col h4{ font-family:"Cormorant Garamond", Georgia, serif; font-size:2rem; color:var(--white); margin-bottom:16px; }
.footer-links a,
.footer-contact p{ display:block; color:rgba(255,255,255,0.8); margin-bottom:12px; }
.footer-links a:hover{ color:#E3D0A1; }
.footer-socials{ display:flex; gap:14px; margin:18px 0 22px; }
.footerContactLinkbuttton{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,0.06);
    transition:transform .25s ease, background .25s ease;
}
.footerContactLinkbuttton:hover{ transform:translateY(-2px) scale(1.05); background:rgba(183,155,98,0.2); }
.footerContactLogo{ width:22px; height:22px; object-fit:contain; }
.footer-bottom{
    width:min(1200px, 92%);
    margin:32px auto 0;
    padding-top:24px;
    border-top:1px solid rgba(255,255,255,0.08);
    color:rgba(255,255,255,0.62);
    font-size:.95rem;
}

/* Responsive */
@media screen and (max-width:1180px){
    .activities-grid,
    .stay-grid,
    .intro-grid,
    .classroom-grid{
        grid-template-columns:1fr;
    }
    .activities-grid{
        grid-template-areas:
            "hiking"
            "birdwatching"
            "live"
            "night";
    }

    .stats-grid,
    .beyond-grid,
    .intro-highlights{
        grid-template-columns:1fr 1fr;
    }
    .activity-feature{ min-height:520px; }
    .activity-card{ grid-template-rows:200px auto; min-height:auto; }
    .footer-inner{ grid-template-columns:1fr; }

    .activity-live-card{
        grid-template-columns:1fr;
        grid-template-rows:220px auto;
    }

    .activity-live-card .media{
        min-height:220px;
    }

    .activity-live-card{
        grid-template-columns:1fr;
        grid-template-rows:220px auto;
        align-self:stretch;
    }

    .activity-live-card .media{
        min-height:220px;
    }

    .activity-night-card{
        margin-top:0;
        align-self:stretch;
    }


}



@media screen and (max-width:820px){
    .guidBarFrameWork{ height:auto; padding:14px 0; }
    .nav-inner,
    .buttonOuter{ flex-direction:column; align-items:flex-start; }
    .buttonInter1,
    .buttonInter2{ flex-wrap:wrap; }
    .headerImageFrame{ min-height:860px; }
    .headerImageContentBox{ margin-left:24px; width:calc(100% - 48px); }
    .hero-metrics,
    .stats-grid,
    .beyond-grid,
    .intro-highlights{ grid-template-columns:1fr; }
    .activities-grid{ gap:20px; }
    .activity-card .copy{ padding:22px 22px 24px; }


}


@media screen and (max-width:560px){
    .guideBarButton1,
    .guideBarButton2{ padding:10px 12px; font-size:13px; }

    .intro-section,
    .activities-section,
    .stay-section,
    .stats-section,
    .classroom-section,
    .beyond-section{ padding:84px 0; }

    .intro-image,
    .classroom-image,
    .stay-media,
    .activity-feature{ min-height:360px; }

    .activity-card .copy,
    .beyond-copy,
    .stay-card,
    .intro-text,
    .classroom-text{ padding-inline:0; }

    .stay-card{ padding:30px 24px; }

    .activity-birdwatching-card .copy,
    .activity-live-card .copy,
    .activity-night-card .copy{
        padding:22px 20px 24px;
    }

    .activity-birdwatching-card .kicker,
    .activity-live-card .kicker,
    .activity-night-card .kicker{
        margin-bottom:10px;
        font-size:.78rem;
        letter-spacing:1.4px;
    }

    .activity-birdwatching-card h3,
    .activity-live-card h3,
    .activity-night-card h3{
        font-size:1.7rem;
        line-height:1.06;
        margin-bottom:8px;
    }

    .activity-birdwatching-card p,
    .activity-live-card p,
    .activity-night-card p{
        font-size:.95rem;
        line-height:1.7;
    }
}
