        /* --- RESET & DESIGN SYSTEM VARIABLES --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --bg-main: #EDE9E6;
            --bg-secondary: #FFFFFF;
            --color-footer: #000000;
            --color-text: #000000;
            --color-white: #FFFFFF;
            --font-editorial: 'Libre Baskerville', serif;
        }

        body {
            background-color: var(--bg-main);
            color: var(--color-text);
            font-family: var(--font-editorial);
            line-height: 1.8;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* --- TYPOGRAPHY --- */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }

        p {
            font-weight: 400;
            font-size: 1.05rem;
            margin-bottom: 1.5rem;
            color: rgba(0, 0, 0, 0.85);
        }

        .text-link {
            display: inline-block;
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--color-text);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-top: 1rem;
            cursor: pointer;
            transition: opacity 0.3s;
        }

        .text-link:hover {
            opacity: 0.6;
        }

        /* --- STICKY HEADER & NAVIGATION --- */
        header {
            position: sticky;
            top: 0;
            width: 100%;
            height: 90px;
            background-color: var(--bg-main);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 4rem;
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }

.logo{
    display:flex;
    align-items:center;
    text-decoration:none;
    cursor:pointer;
}

.logo img{
    height:248px; /* Adjust as needed */
    width:auto;
    display:block;
    object-fit:contain;
}
        /* Desktop Nav Links */
        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .nav-links a {
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--color-text);
            text-decoration: none;
            position: relative;
            padding-bottom: 6px;
            cursor: pointer;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--color-text);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Mobile Menu Mechanism */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 1002;
        }

        .hamburger span {
            width: 28px;
            height: 2px;
            background-color: var(--color-text);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* Hamburger Animation Active State */
        .hamburger.active span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        @media (max-width: 992px) {
            header {
                padding: 0 2rem;
            }
            .hamburger {
                display: flex;
            }
            .nav-links {
                position: fixed;
                top: 90px;
                right: -100%;
                width: 100%;
                height: calc(100vh - 90px);
                background-color: var(--bg-main);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 3.5rem;
                transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
                z-index: 1001;
                border-top: 1px solid rgba(0, 0, 0, 0.05);
            }
            .nav-links.active {
                right: 0;
            }
            .nav-links a {
                font-size: 1.4rem;
            }
        }

        /* --- DYNAMIC PAGES ROUTING --- */
        .page {
            display: none;
        }
        .active-page {
            display: block;
        }

        /* --- HOME PAGE SECTIONS --- */
        
        /* HERO SECTION */
        .hero {
            background-color: var(--bg-main);
            height: 110vh;
            width: 100%;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .hero-card {
            width: 70%;
            height: 70vh;
            position: relative;
            background-image: url('https://i.pinimg.com/736x/b9/17/fd/b917fdc63744ad30426969f6d5402ce8.jpg');
            background-size: cover;
            background-position: center;
        }

        .hero-overlay-text {
            position: absolute;
            top: 2rem;
            left: 5rem;
            color: var(--color-text);
            font-size: 7.2rem;
            font-weight: 700;
            letter-spacing: -1px;
            line-height: 1;
        }

        .hero-bottom-text-wrapper {
            width: 70%;
            text-align: right;
            margin-top: 2rem;
            position: relative;
        }

        .hero-outline-text {
            font-size: 7.5rem;
            font-weight: 700;
            color: transparent;
            -webkit-text-stroke: 2px var(--color-text);
            line-height: 0.9;
            text-transform: uppercase;
            display: inline-block;
            white-space: nowrap;
            transform: translateX(10%);
        }

        @media (max-width: 992px) {
            .hero { height: auto; padding-bottom: 4rem; }
            .hero-card { width: 90%; height: 50vh; }
            .hero-overlay-text { font-size: 1.6rem; top: 1.5rem; left: 1.5rem; }
            .hero-bottom-text-wrapper { width: 90%; text-align: center; }
            .hero-outline-text { font-size: 3.8rem; transform: none; }
        }

        /* SECTION 2: EXPLORE THE COLLECTION */
        .explore-collection {
            background-color: var(--bg-secondary);
            padding: 8rem 4rem;
        }

        .filter-bar {
            display: flex;
            justify-content: center;
            gap: 2.5rem;
            margin-bottom: 6rem;
            flex-wrap: wrap;
        }

        .filter-btn {
            font-family: var(--font-editorial);
            font-size: 0.9rem;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: none;
            border: none;
            color: rgba(0,0,0,0.4);
            cursor: pointer;
            padding-bottom: 6px;
            position: relative;
            transition: color 0.3s ease;
        }

        .filter-btn::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--color-text);
            transition: width 0.3s ease;
        }

        .filter-btn.active, .filter-btn:hover {
            color: var(--color-text);
        }

        .filter-btn.active::after {
            width: 100%;
        }

        .destination-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 6rem 4rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .destination-card {
            display: flex;
            flex-direction: column;
            transition: opacity 0.4s ease, transform 0.4s ease;
        }

        /* Card hides smoothly if filtered out */
        .destination-card.hidden {
            display: none;
        }

        .card-img-wrapper {
            width: 100%;
            height: 550px;
            overflow: hidden;
            margin-bottom: 2rem;
            background-color: #f0f0f0;
        }

        .card-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .destination-card:hover .card-img-wrapper img {
            transform: scale(1.03);
        }

        .destination-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .destination-card p {
            max-width: 90%;
            margin-bottom: 1rem;
        }

        @media (max-width: 992px) {
            .explore-collection { padding: 4rem 2rem; }
            .filter-bar { margin-bottom: 3rem; gap: 1.5rem; }
            .destination-grid { grid-template-columns: 1fr; gap: 4rem; }
            .card-img-wrapper { height: 380px; }
        }

        /* SECTIONS 3 & 4: FEATURE STORIES SECTION LAYOUT */
        .feature-story-section {
            background-color: var(--bg-main);
            padding: 8rem 4rem;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }

        .feature-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            gap: 6rem;
        }

        .feature-left {
            width: 45%;
            display: flex;
            flex-direction: column;
        }

        .feature-left h2 {
            font-size: 3rem;
            line-height: 1.1;
            margin-bottom: 3rem;
            max-width: 90%;
        }

        .feature-square-card {
            width: 100%;
            aspect-ratio: 1 / 1;
            background-size: cover;
            background-position: center;
        }

        .feature-right {
            width: 55%;
            padding-top: 6rem;
        }

        .feature-right p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            text-align: justify;
            color: rgba(0, 0, 0, 0.8);
        }

        @media (max-width: 992px) {
            .feature-story-section { padding: 4rem 2rem; }
            .feature-container { flex-direction: column; gap: 3rem; }
            .feature-left, .feature-right { width: 100%; }
            .feature-left h2 { font-size: 2.2rem; margin-bottom: 1.5rem; }
            .feature-right { padding-top: 0; }
        }


        /* --- TEMPLATE LAYOUT: DESTINATION SINGLE CHANNELS --- */
        .destination-hero {
            width: 100%;
            height: 75vh;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .page-editorial-wrap {
            max-width: 900px;
            margin: 0 auto;
            padding: 6rem 2rem;
        }

        .page-editorial-wrap h1 {
            font-size: 4rem;
            line-height: 1.1;
            margin-bottom: 2rem;
            text-align: center;
        }

        .editorial-intro {
            font-size: 1.4rem;
            line-height: 1.6;
            font-style: italic;
            text-align: center;
            margin-bottom: 4rem;
            color: rgba(0,0,0,0.7);
        }

        .editorial-body-section {
            margin-bottom: 5rem;
        }

        .editorial-body-section h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            border-bottom: 1px solid rgba(0,0,0,0.1);
            padding-bottom: 0.5rem;
        }

        .editorial-photo-block {
            width: 100%;
            height: 500px;
            background-size: cover;
            background-position: center;
            margin: 3rem 0;
        }

        .editorial-quote {
            border-top: 2px solid var(--color-text);
            border-bottom: 2px solid var(--color-text);
            padding: 3rem 1rem;
            margin: 4rem 0;
            text-align: center;
        }

        .editorial-quote blockquote {
            font-size: 1.8rem;
            font-weight: 700;
            line-height: 1.4;
        }

        .related-destinations-section {
            border-top: 1px solid rgba(0,0,0,0.1);
            padding-top: 4rem;
            margin-top: 6rem;
        }

        .related-destinations-section h4 {
            font-size: 1.4rem;
            margin-bottom: 2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .related-flex {
            display: flex;
            gap: 2.5rem;
        }

        .related-item {
            width: 50%;
            cursor: pointer;
        }

        .related-item-thumb {
            width: 100%;
            height: 250px;
            background-size: cover;
            background-position: center;
            margin-bottom: 1rem;
        }

        @media (max-width: 768px) {
            .page-editorial-wrap h1 { font-size: 2.5rem; }
            .editorial-photo-block { height: 300px; }
            .editorial-quote blockquote { font-size: 1.3rem; }
            .related-flex { flex-direction: column; }
            .related-item { width: 100%; }
        }

        /* --- CONTACT PAGE LAYOUT --- */
        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 8rem 4rem;
            display: flex;
            gap: 6rem;
        }

        .contact-left {
            width: 40%;
        }

        .contact-left h1 {
            font-size: 3.5rem;
            line-height: 1.1;
            margin-bottom: 2rem;
        }

        .contact-right {
            width: 60%;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 3rem;
        }

        .form-row {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-row label {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 700;
        }

        .form-row input, .form-row textarea {
            background: transparent;
            border: none;
            border-bottom: 1px solid var(--color-text);
            padding: 0.8rem 0;
            font-family: var(--font-editorial);
            font-size: 1.1rem;
            outline: none;
            color: var(--color-text);
        }

        .form-row textarea {
            height: 150px;
            resize: none;
        }

        .form-submit-btn {
            align-self: flex-start;
            background-color: var(--color-text);
            color: var(--color-white);
            border: none;
            padding: 1.2rem 3.5rem;
            font-family: var(--font-editorial);
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: opacity 0.3s;
        }

        .form-submit-btn:hover {
            opacity: 0.8;
        }

        @media (max-width: 992px) {
            .contact-container { flex-direction: column; padding: 4rem 2rem; gap: 3rem; }
            .contact-left, .contact-right { width: 100%; }
            .contact-left h1 { font-size: 2.5rem; }
        }

        /* --- LEGAL / PRIVACY & TERMS --- */
        .legal-wrapper {
            max-width: 800px;
            margin: 0 auto;
            padding: 8rem 2rem;
        }

        .legal-wrapper h1 {
            font-size: 3.5rem;
            margin-bottom: 4rem;
            text-align: center;
        }

        .legal-block {
            margin-bottom: 3.5rem;
        }

        .legal-block h2 {
            font-size: 1.6rem;
            margin-bottom: 1.2rem;
        }

        .legal-block p {
            text-align: justify;
            color: rgba(0,0,0,0.8);
        }

        /* --- FOOTER LAYOUT --- */
        footer {
            background-color: var(--color-footer);
            color: var(--color-white);
            padding: 6rem 4rem 3rem 4rem;
        }

        .footer-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr repeat(3, 1fr);
            gap: 4rem;
            margin-bottom: 5rem;
        }

        .footer-column h3, .footer-column h4 {
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1.8rem;
            color: var(--color-white);
        }

        .footer-column p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .footer-column ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-column ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.95rem;
            cursor: pointer;
            transition: color 0.3s;
        }

        .footer-column ul li a:hover {
            color: var(--color-white);
        }

        .footer-divider {
            border: none;
            border-top: 1px solid rgba(255,255,255,0.15);
            margin-bottom: 2.5rem;
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.5);
        }

        @media (max-width: 992px) {
            footer { padding: 4rem 2rem 2rem 2rem; }
            .footer-grid { grid-template-columns: 1fr; gap: 3rem; margin-bottom: 3rem; }
            .footer-column h4 { margin-bottom: 1rem; }
            .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
        }
        .newsletter-form{
    display:flex;
    flex-direction:column;
    gap:0.75rem;
    margin-top:1rem;
}

.newsletter-form input{
    width:100%;
    padding:0.9rem 1rem;
    border:1px solid rgba(255,255,255,0.15);
    background:transparent;
    color:inherit;
    outline:none;
    border-radius:4px;
    font-size:0.9rem;
}

.newsletter-buttons{
    display:flex;
    gap:0.75rem;
    flex-wrap:wrap;
}

.newsletter-buttons button{
    padding:0.8rem 1.1rem;
    border:none;
    cursor:pointer;
    border-radius:4px;
    font-size:0.85rem;
    transition:0.3s;
}

.newsletter-buttons button[type="submit"]{
    background:#ffffff;
    color:#111;
}

.newsletter-buttons button[type="button"]{
    background:transparent;
    border:1px solid rgba(255,255,255,0.3);
    color:inherit;
}

.newsletter-buttons button:hover{
    transform:translateY(-2px);
}

#newsletterStatus{
    margin-top:0.75rem;
    font-size:0.85rem;
    min-height:20px;
}
