/* ==========================================================================
   mindcos.com - Premium Single-Page Hotel & Casino Resort Comparisons
   Aesthetic: Dark Plum & Blush luxury layout
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Tokens from design JSON */
    --color-plum: #13051B;
    --color-purple: #321052;
    --color-violet: #6D3FA3;
    --color-lavender: #C78DE6;
    --color-pink: #F1C3C5;
    --color-blush: #F6E6E3;
    --color-cream: #FFF8F3;
    --color-off-white: #FAF7F5;
    
    /* Accents */
    --color-star-gold: #F8C15C;
    --color-success-green: #25B47E;
    
    /* Neutrals */
    --color-white: #FFFFFF;
    --color-light-gray: #D9D3D8;
    --color-medium-gray: #8E8492;
    --color-dark-gray: #302834;
    --color-black: #050008;

    /* Typo variables */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', Arial, sans-serif;

    /* Layout spacing rules */
    --space-xs: 6px;
    --space-sm: 12px;
    --space-md: 20px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 72px;
    --space-3xl: 96px;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-pill: 999px;

    /* Shadows */
    --shadow-soft-card: 0 18px 50px rgba(19, 5, 27, 0.08);
    --shadow-dark-card: 0 22px 70px rgba(0, 0, 0, 0.35);
    --shadow-floating: 0 16px 36px rgba(42, 12, 72, 0.22);
    --shadow-glow-pink: 0 10px 24px rgba(241, 195, 197, 0.25);

    /* Transitions */
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-snappy: all 0.2s ease-in-out;
}

/* --- Global Reset & Scrollbars --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background-color: var(--color-blush);
}

body {
    font-family: var(--font-body);
    background-color: var(--color-blush);
    color: var(--color-dark-gray);
    line-height: 1.65;
    font-size: 15px;
    overflow-x: hidden;
}

/* Custom Luxury Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color-blush);
}
::-webkit-scrollbar-thumb {
    background: var(--color-purple);
    border-radius: var(--radius-pill);
    border: 3px solid var(--color-blush);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-lavender);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-snappy);
}

/* Focus indicator for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--color-lavender);
    outline-offset: 3px;
}

/* --- Typography Hierarchy --- */
h1, h2, h3, h4, h5, h6 {
    color: var(--color-plum);
    font-family: var(--font-heading);
    font-weight: 500;
}

h1 {
    font-size: 56px;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
}

h2 {
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: -0.015em;
    margin-bottom: var(--space-lg);
}

h3 {
    font-size: 26px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: var(--space-sm);
}

p {
    font-family: var(--font-body);
    margin-bottom: var(--space-md);
}

.eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-violet);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: var(--space-sm);
}

.eyebrow::before {
    content: '✦';
    font-size: 10px;
    color: var(--color-pink);
}

.eyebrow-light {
    color: var(--color-pink);
}

/* --- Core Layout Containers --- */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section-padding {
    padding: var(--space-3xl) 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

/* --- Interactive buttons --- */
.btn-primary {
    height: 44px;
    padding: 0 24px;
    border-radius: var(--radius-sm);
    background: var(--color-plum);
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 13px;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-soft-card);
    transition: var(--transition-smooth);
}

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

.btn-secondary {
    height: 44px;
    padding: 0 24px;
    border-radius: var(--radius-sm);
    background: var(--color-pink);
    color: var(--color-plum);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 13px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-glow-pink);
}

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

.btn-outline {
    height: 44px;
    padding: 0 24px;
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--color-pink);
    border: 2px solid var(--color-pink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-outline:hover {
    background: var(--color-pink);
    color: var(--color-plum);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-pink);
}

/* --- Responsible Gaming Top Disclosures --- */
.rg-top-bar {
    background: var(--color-plum);
    color: var(--color-off-white);
    font-size: 12px;
    padding: 10px 0;
    border-bottom: 2px solid var(--color-purple);
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.02em;
    z-index: 1000;
    position: relative;
}

.rg-top-bar a {
    color: var(--color-pink);
    text-decoration: underline;
    margin-left: var(--space-xs);
    font-weight: 600;
}

.rg-top-bar a:hover {
    color: var(--color-white);
}

/* --- Premium Navigation Header --- */
header {
    background: var(--color-plum);
    height: 72px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: sticky;
    top: 0;
    z-index: 999;
    display: flex;
    align-items: center;
}

header.scrolled {
    background: rgba(19, 5, 27, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    color: var(--color-white);
    font-size: 24px;
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
}

.logo span {
    font-weight: 300;
    color: var(--color-pink);
}

nav ul {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
    align-items: center;
}

nav a {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-white);
    padding: 6px 0;
    position: relative;
}

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

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-pink);
    transition: var(--transition-smooth);
}

nav a:hover::after, nav a.active::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.age-badge {
    background: transparent;
    border: 1px solid var(--color-pink);
    color: var(--color-pink);
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.05em;
}

.burger-menu-label {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 1002;
}

.burger-menu-label span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--color-white);
    border-radius: 9px;
    transition: var(--transition-smooth);
}

/* --- Pure CSS Single Page Hash Router --- */
.page-route {
    display: none;
    animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Default view when no hash or #home is active */
#home {
    display: block;
}

/* Target view activation */
.page-route:target {
    display: block;
}

/* Hide main landing page using modern body:has() selectors */
body:has(.page-route:not(#home):target) #home {
    display: none;
}

/* Sibling fallbacks for older browser render paths */
#about:target ~ #home,
#disclosure:target ~ #home,
#responsible:target ~ #home,
#contact:target ~ #home,
#privacy:target ~ #home,
#terms:target ~ #home,
#cancellation:target ~ #home {
    display: none;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Subpage Layout Templates --- */
.subpage-container {
    max-width: 880px;
    margin: var(--space-2xl) auto;
    background: var(--color-cream);
    padding: var(--space-2xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft-card);
    border: 1px solid var(--color-light-gray);
}

.subpage-container h1 {
    font-size: 44px;
    color: var(--color-plum);
    border-bottom: 2px solid var(--color-light-gray);
    padding-bottom: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.subpage-container h2 {
    font-size: 32px;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.subpage-container h3 {
    font-size: 24px;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.subpage-container p {
    font-size: 15px;
    color: var(--color-dark-gray);
    margin-bottom: var(--space-md);
    text-align: justify;
}

.disclosure-alert {
    background: var(--color-blush);
    border-left: 4px solid var(--color-purple);
    padding: var(--space-md) var(--space-lg);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: var(--space-lg);
    color: var(--color-plum);
    font-weight: 500;
}

.disclosure-alert-red {
    background: rgba(255, 107, 107, 0.08);
    border-left-color: #FF6B6B;
}

.disclosure-alert-red h3 {
    margin-top: 0;
    color: #FF6B6B;
}

.disclosure-alert-red ul {
    margin-left: var(--space-lg);
    margin-top: var(--space-sm);
}

.disclosure-alert-red li {
    margin-bottom: 6px;
    font-size: 14px;
}

/* --- Hero Section Layout (Dark Plum background, Arch geometry visual) --- */
.hero-section {
    background: var(--color-plum);
    color: var(--color-white);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.8;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
}

.hero-content h1 {
    color: var(--color-white);
}

.hero-content h1 span {
    color: var(--color-pink);
    display: block;
    font-style: italic;
}

.hero-content p {
    color: var(--color-light-gray);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.hero-ctas {
    display: flex;
    gap: var(--space-sm);
}

/* Hero visual: Arch shape and floating cards */
.hero-visuals {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Lavender arch */
.visual-arch {
    width: 320px;
    height: 400px;
    background: linear-gradient(to top, var(--color-purple), var(--color-violet));
    border-radius: 160px 160px 0 0;
    box-shadow: var(--shadow-dark-card);
    position: relative;
    overflow: hidden;
}

.visual-arch::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(241,195,197,0.3) 0%, transparent 70%);
}

.floating-visual-card {
    background: rgba(50, 16, 82, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-floating);
    width: 250px;
    position: absolute;
    transition: var(--transition-smooth);
    z-index: 3;
}

.floating-card-1 {
    left: -20px;
    top: 50px;
    transform: rotate(-6deg);
    border-left: 3px solid var(--color-pink);
}

.floating-card-2 {
    right: -25px;
    bottom: 50px;
    transform: rotate(4deg);
    border-right: 3px solid var(--color-pink);
}

.floating-visual-card:hover {
    transform: scale(1.06) rotate(0deg);
    background: var(--color-purple);
    border-color: var(--color-pink);
    z-index: 5;
}

.floating-card-title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.floating-card-title span {
    color: var(--color-star-gold);
}

.floating-card-desc {
    font-size: 11px;
    color: var(--color-light-gray);
    line-height: 1.4;
}

/* --- Section headers --- */
.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto var(--space-xl) auto;
}

.section-header h2 {
    margin-bottom: var(--space-sm);
}

.section-header p {
    color: var(--color-medium-gray);
    font-size: 16px;
}

/* --- Service Preview Strip (White background) --- */
.services-strip-section {
    background: var(--color-white);
    border-top: 1px solid var(--color-light-gray);
    border-bottom: 1px solid var(--color-light-gray);
}

.service-card {
    background: var(--color-purple);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    color: var(--color-white);
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft-card);
    transition: var(--transition-smooth);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(241,195,197,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.service-card h3 {
    color: var(--color-white);
    font-size: 20px;
    margin-bottom: var(--space-xs);
}

.service-card p {
    font-size: 12px;
    color: var(--color-light-gray);
    margin-bottom: 0;
    line-height: 1.5;
}

.service-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.service-icon {
    font-size: 26px;
    line-height: 1;
}

.service-arrow {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-pink);
    color: var(--color-plum);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    transition: var(--transition-snappy);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-pink);
    box-shadow: var(--shadow-floating);
}

.service-card:hover .service-arrow {
    background: var(--color-white);
    transform: scale(1.1);
}

/* --- Method Cards Section (Blush background) --- */
.method-card {
    background: var(--color-cream);
    border: 1px solid var(--color-light-gray);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    box-shadow: var(--shadow-soft-card);
    transition: var(--transition-smooth);
    border-top: 4px solid var(--color-purple);
}

.method-icon-box {
    width: 44px;
    height: 44px;
    background: var(--color-blush);
    color: var(--color-plum);
    font-size: 20px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    transition: var(--transition-smooth);
}

.method-card h3 {
    font-size: 20px;
    color: var(--color-plum);
    margin-bottom: var(--space-xs);
}

.method-card p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-dark-gray);
    margin-bottom: 0;
}

.method-card:hover {
    transform: translateY(-6px);
    background: var(--color-purple);
    border-color: var(--color-purple);
    border-top-color: var(--color-pink);
    color: var(--color-white);
}

.method-card:hover h3 {
    color: var(--color-white);
}

.method-card:hover p {
    color: var(--color-light-gray);
}

.method-card:hover .method-icon-box {
    background: rgba(255,255,255,0.12);
    color: var(--color-pink);
}

/* --- Main Layout Grid --- */
.main-layout-grid {
    display: grid;
    grid-template-columns: 2.05fr 0.95fr;
    gap: var(--space-xl);
}

/* --- Featured Resort Cards --- */
.resort-card {
    background: var(--color-cream);
    border: 1px solid var(--color-light-gray);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft-card);
    margin-bottom: var(--space-2xl);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.resort-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-floating);
    border-color: var(--color-purple);
}

.resort-card-header {
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--color-light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-white);
}

.resort-meta h3 {
    font-size: 26px;
    color: var(--color-plum);
    margin-bottom: 4px;
}

.resort-loc {
    color: var(--color-medium-gray);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.resort-score {
    background: linear-gradient(135deg, var(--color-purple), var(--color-plum));
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    text-align: center;
    color: var(--color-white);
    min-width: 65px;
    box-shadow: 0 4px 12px rgba(19, 5, 27, 0.15);
    border-left: 2px solid var(--color-pink);
}

.score-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.score-txt {
    display: block;
    font-size: 8px;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 3px;
    letter-spacing: 0.05em;
}

/* Premium Gradient visual representations instead of image files */
.resort-visual-banner {
    height: 230px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--color-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.resort-visual-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.04) 1.5px, transparent 1.5px),
                      linear-gradient(90deg, rgba(255,255,255,0.04) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 1;
}

.resort-visual-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, rgba(19, 5, 27, 0.5), transparent);
    z-index: 1;
}

.visual-banner-badge {
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(19, 5, 27, 0.8);
    backdrop-filter: blur(5px);
    color: var(--color-white);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    z-index: 2;
    box-shadow: var(--shadow-dark-card);
}

/* Gradient themes per resort review */
.banner-wynn {
    background: linear-gradient(135deg, #2D0B0B 0%, #A27F3E 50%, #150303 100%);
}
.banner-bellagio {
    background: linear-gradient(135deg, #0A1C33 0%, #2E5C8A 50%, #040A12 100%);
}
.banner-paris {
    background: linear-gradient(135deg, #111622 0%, #79613A 50%, #07090F 100%);
}
.banner-sands {
    background: linear-gradient(135deg, #00362C 0%, #006054 50%, #001612 100%);
}
.banner-atlantis {
    background: linear-gradient(135deg, #9C3D00 0%, #CE9F0D 50%, #511510 100%);
}

.resort-body {
    padding: var(--space-lg);
}

.resort-desc {
    font-size: 14px;
    color: var(--color-dark-gray);
    line-height: 1.75;
    margin-bottom: var(--space-lg);
    text-align: justify;
}

/* Specs subgrid in resort card */
.resort-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.resort-spec-item {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
}

.spec-icon {
    font-size: 18px;
    line-height: 1;
    background: var(--color-blush);
    padding: 6px;
    border-radius: var(--radius-sm);
    color: var(--color-plum);
}

.spec-text {
    display: flex;
    flex-direction: column;
}

.spec-title {
    font-weight: 700;
    color: var(--color-plum);
    font-size: 13px;
    margin-bottom: 2px;
}

.spec-val {
    color: var(--color-medium-gray);
    font-size: 12px;
    line-height: 1.4;
}

.resort-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: var(--space-sm);
}

.resort-tag {
    background: var(--color-white);
    border: 1px solid var(--color-light-gray);
    color: var(--color-dark-gray);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 500;
}

.resort-tag.highlighted {
    border-color: var(--color-purple);
    color: var(--color-purple);
    background: rgba(50, 16, 82, 0.05);
}

/* Card CTA box */
.resort-card-footer {
    padding: var(--space-md) var(--space-lg);
    background: var(--color-white);
    border-top: 1px solid var(--color-light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rates-info {
    display: flex;
    flex-direction: column;
}

.rates-lbl {
    font-size: 11px;
    color: var(--color-medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.rates-val {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-plum);
    font-family: var(--font-heading);
}

/* --- Sidebar (Sticky) --- */
.sidebar-wrapper {
    position: relative;
}

.sticky-sidebar {
    position: sticky;
    top: 96px;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.sidebar-card {
    background: var(--color-cream);
    border: 1px solid var(--color-light-gray);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    box-shadow: var(--shadow-soft-card);
}

.sidebar-card h3 {
    font-size: 22px;
    color: var(--color-plum);
    border-bottom: 2px solid var(--color-light-gray);
    padding-bottom: var(--space-sm);
    margin-bottom: var(--space-md);
}

.sidebar-card p {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--color-dark-gray);
    margin-bottom: var(--space-md);
}

.disclosure-card-box {
    background: var(--color-white);
    border: 1px solid var(--color-light-gray);
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    font-size: 12px;
    color: var(--color-medium-gray);
    line-height: 1.6;
}

/* --- Comparison Matrix Table --- */
.table-section {
    margin-top: var(--space-xl);
}

.table-wrapper {
    width: 100%;
    overflow-x: auto;
    border: 1px solid var(--color-light-gray);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft-card);
    background: var(--color-white);
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 13.5px;
}

th, td {
    padding: var(--space-md);
    border-bottom: 1px solid var(--color-light-gray);
}

th {
    background: var(--color-purple);
    color: var(--color-white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.05em;
    font-family: var(--font-body);
}

tr:last-child td {
    border-bottom: none;
}

tr:nth-child(even) {
    background: var(--color-off-white);
}

td strong {
    color: var(--color-plum);
}

.tbl-score {
    font-weight: 700;
    color: var(--color-purple);
}

/* --- Longform Content Block --- */
.longform-block {
    background: var(--color-cream);
    padding: var(--space-2xl);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-light-gray);
    margin-top: var(--space-2xl);
    box-shadow: var(--shadow-soft-card);
}

.longform-block h2 {
    font-size: 38px;
    margin-bottom: var(--space-md);
    color: var(--color-plum);
}

.longform-block h3 {
    font-size: 26px;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
    color: var(--color-purple);
}

.longform-block p {
    margin-bottom: var(--space-md);
    color: var(--color-dark-gray);
    text-align: justify;
    font-size: 15px;
}

/* --- Pricing Section (White background) --- */
.pricing-section {
    background: var(--color-white);
    border-top: 1px solid var(--color-light-gray);
    border-bottom: 1px solid var(--color-light-gray);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.pricing-card {
    background: var(--color-cream);
    border: 1px solid var(--color-light-gray);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft-card);
    position: relative;
}

.pricing-card.featured {
    background: var(--color-purple);
    color: var(--color-white);
    border-color: var(--color-purple);
    transform: translateY(-8px);
    box-shadow: var(--shadow-floating);
}

.pricing-card.featured h3 {
    color: var(--color-white);
}

.pricing-card.featured h4 {
    color: var(--color-pink);
}

.pricing-card.featured .pricing-features li {
    border-bottom-color: rgba(255,255,255,0.08);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-pink);
    color: var(--color-plum);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.pricing-card h3 {
    font-size: 22px;
    margin-bottom: 2px;
}

.pricing-card h4 {
    font-size: 38px;
    font-family: var(--font-heading);
    margin-bottom: var(--space-md);
    color: var(--color-purple);
}

.pricing-card h4 span {
    font-size: 14px;
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--color-medium-gray);
}

.pricing-card.featured h4 span {
    color: var(--color-light-gray);
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.pricing-features li {
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 1px solid var(--color-light-gray);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-card:hover {
    box-shadow: var(--shadow-floating);
}

.pricing-card:not(.featured):hover {
    transform: translateY(-4px);
    border-color: var(--color-purple);
}

/* --- Testimonials Section (Blush background) --- */
.testimonial-card {
    background: var(--color-cream);
    border: 1px solid var(--color-light-gray);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    box-shadow: var(--shadow-soft-card);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.testimonial-quote-icon {
    font-family: var(--font-heading);
    font-size: 80px;
    color: rgba(109, 63, 163, 0.08);
    position: absolute;
    top: -10px;
    right: var(--space-lg);
    line-height: 1;
}

.testimonial-rating {
    color: var(--color-star-gold);
    font-size: 16px;
    margin-bottom: var(--space-sm);
}

.testimonial-text {
    font-style: italic;
    font-size: 14.5px;
    color: var(--color-dark-gray);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-purple), var(--color-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: 700;
    font-size: 14px;
}

.author-meta {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: var(--color-plum);
    font-size: 13.5px;
}

.author-role {
    font-size: 11px;
    color: var(--color-medium-gray);
}

/* --- Accordion details/summary styles --- */
.accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

details {
    background: var(--color-purple);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition-snappy);
    box-shadow: var(--shadow-soft-card);
}

summary {
    padding: 16px var(--space-lg);
    color: var(--color-white);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: var(--transition-snappy);
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+';
    font-size: 20px;
    font-weight: 400;
    color: var(--color-pink);
    transition: var(--transition-snappy);
}

details[open] {
    background: var(--color-purple);
}

details[open] summary {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

details[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}

.accordion-content {
    padding: 18px var(--space-lg);
    background: var(--color-cream);
    color: var(--color-dark-gray);
    font-size: 14px;
    line-height: 1.65;
}

/* --- Contact form styling --- */
.contact-form-wrapper {
    background: var(--color-cream);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-light-gray);
    box-shadow: var(--shadow-soft-card);
    margin-top: var(--space-lg);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

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

.form-group.full-width {
    grid-column: span 2;
}

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

.form-group input, .form-group textarea {
    height: 44px;
    background: var(--color-white);
    border: 1px solid var(--color-light-gray);
    border-radius: var(--radius-sm);
    color: var(--color-black);
    padding: 0 14px;
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition-snappy);
}

.form-group textarea {
    height: auto;
    padding: 14px;
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: var(--color-medium-gray);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--color-purple);
    background: var(--color-cream);
}

.submit-btn-container {
    grid-column: span 2;
    margin-top: var(--space-sm);
}

.submit-btn {
    width: 100%;
    height: 48px;
    background: var(--color-plum);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--shadow-soft-card);
    transition: var(--transition-smooth);
}

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

/* --- Premium Footer --- */
footer {
    background: var(--color-plum);
    color: var(--color-light-gray);
    padding: var(--space-2xl) 0 var(--space-lg) 0;
    font-size: 13.5px;
    border-top: 4px solid var(--color-purple);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-brand h4 {
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.footer-brand h4 span {
    color: var(--color-pink);
    font-weight: 300;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: var(--transition-snappy);
}

.social-circle:hover {
    background: var(--color-pink);
    color: var(--color-plum);
    transform: translateY(-2px);
}

.footer-col h5 {
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--color-light-gray);
}

.footer-links a:hover {
    color: var(--color-pink);
    padding-left: 4px;
}

.footer-contact p {
    line-height: 1.7;
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 12px;
    color: var(--color-medium-gray);
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-md);
}

.footer-bottom-links a {
    font-size: 12px;
    color: var(--color-medium-gray);
}

.footer-bottom-links a:hover {
    color: var(--color-pink);
}

/* --- Mobile Menu Drawer Hack overlay --- */
.drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5,0,8,0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* --- RESPONSIVE BREAKPOINTS --- */

/* Desktop (large widths) */
@media (min-width: 1024px) {
    .menu-toggle-checkbox {
        display: none;
    }
}

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
    h1 { font-size: 44px; }
    h2 { font-size: 32px; }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    .pricing-card.featured {
        transform: none;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (0 - 767px) */
@media (max-width: 767px) {
    h1 { font-size: 36px; }
    h2 { font-size: 28px; }
    
    .section-padding {
        padding: var(--space-2xl) 0;
    }
    
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .hero-content {
        padding: var(--space-lg);
    }
    
    .hero-visuals {
        height: 380px;
    }
    
    .visual-arch {
        width: 240px;
        height: 300px;
    }
    
    .floating-visual-card {
        width: 200px;
    }
    .floating-card-1 {
        left: -10px;
    }
    .floating-card-2 {
        right: -10px;
    }
    
    .main-layout-grid {
        grid-template-columns: 1fr;
    }
    
    .resort-specs-grid {
        grid-template-columns: 1fr;
    }
    
    .resort-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }
    
    .resort-card-footer .btn-primary {
        width: 100%;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    .form-group.full-width, .submit-btn-container {
        grid-column: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    
    /* Responsive Hamburger Burger Navigation Hack */
    .burger-menu-label {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: var(--color-plum);
        box-shadow: -10px 0 30px rgba(0,0,0,0.25);
        z-index: 1001;
        padding: var(--space-3xl) var(--space-lg) var(--space-lg) var(--space-lg);
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    nav ul {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: var(--space-md);
    }
    
    nav a {
        font-size: 16px;
        width: 100%;
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    
    /* Show Menu toggle behavior */
    .menu-toggle-checkbox:checked ~ nav {
        right: 0;
    }
    
    .menu-toggle-checkbox:checked ~ .drawer-overlay {
        display: block;
        opacity: 1;
        pointer-events: auto;
    }
    
    .menu-toggle-checkbox:checked ~ .burger-menu-label span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle-checkbox:checked ~ .burger-menu-label span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle-checkbox:checked ~ .burger-menu-label span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}
