/* Reset and Base Styles */
/* Deployment trigger: CTA contrast improvements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a5f3f;
    --secondary-color: #2d8659;
    --accent-color: #f4a261;
    --text-dark: #2b2b2b;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.social-contact,
.phone-contact {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    opacity: 0.8;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition);
}

.phone-link:hover {
    opacity: 0.8;
}

.phone-subtitle {
    font-size: 0.85rem;
    margin: 0;
}

/* Navigation */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.nav-brand h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: stretch;
    color: var(--white);
    overflow: hidden;
    background: var(--primary-color);
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1s ease, transform 2s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(244, 162, 97, 0.35), transparent 55%), linear-gradient(130deg, rgba(6, 22, 16, 0.2) 20%, rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 80px 20px;
}

.hero-content {
    max-width: 620px;
}

.hero-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    padding: 8px 18px;
    margin-bottom: 20px;
    backdrop-filter: blur(6px);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
}

.hero-badge strong {
    font-size: 0.95rem;
}

.hero-kicker {
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.85);
}

.hero-content h2 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 18px;
}

.hero-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.hero-meta span::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-color);
    margin-right: 8px;
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 2;
}

.hero-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active,
.hero-dot:hover {
    background: var(--accent-color);
    transform: scale(1.15);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #e76f51;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.25rem;
}

/* Visual Showcase Section */
.visual-showcase {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-eyebrow {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.showcase-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.showcase-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--bg-light);
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.showcase-card:hover .showcase-image img {
    transform: scale(1.08);
}

.showcase-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.showcase-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.showcase-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease, color 0.3s ease;
}

.link-arrow::after {
    content: '→';
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.link-arrow:hover {
    gap: 12px;
    color: var(--secondary-color);
}

.link-arrow:hover::after {
    transform: translateX(4px);
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-phone {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    transition: var(--transition);
}

.footer-phone:hover {
    opacity: 0.8;
}

/* Page Content Styles */
.page-content {
    padding: 60px 0;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.content-section {
    margin-bottom: 50px;
}

.content-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 10px;
}

.content-section h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin: 30px 0 15px;
}

.content-section p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

.content-section ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-section li {
    margin-bottom: 10px;
    color: var(--text-light);
}

/* Image Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item img[src=""],
.gallery-item img:not([src]) {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.hero {
    background-color: var(--primary-color);
}

.hero[style*="background-image"] {
    background-color: transparent;
}

/* Video Gallery */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.video-item {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.video-item h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.video-item video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background: var(--bg-light);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background: var(--bg-light);
    margin-bottom: 15px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.video-link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    overflow: hidden;
    border-radius: 8px;
}

.video-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.video-link:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition);
}

.video-link:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-note {
    margin-top: 20px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.cabin-gallery {
    margin-top: 30px;
}

.cabin-gallery h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 15px 0;
    }

    .nav-menu a {
        display: block;
        padding: 10px;
    }

    .header-top {
        flex-direction: column;
        text-align: center;
    }

    .hero {
        min-height: 460px;
    }

    .hero .container {
        padding: 70px 20px;
    }

    .hero-content h2 {
        font-size: 2.3rem;
    }

    .hero-text {
        font-size: 1.05rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-meta {
        flex-direction: column;
        gap: 8px;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .showcase-image {
        height: 240px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .content-section h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        min-height: 420px;
    }

    .hero-content h2 {
        font-size: 1.9rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .visual-showcase {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .showcase-content {
        padding: 24px;
    }

    .cta h2 {
        font-size: 2rem;
    }
}

/* Experience & Services Panels */
.texture-block {
    background: linear-gradient(120deg, rgba(26, 95, 63, 0.08), rgba(255, 255, 255, 0.6));
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.stat-card {
    background: var(--white);
    border-radius: 16px;
    padding: 25px;
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
    color: var(--text-light);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.info-card {
    background: var(--white);
    border-radius: 14px;
    padding: 25px;
    box-shadow: var(--shadow);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(244, 162, 97, 0.15);
    color: var(--accent-color);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.process-steps {
    counter-reset: step;
    display: grid;
    gap: 18px;
    margin: 25px 0;
    list-style: none;
    padding-left: 0;
}

.process-step {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.process-step::before {
    counter-increment: step;
    content: counter(step);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-top: 4px;
}

.rate-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.rate-table th {
    background: var(--primary-color);
    color: var(--white);
    padding: 14px;
    text-align: left;
    font-weight: 600;
}

.rate-table td {
    padding: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.rate-table tr:nth-child(even) td {
    background: var(--bg-light);
}

.promise-grid,
.safety-callouts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.promise-card,
.callout-card {
    border-radius: 14px;
    padding: 22px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--white);
    box-shadow: var(--shadow);
}

.cta-panel {
    padding: 48px 42px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(12, 54, 39, 0.96), rgba(25, 106, 65, 0.94));
    color: var(--white);
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    align-items: flex-start;
    justify-content: space-between;
    box-shadow: 0 16px 40px rgba(5, 40, 30, 0.45);
}

.cta-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.08), transparent 45%),
        radial-gradient(circle at 85% 0%, rgba(255, 255, 255, 0.06), transparent 40%),
        linear-gradient(145deg, rgba(0, 0, 0, 0.35), transparent 60%);
    opacity: 0.85;
    pointer-events: none;
}

.cta-panel > * {
    position: relative;
    z-index: 1;
}

.cta-panel .section-eyebrow {
    color: #f4a261 !important;
    font-weight: 700 !important;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.cta-panel h2 {
    margin: 8px 0 6px;
    font-size: clamp(2.1rem, 3vw, 3rem);
    font-weight: 700 !important;
    color: #ffffff !important;
    letter-spacing: 0.02em;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6) !important;
    background: rgba(0, 0, 0, 0.15) !important;
    padding: 0.4rem 0.9rem;
    border-radius: 10px;
    display: inline-block;
}

.cta-panel p {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1.1rem;
    max-width: 460px;
    line-height: 1.6;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45) !important;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.service-card {
    padding: 24px;
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--accent-color);
}

.timeline {
    position: relative;
    list-style: none;
    padding-left: 0;
    margin-top: 25px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(0, 0, 0, 0.1);
}

.timeline li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
}

.timeline li::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-color);
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.spec-card {
    padding: 18px;
    border-radius: 12px;
    background: var(--bg-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.badge-note {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Cabins Page Enhancements */
.page-eyebrow,
.section-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.cabin-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.feature-checklist {
    list-style: none;
    margin-top: 20px;
    display: grid;
    gap: 12px;
}

.feature-checklist li {
    position: relative;
    padding-left: 28px;
}

.feature-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
}

.cabin-intro-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.cabin-stats-list {
    display: grid;
    gap: 10px;
    margin: 20px 0;
}

.cabin-stats-list div {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 6px;
}

.cabin-stats-list dt {
    font-weight: 600;
}

.cabin-stats-list dd {
    margin: 0;
    color: var(--text-light);
}

.card-note {
    font-size: 0.9rem;
    color: var(--text-light);
}

.section-heading {
    margin-bottom: 30px;
}

.cabins-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cabins-loading {
    color: var(--text-light);
    font-size: 0.95rem;
}

.cabin-card {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cabin-media-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cabin-media {
    position: relative;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    box-shadow: var(--shadow);
    cursor: pointer;
}

.cabin-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.cabin-media:hover img {
    transform: scale(1.05);
    opacity: 0.95;
}

.cabin-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.45);
    color: var(--white);
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cabin-slider-nav.prev {
    left: 12px;
}

.cabin-slider-nav.next {
    right: 12px;
}

.cabin-slider-nav:hover,
.cabin-slider-nav:focus-visible {
    background: rgba(0, 0, 0, 0.65);
}

.cabin-tags {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    font-size: 0.8rem;
}

.tag-muted {
    background: rgba(255, 255, 255, 0.85);
    color: var(--text-dark);
}

.cabin-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cabin-heading h3 {
    font-size: 2rem;
    margin-top: 5px;
}

.cabin-category {
    text-transform: capitalize;
    color: var(--text-light);
    letter-spacing: 0.1em;
    font-size: 0.8rem;
}

.cabin-summary {
    color: var(--text-dark);
    font-size: 1rem;
}

.cabin-stats {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.cabin-stats li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.cabin-stats strong {
    color: var(--text-dark);
    font-size: 1.05rem;
}

.cabin-highlights {
    list-style: none;
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 0;
}

.cabin-highlights li {
    position: relative;
    padding-left: 20px;
    color: var(--text-dark);
}

.cabin-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    color: var(--accent-color);
    background: var(--accent-color);
}

.cabin-thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
}

.cabin-thumb-btn {
    border: 2px solid transparent;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    padding: 0;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cabin-thumb-btn img {
    width: 100px;
    height: 75px;
    object-fit: cover;
    display: block;
}

.cabin-thumb-btn.active,
.cabin-thumb-btn:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.cabin-thumb-btn.active {
    border-color: var(--accent-color);
    opacity: 1;
}

.cabin-thumb-btn:hover:not(.active) {
    border-color: var(--primary-color);
}

.cabin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cabin-perks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.perk-card {
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--white);
    box-shadow: var(--shadow);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.gallery-card {
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
}

.gallery-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.gallery-card figcaption {
    padding: 12px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.fallback-cabin-list {
    margin-top: 15px;
    padding-left: 20px;
    color: var(--text-dark);
}

.cabin-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
    margin-bottom: 25px;
}

.filter-group {
    flex: 1;
    min-width: 220px;
}

.filter-label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-chip {
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: var(--white);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-chip.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.filter-chip:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.filter-reset {
    border: none;
    background: none;
    color: var(--accent-color);
    font-weight: 600;
    cursor: pointer;
}

.btn-ghost {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
    border: 1px dashed rgba(0, 0, 0, 0.2);
}

.btn-ghost.is-selected {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.link-btn {
    border: none;
    background: none;
    color: var(--accent-color);
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}

.cabin-empty {
    text-align: center;
    padding: 40px;
    border: 1px dashed rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    color: var(--text-light);
    background: var(--white);
}

.compare-drawer {
    margin-top: 30px;
    padding: 24px;
    border-radius: 16px;
    background: var(--bg-light);
    box-shadow: var(--shadow);
}

.compare-drawer-header {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: flex-end;
}

.compare-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 0.95rem;
}

.compare-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.compare-card {
    flex: 1;
    min-width: 220px;
    background: var(--white);
    border-radius: 12px;
    padding: 18px;
    box-shadow: var(--shadow);
    position: relative;
}

.compare-card h4 {
    margin-bottom: 6px;
}

.compare-card button {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: none;
    color: var(--text-light);
    cursor: pointer;
}

.compare-stats {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
    font-size: 0.9rem;
}

.compare-table {
    margin-top: 25px;
    overflow-x: auto;
}

.compare-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.compare-table th,
.compare-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.compare-table th {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: var(--text-light);
}

.compare-table ul {
    margin: 0;
    padding-left: 18px;
}

.media-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.media-lightbox[hidden] {
    display: none;
}

.lightbox-dialog {
    width: min(900px, 90vw);
    background: rgba(5, 12, 9, 0.95);
    border-radius: 16px;
    padding: 20px;
    position: relative;
    color: var(--white);
}

.lightbox-main {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

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

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    cursor: pointer;
    font-size: 1.2rem;
}

.lightbox-prev {
    left: 12px;
}

.lightbox-next {
    right: 12px;
}

.lightbox-close {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
}

.lightbox-caption {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.lightbox-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.lightbox-thumbs button {
    border: none;
    padding: 0;
    background: none;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.lightbox-thumbs button.active {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.lightbox-thumbs img {
    width: 90px;
    height: 65px;
    object-fit: cover;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 1024px) {
    .cabin-card {
        grid-template-columns: 1fr;
    }

    .cabin-media {
        min-height: 280px;
    }
}

@media (max-width: 900px) {
    .cabin-intro {
        grid-template-columns: 1fr;
    }

    .compare-drawer-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .compare-meta {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 600px) {
    .cabin-body {
        padding: 20px;
    }

    .cabin-stats {
        flex-direction: column;
    }

    .cabin-thumbnails {
        flex-direction: column;
    }

    .cabin-actions {
        flex-direction: column;
    }

    .cabin-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .lightbox-thumbs img {
        width: 70px;
        height: 55px;
    }

    .lightbox-nav {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 680px) {
    .cta-panel {
        flex-direction: column;
        gap: 18px;
        align-items: flex-start;
    }

    .cta-panel .btn {
        width: 100%;
        max-width: none;
        display: inline-flex;
        justify-content: center;
    }
}
