:root {
    --caribe-pearl-bg: #FAFAF7;
    --caribe-abyss-ink: #1F2421;
    --caribe-coral-accent: #D46A43;
    --caribe-coconut-cream: #F0EDE6;
    --caribe-ocean-tone: #2E5B5E;
    --caribe-soft-shadow: 0 4px 20px rgba(31, 36, 33, 0.06);

    --font-display: 'Playfair Display', serif;
    --font-body: 'Lora', serif;
}

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

body.litoral-body-wrap {
    background-color: var(--caribe-pearl-bg);
    color: var(--caribe-abyss-ink);
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.75;
    overflow-x: hidden;
}

/* Scroll-driven Progress Bar */
@keyframes progress-grow {
    to { width: 100%; }
}

.editorial-scroll-track {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0;
    background-color: var(--caribe-coral-accent);
    z-index: 10000;
    animation: progress-grow linear;
    animation-timeline: scroll();
}

/* Scroll Reveal */
@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    animation: slide-up 0.5s ease-out both;
    animation-timeline: view();
    animation-range: entry 10% entry 40%;
}

/* Shared Container Chamber */
.editorial-chamber {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* HEADER STYLE - MAGAZINE EDITORIAL STYLE */
.litoral-masthead {
    background-color: var(--caribe-pearl-bg);
    border-bottom: 1px solid var(--caribe-coconut-cream);
    position: sticky;
    top: 0;
    z-index: 999;
}

.litoral-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    padding-bottom: 24px;
}

.litoral-logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--caribe-abyss-ink);
}

.litoral-logo-icon {
    width: 40px;
    height: 40px;
    color: var(--caribe-coral-accent);
}

.litoral-brand-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.litoral-nav-deck {
    display: flex;
    gap: 32px;
}

.litoral-nav-item {
    font-family: var(--font-display);
    color: var(--caribe-abyss-ink);
    text-decoration: none;
    font-size: 1.05rem;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s;
}

.litoral-nav-item:hover,
.litoral-nav-item.active {
    color: var(--caribe-coral-accent);
}

.litoral-nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--caribe-coral-accent);
}

/* Hamburger CSS-Only styling */
.litoral-hamburger-checkbox {
    display: none;
}

.litoral-hamburger-trigger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.litoral-hamburger-trigger span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--caribe-abyss-ink);
    transition: 0.3s;
}

/* HERO SPLIT SECTION (PRESET E) */
.litoral-hero-split {
    display: flex;
    min-height: 80vh;
    border-bottom: 1px solid var(--caribe-coconut-cream);
}

.litoral-hero-accent-bar {
    width: 10%;
    background-color: var(--caribe-ocean-tone);
    display: flex;
    align-items: center;
    justify-content: center;
}

.litoral-vertical-word {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: var(--caribe-pearl-bg);
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 4px;
    font-weight: 700;
}

.litoral-hero-canvas {
    width: 90%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 8dvh 5%;
}

.litoral-hero-text-plate {
    background-color: rgba(250, 250, 247, 0.95);
    padding: 48px;
    max-width: 650px;
    border-radius: 12px;
    border: 1px solid var(--caribe-coconut-cream);
}

.litoral-upper-kicker {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--caribe-coral-accent);
    margin-bottom: 16px;
}

.litoral-heading-heavy {
    font-family: var(--font-display);
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--caribe-abyss-ink);
    margin-bottom: 24px;
}

.litoral-lead-paragraph {
    font-size: 1.15rem;
    margin-bottom: 32px;
    color: #4A4A4A;
}

.litoral-cta-holder {
    display: flex;
    gap: 16px;
}

.litoral-btn-core {
    background-color: var(--caribe-coral-accent);
    color: white;
    padding: 14px 28px;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    border-radius: 12px;
    transition: background 0.3s, transform 0.2s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.litoral-btn-core:hover {
    background-color: var(--caribe-ocean-tone);
    transform: translateY(-2px);
}

/* BLOCKQUOTE BANNER */
.litoral-pullquote-strip {
    padding: 10dvh 0;
    background-color: var(--caribe-coconut-cream);
    text-align: center;
}

.litoral-quotes-body {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.85rem;
    line-height: 1.5;
    color: var(--caribe-ocean-tone);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
}

.litoral-quotes-body::before {
    content: "“";
    font-size: 5rem;
    position: absolute;
    left: 0;
    top: -30px;
    color: var(--caribe-coral-accent);
    opacity: 0.3;
}

/* ASYMMETRIC CONTENT SECTIONS */
.litoral-asymmetric-split {
    padding: 16dvh 0;
}

.litoral-split-inner {
    display: flex;
    align-items: center;
    gap: 80px;
}

.litoral-split-visual {
    width: 45%;
}

.litoral-split-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--caribe-coconut-cream);
}

.litoral-split-words {
    width: 55%;
}

.litoral-split-heading {
    font-family: var(--font-display);
    font-size: 2.3rem;
    line-height: 1.3;
    margin-bottom: 24px;
}

.litoral-split-text {
    margin-bottom: 20px;
    color: #4A4A4A;
}

.litoral-text-link {
    font-family: var(--font-display);
    color: var(--caribe-coral-accent);
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-top: 12px;
    transition: gap 0.3s;
}

.litoral-text-link:hover {
    color: var(--caribe-ocean-tone);
}

.litoral-reverse-split .litoral-split-inner {
    flex-direction: row-reverse;
}

/* BENTO FEATURE GRID */
.litoral-bento-spread {
    padding: 16dvh 0;
    background-color: #FAFAF7;
}

.litoral-section-kicker {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--caribe-coral-accent);
    margin-bottom: 12px;
}

.litoral-bento-title {
    font-family: var(--font-display);
    font-size: 2.4rem;
    margin-bottom: 48px;
}

.litoral-bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.litoral-bento-card-main {
    grid-row: span 2;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    min-height: 450px;
    display: flex;
    align-items: flex-end;
    padding: 48px;
    color: white;
}

.litoral-bento-main-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.litoral-card-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    opacity: 0.4;
    line-height: 1;
}

.litoral-bento-card-main h3 {
    font-family: var(--font-display);
    font-size: 2rem;
}

.litoral-bento-card-sub {
    background-color: var(--caribe-coconut-cream);
    border-top: 4px solid var(--caribe-coral-accent);
    padding: 40px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}

.litoral-bento-sub-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.litoral-card-icon {
    width: 32px;
    height: 32px;
    color: var(--caribe-coral-accent);
}

.litoral-bento-card-sub h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
}

/* HOW IT WORKS / STEPS */
.litoral-steps-section {
    padding: 16dvh 0;
    background-color: var(--caribe-coconut-cream);
}

.litoral-steps-heading {
    font-family: var(--font-display);
    font-size: 2.4rem;
    margin-bottom: 64px;
}

.litoral-steps-row {
    display: flex;
    gap: 48px;
}

.litoral-step-box {
    flex: 1;
    position: relative;
    padding-top: 48px;
    border-top: 1px solid rgba(31, 36, 33, 0.1);
}

.litoral-step-giant {
    position: absolute;
    top: -40px;
    left: 0;
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    opacity: 0.15;
    color: var(--caribe-coral-accent);
}

.litoral-step-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.litoral-step-desc {
    color: #4A4A4A;
}

/* CALL TO ACTION ACCENT STRIP */
.litoral-call-strip {
    padding: 14dvh 0;
    background-color: var(--caribe-pearl-bg);
}

.litoral-call-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid var(--caribe-coconut-cream);
    padding: 64px;
    border-radius: 12px;
    background-color: var(--caribe-coconut-cream);
    box-shadow: var(--caribe-soft-shadow);
}

.litoral-call-tag {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--caribe-ocean-tone);
    margin-bottom: 16px;
    display: block;
}

.litoral-call-title {
    font-family: var(--font-display);
    font-size: 2.4rem;
    margin-bottom: 24px;
}

.litoral-call-text {
    font-size: 1.15rem;
    margin-bottom: 32px;
    color: #4A4A4A;
}

.litoral-btn-plain {
    border: 2px solid var(--caribe-coral-accent);
    color: var(--caribe-coral-accent);
    background: transparent;
    padding: 12px 28px;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    border-radius: 12px;
    display: inline-block;
    transition: background 0.3s, color 0.3s;
}

.litoral-btn-plain:hover {
    background-color: var(--caribe-coral-accent);
    color: white;
}

/* EXPERT & STATS PAGE STYLING */
.litoral-stats-strip {
    background-color: var(--caribe-ocean-tone);
    color: white;
    padding: 60px 0;
}

.litoral-stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.litoral-stat-unit {
    display: flex;
    flex-direction: column;
}

.litoral-stat-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--caribe-coral-accent);
}

.litoral-stat-lbl {
    font-size: 1rem;
    letter-spacing: 1px;
}

/* BOOKING & INFO STYLING (RESERVE) */
.litoral-info-row-top {
    padding-top: 80px;
    padding-bottom: 40px;
}

.litoral-three-card-row {
    display: flex;
    gap: 32px;
}

.litoral-feature-vertical {
    flex: 1;
    background-color: var(--caribe-coconut-cream);
    padding: 32px;
    border-radius: 12px;
    border-top: 4px solid var(--caribe-ocean-tone);
}

.litoral-num-bullet {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--caribe-coral-accent);
    color: white;
    text-align: center;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 16px;
}

.litoral-feature-vertical h5 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.litoral-form-section {
    padding: 10dvh 0;
}

.litoral-form-holder {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--caribe-coconut-cream);
    padding: 56px;
    border-radius: 12px;
    border: 1px solid var(--caribe-coconut-cream);
}

.litoral-form-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.litoral-form-subtitle {
    margin-bottom: 32px;
    color: #4A4A4A;
}

.litoral-booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.litoral-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.litoral-input-group label {
    font-size: 0.95rem;
    font-weight: 700;
}

.litoral-input-group input,
.litoral-input-group textarea {
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(31, 36, 33, 0.2);
    font-family: var(--font-body);
    font-size: 1rem;
    width: 100%;
    background-color: var(--caribe-pearl-bg);
}

.litoral-checkbox-group {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.litoral-checkbox-group input {
    margin-top: 4px;
}

.litoral-checkbox-group label {
    font-size: 0.9rem;
    color: #4A4A4A;
}

.litoral-checkbox-group a {
    color: var(--caribe-coral-accent);
}

.litoral-contact-mail-box {
    margin-top: 32px;
    text-align: center;
    font-size: 0.95rem;
}

.litoral-mail-link {
    color: var(--caribe-coral-accent);
    font-weight: 700;
}

/* FAQ SECTION */
.litoral-faq-section {
    padding: 10dvh 0;
    background-color: var(--caribe-pearl-bg);
}

.litoral-faq-heading {
    font-family: var(--font-display);
    font-size: 2.4rem;
    margin-bottom: 40px;
}

.litoral-faq-accordion {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.litoral-faq-item {
    background-color: var(--caribe-coconut-cream);
    padding: 24px;
    border-radius: 12px;
}

.litoral-faq-question {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    outline: none;
}

.litoral-faq-question::-webkit-details-marker {
    display: none;
}

.litoral-faq-answer {
    margin-top: 16px;
    color: #4A4A4A;
}

/* GENERAL UTILITY PAGES (PRIVACY, TERMS, THANK) */
.litoral-utility-page {
    padding: 12dvh 0;
    min-height: 80vh;
}

.litoral-utility-heading {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 12px;
}

.litoral-utility-date {
    font-style: italic;
    color: #4A4A4A;
    margin-bottom: 48px;
}

.litoral-utility-content {
    margin-bottom: 48px;
}

.litoral-utility-content h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 16px;
    margin-top: 32px;
}

.litoral-utility-content p {
    margin-bottom: 16px;
    color: #4A4A4A;
}

.litoral-thank-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    background-color: rgba(250,250,247,0.95);
    padding: 64px;
    border-radius: 12px;
    box-shadow: var(--caribe-soft-shadow);
}

.litoral-thank-icon {
    width: 64px;
    height: 64px;
    color: var(--caribe-coral-accent);
    margin-bottom: 24px;
}

.litoral-thank-text {
    margin-bottom: 24px;
}

.litoral-thank-action-wrap {
    margin-top: 32px;
}

/* FOOTER SECTION */
.litoral-footer {
    background-color: var(--caribe-abyss-ink);
    color: rgba(250, 250, 247, 0.85);
    padding: 80px 0 40px;
}

.litoral-footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
    border-bottom: 1px solid rgba(250, 250, 247, 0.1);
    padding-bottom: 48px;
}

.litoral-footer-brand-side {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.text-white {
    color: white;
}

.litoral-footer-tagline {
    font-size: 0.95rem;
    opacity: 0.7;
}

.litoral-footer-links-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.litoral-footer-link {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.litoral-footer-link:hover {
    color: var(--caribe-coral-accent);
}

.litoral-footer-disclaimer {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(250, 250, 247, 0.1);
    padding-bottom: 32px;
    line-height: 1.5;
}

.litoral-footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    opacity: 0.5;
}

/* COOKIE BANNER STYLE */
.litoral-cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background-color: var(--caribe-abyss-ink);
    color: white;
    padding: 24px;
    border-radius: 12px;
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.litoral-cookie-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.litoral-cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
}

.litoral-cookie-buttons {
    display: flex;
    gap: 16px;
}

.litoral-cookie-btn-accept {
    background-color: var(--caribe-coral-accent);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
}

.litoral-cookie-btn-decline {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(250,250,247,0.4);
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
}

/* RESPONSIVE DESIGN BREAKPOINTS */
@media (max-width: 1024px) {
    .litoral-split-inner {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* Header & Nav */
    .litoral-hamburger-trigger {
        display: flex;
    }

    .litoral-nav-deck {
        position: fixed;
        top: 89px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 89px);
        background-color: var(--caribe-pearl-bg);
        flex-direction: column;
        align-items: center;
        padding-top: 60px;
        gap: 40px;
        transition: 0.4s;
        border-top: 1px solid var(--caribe-coconut-cream);
    }

    .litoral-hamburger-checkbox:checked ~ .litoral-nav-deck {
        left: 0;
    }

    .litoral-hamburger-checkbox:checked ~ .litoral-hamburger-trigger span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .litoral-hamburger-checkbox:checked ~ .litoral-hamburger-trigger span:nth-child(2) {
        opacity: 0;
    }

    .litoral-hamburger-checkbox:checked ~ .litoral-hamburger-trigger span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Hero */
    .litoral-hero-split {
        flex-direction: column;
    }

    .litoral-hero-accent-bar {
        width: 100%;
        padding: 12px 0;
    }

    .litoral-vertical-word {
        writing-mode: horizontal-tb;
    }

    .litoral-hero-canvas {
        width: 100%;
    }

    .litoral-hero-text-plate {
        padding: 30px;
    }

    .litoral-heading-heavy {
        font-size: 2.1rem;
    }

    /* Split Sections */
    .litoral-split-inner {
        flex-direction: column !important;
    }

    .litoral-split-visual,
    .litoral-split-words {
        width: 100%;
    }

    .litoral-split-img {
        height: 320px;
    }

    /* Bento Grid */
    .litoral-bento-grid {
        grid-template-columns: 1fr;
    }

    .litoral-bento-card-main {
        min-height: 350px;
        padding: 30px;
    }

    /* Steps */
    .litoral-steps-row {
        flex-direction: column;
        gap: 60px;
    }

    /* stats */
    .litoral-stats-grid {
        flex-direction: column;
        gap: 40px;
    }

    /* Three Card reserve */
    .litoral-three-card-row {
        flex-direction: column;
    }

    .litoral-form-holder {
        padding: 30px;
    }

    /* Footer */
    .litoral-footer-grid {
        flex-direction: column;
        gap: 40px;
    }

    /* Cookie */
    .litoral-cookie-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}