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

        :root {
            --sand: #F5F0E8;
            --deep-marsh: #1B2B1F;
            --tide: #3D6B5E;
            --salt: #FFFFFF;
            --driftwood: #8B7355;
            --foam: #E8E0D0;
            --spanish-moss: #A8B5A0;
            --sunset: #D4956A;
            --success: #27AE60;
            --danger: #C0392B;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: var(--sand);
            color: var(--deep-marsh);
            overflow-x: hidden;
        }

        /* NAV */
        .nav-bar {
            position: absolute;
            top: 0; left: 0; right: 0;
            padding: 28px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 10;
        }

        .logo {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--salt);
            letter-spacing: -0.02em;
            text-decoration: none;
        }
        .logo span { color: var(--spanish-moss); font-weight: 500; }

        .nav-links {
            display: flex;
            gap: 24px;
            align-items: center;
        }
        .nav-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            transition: color 0.15s;
        }
        .nav-links a:hover { color: var(--salt); }

        /* HERO */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 120px 40px 80px;
            position: relative;
            background-color: var(--deep-marsh);
            background-image: linear-gradient(165deg, var(--deep-marsh) 0%, #2A4535 45%, var(--tide) 100%);
            background-size: cover;
            background-position: center right;
            background-repeat: no-repeat;
            color: var(--salt);
            text-align: center;
            overflow: hidden;
        }

        .hero.has-photo {
            background-image: none; /* photo set via inline style */
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background:
                linear-gradient(105deg, rgba(27, 43, 31, 0.72) 0%, rgba(27, 43, 31, 0.45) 42%, rgba(27, 43, 31, 0.28) 100%),
                linear-gradient(180deg, rgba(27, 43, 31, 0.35) 0%, transparent 35%, rgba(27, 43, 31, 0.45) 100%);
            pointer-events: none;
            z-index: 0;
        }

        .hero .site-nav-bar,
        .hero-content {
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 1100px;
        }

        .hero-content {
            max-width: 720px;
            margin-left: auto;
            margin-right: 0;
            text-align: left;
            padding-right: 2%;
        }

        @media (max-width: 768px) {
            .hero-content {
                margin-right: auto;
                text-align: center;
                padding-right: 0;
            }
            .hero {
                background-position: 30% center;
            }
        }

        .hero-badge {
            display: inline-block;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--sunset);
            margin-bottom: 28px;
            padding: 8px 20px;
            border: 1px solid rgba(212, 149, 106, 0.4);
            border-radius: 4px;
        }

        .hero h1 {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(2.6rem, 6vw, 4.5rem);
            line-height: 1.08;
            font-weight: 400;
            margin-bottom: 28px;
            letter-spacing: -0.02em;
        }
        .hero h1 em {
            font-style: italic;
            color: var(--sunset);
        }

        .hero-sub {
            font-size: 1.15rem;
            line-height: 1.7;
            color: rgba(255,255,255,0.7);
            max-width: 600px;
            margin: 0 auto 48px;
        }

        .scroll-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 36px;
            background: var(--sunset);
            color: var(--salt);
            border-radius: 10px;
            font-size: 0.95rem;
            font-weight: 600;
            text-decoration: none;
            transition: transform 0.15s, background 0.15s;
            border: none;
            cursor: pointer;
            font-family: inherit;
        }
        .scroll-cta:hover { transform: translateY(-2px); background: #C8854F; }
        .scroll-cta svg { width: 18px; height: 18px; }

        /* INCENTIVES */
        .incentives {
            padding: 100px 40px;
            background: var(--salt);
        }

        .incentives-inner {
            max-width: 1000px;
            margin: 0 auto;
        }

        .section-label {
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--driftwood);
            margin-bottom: 16px;
            text-align: center;
        }

        .incentives h2 {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(1.6rem, 3.5vw, 2.4rem);
            font-weight: 400;
            line-height: 1.3;
            color: var(--deep-marsh);
            text-align: center;
            margin-bottom: 60px;
        }

        .incentive-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .incentive-card {
            background: var(--sand);
            border-radius: 16px;
            padding: 36px 28px;
            text-align: center;
            border: 1px solid var(--foam);
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .incentive-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(27, 43, 31, 0.08);
        }

        .incentive-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
        }
        .incentive-icon.stay { background: rgba(61, 107, 94, 0.12); }
        .incentive-icon.card { background: rgba(212, 149, 106, 0.15); }
        .incentive-icon.tickets { background: rgba(139, 115, 85, 0.12); }

        .incentive-card h3 {
            font-family: 'DM Serif Display', serif;
            font-size: 1.25rem;
            font-weight: 400;
            margin-bottom: 10px;
            color: var(--deep-marsh);
        }

        .incentive-card p {
            font-size: 0.9rem;
            line-height: 1.6;
            color: #5A6B5E;
        }

        /* HOW IT WORKS */
        .how-it-works {
            padding: 100px 40px;
            background: var(--sand);
        }

        .how-inner {
            max-width: 800px;
            margin: 0 auto;
        }

        .how-it-works h2 {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(1.6rem, 3.5vw, 2.4rem);
            font-weight: 400;
            text-align: center;
            margin-bottom: 60px;
            color: var(--deep-marsh);
        }

        .steps {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .step {
            display: flex;
            gap: 28px;
            padding: 32px 0;
            border-bottom: 1px solid var(--foam);
        }
        .step:last-child { border-bottom: none; }

        .step-num {
            font-family: 'DM Serif Display', serif;
            font-size: 2rem;
            color: var(--sunset);
            opacity: 0.6;
            min-width: 48px;
            line-height: 1;
            padding-top: 2px;
        }

        .step-content h3 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--deep-marsh);
        }
        .step-content p {
            font-size: 0.92rem;
            line-height: 1.7;
            color: #5A6B5E;
        }

        /* FORM SECTION */
        .form-section {
            padding: 100px 40px;
            background: linear-gradient(170deg, #2A4535 0%, var(--deep-marsh) 100%);
            position: relative;
        }

        .form-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: radial-gradient(ellipse 50% 60% at 50% 100%, rgba(212, 149, 106, 0.12) 0%, transparent 60%);
            pointer-events: none;
        }

        .form-inner {
            max-width: 640px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .form-section h2 {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(1.8rem, 4vw, 2.6rem);
            font-weight: 400;
            color: var(--salt);
            text-align: center;
            margin-bottom: 12px;
        }
        .form-section h2 em {
            font-style: italic;
            color: var(--sunset);
        }

        .form-subtitle {
            text-align: center;
            color: rgba(255,255,255,0.6);
            font-size: 1rem;
            margin-bottom: 48px;
            line-height: 1.6;
        }

        .lead-form {
            background: var(--salt);
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 16px;
        }
        .form-row.full {
            grid-template-columns: 1fr;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--driftwood);
            letter-spacing: 0.05em;
            text-transform: uppercase;
            margin-bottom: 6px;
        }

        .form-group label .required {
            color: var(--sunset);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 12px 16px;
            border: 1px solid var(--foam);
            border-radius: 8px;
            font-family: inherit;
            font-size: 0.92rem;
            color: var(--deep-marsh);
            background: var(--sand);
            outline: none;
            transition: border-color 0.15s;
        }
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--tide);
        }
        .form-group input::placeholder { color: #A8A090; }

        .form-group textarea {
            resize: vertical;
            min-height: 80px;
        }

        .form-group select {
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238B7355' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6.5 6.5 6.5-6.5'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            padding-right: 36px;
        }

        .incentive-options {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 10px;
            margin-bottom: 16px;
        }

        .incentive-option {
            position: relative;
        }
        .incentive-option input {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }
        .incentive-option label {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 16px 12px;
            border: 2px solid var(--foam);
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.15s;
            text-align: center;
            text-transform: none;
            letter-spacing: 0;
        }
        .incentive-option label .opt-icon {
            font-size: 1.5rem;
            margin-bottom: 6px;
        }
        .incentive-option label .opt-text {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--deep-marsh);
        }
        .incentive-option input:checked + label {
            border-color: var(--tide);
            background: rgba(61, 107, 94, 0.06);
        }

        .submit-btn {
            width: 100%;
            padding: 16px;
            background: var(--tide);
            color: var(--salt);
            border: none;
            border-radius: 10px;
            font-family: inherit;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.15s, transform 0.15s;
            margin-top: 8px;
        }
        .submit-btn:hover { background: #346054; transform: translateY(-1px); }
        .submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .form-note {
            text-align: center;
            font-size: 0.78rem;
            color: var(--driftwood);
            margin-top: 16px;
            line-height: 1.5;
        }

        /* DEPOSIT STEP */
        .deposit-step {
            display: none;
            padding: 8px 0;
        }
        .deposit-step.visible { display: block; }
        .deposit-step h3 {
            font-family: 'DM Serif Display', serif;
            font-size: 1.4rem;
            font-weight: 400;
            margin-bottom: 8px;
            color: var(--deep-marsh);
            text-align: center;
        }
        .deposit-step .deposit-sub {
            font-size: 0.88rem;
            color: #5A6B5E;
            text-align: center;
            margin-bottom: 28px;
            line-height: 1.6;
        }
        .deposit-options {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin-bottom: 16px;
        }
        .deposit-option-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px 16px;
            border: 2px solid var(--foam);
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.15s;
            background: var(--salt);
            font-family: inherit;
        }
        .deposit-option-btn:hover {
            border-color: var(--tide);
            background: rgba(61, 107, 94, 0.04);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(27,43,31,0.08);
        }
        .deposit-option-btn.primary-deposit {
            border-color: var(--tide);
            background: var(--tide);
            color: var(--salt);
        }
        .deposit-option-btn.primary-deposit:hover {
            background: #346054;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(61,107,94,0.25);
        }
        .deposit-option-btn .dep-amount {
            font-family: 'DM Serif Display', serif;
            font-size: 1.8rem;
            font-weight: 400;
            line-height: 1;
            margin-bottom: 4px;
        }
        .deposit-option-btn .dep-label {
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.04em;
            margin-bottom: 6px;
        }
        .deposit-option-btn .dep-note {
            font-size: 0.72rem;
            opacity: 0.75;
            line-height: 1.4;
            text-align: center;
        }
        .deposit-option-btn.primary-deposit .dep-label,
        .deposit-option-btn.primary-deposit .dep-note {
            color: rgba(255,255,255,0.9);
        }
        .deposit-skip-link {
            text-align: center;
            font-size: 0.78rem;
            color: var(--driftwood);
            margin-top: 14px;
        }
        .deposit-skip-link a {
            color: var(--driftwood);
            text-decoration: underline;
            cursor: pointer;
        }
        .deposit-skip-link a:hover { color: var(--deep-marsh); }

        /* SUCCESS STATE */
        .success-state {
            display: none;
            text-align: center;
            padding: 40px 20px;
        }
        .success-state.visible { display: block; }
        .success-check {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: rgba(39, 174, 96, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
        }
        .success-state h3 {
            font-family: 'DM Serif Display', serif;
            font-size: 1.6rem;
            font-weight: 400;
            margin-bottom: 12px;
            color: var(--deep-marsh);
        }
        .success-state p {
            font-size: 0.95rem;
            color: #5A6B5E;
            line-height: 1.6;
        }

        /* ERROR */
        .form-error {
            display: none;
            background: rgba(192, 57, 43, 0.08);
            border: 1px solid rgba(192, 57, 43, 0.2);
            border-radius: 8px;
            padding: 12px 16px;
            margin-bottom: 16px;
            font-size: 0.85rem;
            color: var(--danger);
        }
        .form-error.visible { display: block; }

        /* FAQ */
        .faq {
            padding: 100px 40px;
            background: var(--salt);
        }
        .faq-inner {
            max-width: 700px;
            margin: 0 auto;
        }
        .faq h2 {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(1.6rem, 3.5vw, 2.2rem);
            font-weight: 400;
            text-align: center;
            margin-bottom: 48px;
            color: var(--deep-marsh);
        }
        .faq-item {
            border-bottom: 1px solid var(--foam);
            padding: 24px 0;
        }
        .faq-item:first-child { border-top: 1px solid var(--foam); }
        .faq-q {
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            color: var(--deep-marsh);
        }
        .faq-q::after {
            content: '+';
            font-size: 1.4rem;
            font-weight: 400;
            color: var(--driftwood);
            transition: transform 0.2s;
            flex-shrink: 0;
        }
        .faq-item.open .faq-q::after {
            content: 'âˆ’';
        }
        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        .faq-item.open .faq-a {
            max-height: 200px;
        }
        .faq-a p {
            padding-top: 14px;
            font-size: 0.92rem;
            line-height: 1.7;
            color: #5A6B5E;
        }

        /* FOOTER */
        footer {
            padding: 40px;
            background: var(--deep-marsh);
            border-top: 1px solid rgba(168, 181, 160, 0.1);
            text-align: center;
        }
        footer p {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.3);
        }
        footer a {
            color: rgba(255,255,255,0.4);
            text-decoration: none;
        }
        footer a:hover { color: rgba(255,255,255,0.7); }

        /* TRUST / SOCIAL PROOF */
        .trust-section {
            padding: 80px 40px;
            background: var(--deep-marsh);
            color: var(--salt);
        }
        .trust-inner {
            max-width: 900px;
            margin: 0 auto;
        }
        .trust-stats {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            margin-bottom: 60px;
            background: rgba(255,255,255,0.05);
            border-radius: 16px;
            border: 1px solid rgba(255,255,255,0.08);
            overflow: hidden;
        }
        .trust-stat {
            flex: 1;
            text-align: center;
            padding: 32px 16px;
        }
        .trust-num {
            font-family: 'DM Serif Display', serif;
            font-size: 2.2rem;
            font-weight: 400;
            color: var(--sunset);
            line-height: 1;
            margin-bottom: 6px;
        }
        .trust-label {
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.5);
        }
        .trust-divider {
            width: 1px;
            height: 60px;
            background: rgba(255,255,255,0.1);
            flex-shrink: 0;
        }
        .trust-partners {
            text-align: center;
            margin-bottom: 56px;
        }
        .trust-partners-label {
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.35);
            margin-bottom: 20px;
        }
        .trust-partner-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
        }
        .partner-badge {
            padding: 10px 20px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 100px;
            font-size: 0.85rem;
            font-weight: 500;
            color: rgba(255,255,255,0.7);
        }
        .trust-testimonials {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .testimonial {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 14px;
            padding: 24px 20px;
        }
        .t-quote {
            font-size: 0.9rem;
            line-height: 1.7;
            color: rgba(255,255,255,0.75);
            margin-bottom: 14px;
            font-style: italic;
        }
        .t-author {
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--spanish-moss);
            letter-spacing: 0.04em;
        }

        /* MOBILE */
        @media (max-width: 768px) {
            .nav-bar { padding: 20px 24px; }
            .nav-links { display: none; }
            .hero { padding: 100px 24px 60px; }
            .incentives, .how-it-works, .form-section, .faq { padding: 80px 24px; }
            .trust-section { padding: 60px 24px; }
            .incentive-grid { grid-template-columns: 1fr; gap: 20px; }
            .form-row { grid-template-columns: 1fr; }
            .incentive-options { grid-template-columns: 1fr; }
            .lead-form { padding: 28px 20px; }
            .trust-stats { flex-wrap: wrap; }
            .trust-stat { min-width: 45%; }
            .trust-divider { display: none; }
            .trust-testimonials { grid-template-columns: 1fr; gap: 16px; }
        }

        @media (max-width: 480px) {
            .incentive-options { grid-template-columns: 1fr 1fr 1fr; }
            .incentive-option label { padding: 12px 8px; }
            .incentive-option label .opt-text { font-size: 0.72rem; }
        }
    

/* ── LIT booking shortcode (plugin markup) ── */
.lit-booking { max-width: 560px; margin: 0 auto; background: var(--salt); border-radius: 16px; padding: 36px 32px; box-shadow: 0 8px 32px rgba(27,43,31,0.1); }
.lit-booking__title { font-family: 'DM Serif Display', serif; font-size: 1.75rem; margin-bottom: 8px; color: var(--deep-marsh); }
.lit-booking__sub { color: rgba(27,43,31,0.7); margin-bottom: 24px; font-size: 0.95rem; }
.lit-booking__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.lit-booking__full { display: block; margin-bottom: 14px; }
.lit-booking label span, .lit-booking__label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 6px; color: var(--deep-marsh); }
.lit-booking input, .lit-booking select { width: 100%; padding: 12px 14px; border: 1px solid var(--foam); border-radius: 8px; font: inherit; background: var(--sand); }
.lit-booking__incentives { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
.lit-booking__incentive { display: block; cursor: pointer; }
.lit-booking__incentive input { position: absolute; opacity: 0; pointer-events: none; }
.lit-booking__incentive span { display: block; text-align: center; padding: 14px 8px; border: 2px solid var(--foam); border-radius: 10px; font-size: 0.85rem; font-weight: 600; }
.lit-booking__incentive input:checked + span { border-color: var(--tide); background: rgba(61,107,94,0.08); color: var(--tide); }
.lit-booking__submit { width: 100%; padding: 14px 20px; border: 0; border-radius: 10px; background: var(--sunset); color: #fff; font-weight: 700; font-size: 1rem; cursor: pointer; }
.lit-booking__submit:hover { filter: brightness(1.05); }
.lit-booking__note { margin-top: 12px; font-size: 0.8rem; color: rgba(27,43,31,0.55); text-align: center; }
.lit-booking__error { color: var(--danger); margin-top: 10px; font-size: 0.9rem; }
.lit-booking__deposit { margin-top: 8px; }
.lit-booking__deposit h3 { font-family: 'DM Serif Display', serif; margin-bottom: 8px; }
.lit-booking__deposit-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 20px 0; }
.lit-booking__deposit-btn { display: flex; flex-direction: column; gap: 4px; padding: 18px 14px; border: 2px solid var(--foam); border-radius: 12px; background: var(--sand); cursor: pointer; text-align: left; font: inherit; }
.lit-booking__deposit-btn.is-primary { border-color: var(--tide); background: rgba(61,107,94,0.08); }
.lit-booking__deposit-btn .amt { font-size: 1.5rem; font-weight: 700; color: var(--deep-marsh); }
.lit-booking__deposit-btn .lbl { font-weight: 600; }
.lit-booking__deposit-btn .note { font-size: 0.75rem; color: rgba(27,43,31,0.6); }
.lit-booking__skip-btn { background: none; border: 0; color: var(--tide); text-decoration: underline; cursor: pointer; font: inherit; }
.lit-booking__success { text-align: center; padding: 24px 8px; }
.lit-booking__check { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%; background: var(--success); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.lit-booking-success { max-width: 640px; margin: 80px auto; padding: 40px 24px; text-align: center; }
.site-footer { background: var(--deep-marsh); color: rgba(255,255,255,0.75); padding: 40px 24px; text-align: center; font-size: 0.9rem; }
.site-footer a { color: var(--sunset); }
.site-nav-bar { display: flex; justify-content: space-between; align-items: center; max-width: 1100px; margin: 0 auto 40px; }
.site-nav-bar .logo { font-family: 'DM Serif Display', serif; color: #fff; text-decoration: none; font-size: 1.2rem; }
.site-nav-bar .logo span { color: var(--sunset); }
.site-nav-bar .nav-links a { color: rgba(255,255,255,0.8); text-decoration: none; margin-left: 18px; font-size: 0.9rem; }
@media (max-width: 640px) {
  .lit-booking__row, .lit-booking__deposit-options { grid-template-columns: 1fr; }
  .lit-booking { padding: 28px 20px; }
}

/* FAQ details (front page) */
.faq details.faq-item { border-bottom: 1px solid var(--foam); padding: 12px 0; }
.faq details.faq-item summary { cursor: pointer; font-weight: 600; list-style: none; }
.faq details.faq-item summary::-webkit-details-marker { display: none; }
.faq details.faq-item .faq-a { padding: 10px 0 4px; color: rgba(27,43,31,0.75); }

/* ── FAQ page (page-faq.php) ── */
.article-hero {
  background: var(--deep-marsh);
  color: var(--salt);
  padding: 40px 24px 60px;
  text-align: center;
}
.article-hero .category {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--spanish-moss); margin-bottom: 16px;
}
.article-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  line-height: 1.2;
  max-width: 760px;
  margin: 0 auto 20px;
  color: var(--salt);
}
.article-hero .meta { color: var(--spanish-moss); font-size: 0.9rem; }
.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}
.article-body .breadcrumb { font-size: 0.85rem; color: var(--driftwood); margin-bottom: 32px; }
.article-body .breadcrumb a { color: var(--tide); text-decoration: none; }
.article-body > p { margin-bottom: 20px; font-size: 1.05rem; color: #2a3c2e; line-height: 1.7; }
.article-body > p a { color: var(--tide); font-weight: 600; text-decoration: none; }
.faq-category {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--deep-marsh);
  margin: 48px 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--foam);
}
.faq-page-item {
  margin-bottom: 8px;
  background: var(--salt);
  border-radius: 10px;
  border: 1px solid var(--foam);
  overflow: hidden;
}
.faq-page-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--deep-marsh);
}
.faq-page-item summary::-webkit-details-marker { display: none; }
.faq-page-item summary:hover { background: #f9f6f0; }
.faq-page-answer { padding: 0 22px 20px; color: rgba(27,43,31,0.78); line-height: 1.7; }
.cta-block {
  margin-top: 56px;
  padding: 36px 28px;
  background: var(--deep-marsh);
  color: var(--salt);
  border-radius: 14px;
  text-align: center;
}
.cta-block h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--salt);
}
.cta-block p { color: rgba(255,255,255,0.75); margin-bottom: 20px; }
.cta-block .cta-button {
  display: inline-block;
  background: var(--sunset);
  color: var(--salt);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}
.cta-block .cta-button:hover { filter: brightness(1.05); }
