:root {
    --brand: #f87618;
    --brand-dark: #8f3f0d;
    --ink: #1e293b;
    --muted: #64748b;
    --pine: #12352f;
    --ridge: #0f2430;
    --snow: #f7faf8;
    --mist: #eef4f2;
    --line: #dbe4df;
    --shadow: 0 18px 45px rgba(15, 36, 48, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--ink);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
    background: #fff;
    overflow-x: hidden;
}

a {
    color: var(--brand-dark);
    text-decoration: none;
}

a:hover {
    color: var(--brand);
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4 {
    color: var(--ink);
    font-weight: 800;
    line-height: 1.15;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 1px 0 rgba(15, 36, 48, 0.08);
}

.navbar {
    min-height: 74px;
}

.navbar-brand img {
    width: 200px;
    height: auto;
}

.navbar-toggler {
    border: 0;
    padding: 0.35rem 0.25rem;
}

.navbar-toggler-icon {
    width: 1.7rem;
    height: 1.7rem;
    background-image: none;
    background:
        linear-gradient(var(--ridge), var(--ridge)) center 7px / 24px 2px no-repeat,
        linear-gradient(var(--ridge), var(--ridge)) center 13px / 24px 2px no-repeat,
        linear-gradient(var(--ridge), var(--ridge)) center 19px / 24px 2px no-repeat;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.nav-link {
    color: var(--ink);
    font-size: 0.94rem;
    font-weight: 650;
    padding: 0.75rem 0.85rem !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand);
}

.booking-marquee {
    overflow: hidden;
    background: #644229;
    color: #f8fafc;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    min-width: max-content;
    animation: marquee 28s linear infinite;
}

.marquee-track span {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 1.6rem;
}

.marquee-track span::before {
    content: "";
    width: 7px;
    height: 7px;
    margin-right: 1rem;
    border-radius: 50%;
    background: var(--brand);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.hero-section {
    position: relative;
    display: grid;
    min-height: 75vh;
    overflow: hidden;
    place-items: center;
    background: url("../images/main-banner.webp") bottom center / cover no-repeat fixed;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(4, 18, 28, 0.18), rgba(4, 18, 28, 0.56)),
        radial-gradient(circle at 50% 30%, rgba(248, 118, 24, 0.12), transparent 38%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-block: 7rem;
}

.hero-kicker {
    color: #fff;
    font-size: clamp(0.78rem, 1.8vw, 1.1rem);
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 0.65rem;
    max-width: 100%;
    text-transform: uppercase;
    text-wrap: balance;
}

.hero-section h1 {
    color: var(--brand);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2.35rem, 7vw, 4.4rem);
    font-weight: 700;
    max-width: 100%;
    text-shadow:
        -1px -1px 0 #fff,
        1px -1px 0 #fff,
        -1px 1px 0 #fff,
        1px 1px 0 #fff,
        0 14px 44px rgba(0, 0, 0, 0.28);
    text-wrap: balance;
}

.hero-zigzag {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 18px;
    background:
        linear-gradient(135deg, transparent 75%, #fff 76%) 0 0 / 20px 20px,
        linear-gradient(225deg, transparent 75%, #fff 76%) 0 0 / 20px 20px;
}

.btn-brand {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--brand);
    --bs-btn-border-color: var(--brand);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--ridge);
    --bs-btn-hover-border-color: var(--ridge);
    --bs-btn-focus-shadow-rgb: 248, 118, 24;
    border-radius: 4px;
    font-weight: 750;
    padding: 0.78rem 1.6rem;
}

.section-pad {
    padding-block: clamp(3.5rem, 7vw, 5.8rem);
}

.bg-mist {
    background: var(--mist);
}

.section-tag {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.35rem 0.55rem;
    background: var(--brand);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.page-hero {
    position: relative;
    display: grid;
    min-height: 42vh;
    place-items: center;
    overflow: hidden;
    padding-block: 5rem;
    background:
        linear-gradient(90deg, rgba(15, 36, 48, 0.82), rgba(15, 36, 48, 0.48)),
        url("../images/main-banner.webp") center / cover no-repeat;
}

.page-hero.compact-hero {
    min-height: 34vh;
}

.page-hero h1 {
    max-width: 900px;
    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2.4rem, 6vw, 4.6rem);
}

.page-hero .hero-kicker {
    color: var(--brand);
    margin-bottom: 0.5rem;
}

.page-hero-text {
    max-width: 720px;
    color: #e6eef0;
    font-size: 1.1rem;
}

.intro-section h2 {
    margin-bottom: 1.1rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

.intro-section p {
    color: var(--muted);
    max-width: 62ch;
}

.intro-photo {
    position: relative;
}

.intro-photo::before {
    content: "";
    position: absolute;
    inset: 1.2rem -1rem -1rem 1.2rem;
    z-index: -1;
    background: var(--mist);
}

.intro-photo img,
.feature-card img {
    display: block;
    width: 100%;
    object-fit: cover;
}

.intro-photo img {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.check-list {
    display: grid;
    gap: 0.65rem;
    padding: 0;
    margin: 1.4rem 0 1.8rem;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 1.75rem;
    color: var(--ink);
    font-weight: 650;
}

.check-list li::before {
    position: absolute;
    top: 0.08rem;
    left: 0;
    color: var(--brand);
    font-family: "bootstrap-icons";
    content: "\F26A";
}

.feature-section {
    background: linear-gradient(180deg, #fff 0%, var(--snow) 100%);
}

.feature-card {
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(219, 228, 223, 0.9);
    border-radius: 8px;
    box-shadow: 0 10px 32px rgba(15, 36, 48, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.feature-card img {
    aspect-ratio: 4 / 3;
}

.feature-card-body {
    padding: 1.35rem 1.45rem 1.5rem;
}

.feature-card h2 {
    margin-bottom: 1rem;
    font-size: 1.35rem;
    text-transform: uppercase;
}

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.amenity-card,
.trek-card,
.form-panel,
.contact-panel,
.tariff-panel,
.legal-content {
    border: 1px solid rgba(219, 228, 223, 0.95);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 32px rgba(15, 36, 48, 0.08);
}

.amenity-card,
.trek-card {
    padding: 1.5rem;
}

.amenity-card i {
    display: inline-grid;
    width: 46px;
    height: 46px;
    margin-bottom: 1rem;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--brand);
    font-size: 1.35rem;
}

.amenity-card h2,
.trek-card h2 {
    font-size: 1.25rem;
}

.amenity-card p,
.tariff-panel p,
.legal-content p,
.activity-card p {
    color: var(--muted);
}

.tariff-panel {
    padding: clamp(1.25rem, 4vw, 2.25rem);
}

.tariff-table {
    min-width: 640px;
    margin-bottom: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.tariff-table thead th {
    color: #fff;
    background: var(--ridge);
    border-color: rgba(255, 255, 255, 0.08);
}

.tariff-table td,
.tariff-table th {
    padding: 1rem;
}

.price-cell {
    color: var(--brand-dark);
    font-size: 1.2rem;
    font-weight: 800;
    text-align: right;
}

.activity-list {
    display: grid;
    gap: 1.5rem;
}

.activity-card {
    display: grid;
    grid-template-columns: minmax(260px, 38%) 1fr;
    gap: 1.5rem;
    align-items: center;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 32px rgba(15, 36, 48, 0.08);
}

.activity-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 6px;
}

.activity-card h2 {
    font-size: clamp(1.45rem, 3vw, 2rem);
}

.gallery-grid {
    columns: 4 240px;
    column-gap: 1rem;
}

.gallery-item {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 1rem;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(15, 36, 48, 0.12);
    cursor: zoom-in;
}

.gallery-item img {
    width: 100%;
    display: block;
}

.gallery-item span {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 0.9rem;
    color: #fff;
    font-size: 0.86rem;
    font-weight: 700;
    text-align: left;
    background: linear-gradient(180deg, transparent, rgba(15, 36, 48, 0.82));
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 2rem;
    background: rgba(4, 18, 28, 0.92);
}

.lightbox[hidden] {
    display: none;
}

.lightbox img {
    max-width: min(1100px, 92vw);
    max-height: 78vh;
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
}

.lightbox p {
    margin: 1rem 0 0;
    color: #fff;
    font-weight: 700;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: var(--brand);
}

.form-panel,
.contact-panel,
.legal-content {
    padding: clamp(1.25rem, 4vw, 2rem);
}

.form-control {
    min-height: 46px;
    border-color: var(--line);
    border-radius: 6px;
}

.form-control:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 0.2rem rgba(248, 118, 24, 0.14);
}

.contact-list {
    display: grid;
    gap: 0.85rem;
    padding: 0;
    margin: 1.5rem 0 0;
    list-style: none;
}

.contact-list li {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    font-weight: 700;
}

.contact-list i {
    color: var(--brand);
}

.contact-intro {
    max-width: 760px;
    margin-bottom: 2rem;
}

.contact-intro h2 {
    max-width: 720px;
    font-size: clamp(2rem, 4vw, 3.15rem);
}

.contact-intro p,
.contact-method-card p,
.contact-method-card address {
    color: var(--muted);
}

.contact-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.contact-method-card {
    display: flex;
    min-height: 280px;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.25rem;
    padding: clamp(1.25rem, 3vw, 1.8rem);
    border: 1px solid rgba(219, 228, 223, 0.95);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(247, 250, 248, 0.96)),
        radial-gradient(circle at top right, rgba(248, 118, 24, 0.12), transparent 36%);
    box-shadow: 0 14px 34px rgba(15, 36, 48, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.contact-method-card:hover {
    transform: translateY(-4px);
    border-color: rgba(248, 118, 24, 0.35);
    box-shadow: var(--shadow);
}

.contact-method-card.address-card {
    background:
        linear-gradient(145deg, rgba(18, 53, 47, 0.94), rgba(15, 36, 48, 0.94)),
        url("../images/main-banner.webp") center / cover;
}

.contact-method-card.address-card h2,
.contact-method-card.address-card .contact-card-kicker,
.contact-method-card.address-card address,
.contact-method-card.address-card .contact-card-action {
    color: #fff;
}

.contact-method-card h2 {
    margin-bottom: 0.7rem;
    font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.contact-method-card address {
    margin-bottom: 0;
    font-style: normal;
}

.contact-icon {
    display: inline-grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--brand);
    font-size: 1.45rem;
    box-shadow: 0 12px 26px rgba(248, 118, 24, 0.26);
}

.contact-icon.whatsapp-icon {
    background: #25d366;
    box-shadow: 0 12px 26px rgba(37, 211, 102, 0.22);
}

.contact-card-kicker {
    margin-bottom: 0.45rem;
    color: var(--brand-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.contact-link-list {
    display: grid;
    gap: 0.35rem;
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 1.05rem;
    font-weight: 800;
}

.contact-card-action {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 0.45rem;
    font-weight: 800;
}

.contact-card-action i {
    transition: transform 180ms ease;
}

.contact-card-action:hover i {
    transform: translate(2px, -2px);
}

.legal-content {
    max-width: 900px;
    margin-inline: auto;
}

.legal-content h2 {
    margin-top: 1.7rem;
    font-size: 1.35rem;
}

.legal-content li {
    margin-bottom: 0.45rem;
    color: var(--muted);
}

.check-list.compact {
    gap: 0.45rem;
    margin: 0;
}

.check-list.compact li {
    color: var(--muted);
    font-weight: 600;
}

.site-footer {
    color: #d8e4df;
    background: var(--ridge);
}

.footer-main {
    border-top: 2px solid var(--brand);
    padding-block: 3rem;
}

.site-footer h2 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.site-footer p,
.site-footer address {
    color: #d8e4df;
}

.footer-links {
    display: grid;
    gap: 0.38rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-footer a {
    color: #f6a15d;
}

.site-footer a:hover {
    color: #fff;
}

.footer-bottom {
    padding-block: 1.1rem;
    border-top: 1px solid rgba(248, 118, 24, 0.35);
    background: #111;
    color: #f8fafc;
    font-size: 0.82rem;
}

.floating-actions {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 1040;
    display: grid;
    gap: 0.7rem;
}

.float-action {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.22);
}

.float-action:hover {
    color: #fff;
    transform: translateY(-2px);
}

.float-action.whatsapp {
    background: #25d366;
}

.float-action.call {
    background: var(--brand);
}

.placeholder-page {
    min-height: 62vh;
    background: var(--snow);
}

.placeholder-panel {
    max-width: 760px;
    padding: clamp(2rem, 5vw, 3rem);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.placeholder-panel h1 {
    font-size: clamp(2rem, 4vw, 3.3rem);
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        padding: 0.75rem 0 1rem;
    }

    .nav-link {
        border-top: 1px solid var(--line);
    }

    .hero-section {
        min-height: 64vh;
        background-attachment: scroll;
    }

    .amenity-grid,
    .activity-card {
        grid-template-columns: 1fr;
    }

    .contact-card-grid {
        grid-template-columns: 1fr;
    }

    .activity-card img {
        max-height: 340px;
    }
}

@media (max-width: 575.98px) {
    .navbar {
        min-height: 66px;
    }

    .navbar-brand img {
        width: 168px;
    }

    .booking-marquee {
        font-size: 0.82rem;
    }

    .hero-content {
        max-width: 100%;
        padding-block: 5.25rem;
    }

    .hero-kicker {
        width: min(100%, 330px);
        margin-inline: auto;
        font-size: 0.76rem;
        line-height: 1.45;
    }

    .hero-section h1 {
        width: min(100%, 350px);
        margin-inline: auto;
        font-size: clamp(2.05rem, 9vw, 2.35rem);
        line-height: 1.12;
    }

    .section-tag {
        font-size: 0.7rem;
    }

    .page-hero {
        min-height: 30vh;
        padding-block: 3.5rem;
    }

    .price-cell {
        text-align: left;
    }

    .contact-intro {
        margin-bottom: 1.5rem;
    }

    .contact-method-card {
        min-height: 240px;
    }

    .intro-photo::before {
        inset: 0.8rem -0.45rem -0.45rem 0.8rem;
    }

    .floating-actions {
        right: 0.85rem;
        bottom: 0.85rem;
    }

    .float-action {
        width: 48px;
        height: 48px;
    }
}
