/* 
   DESIGN SYSTEM: TROPICAL MODERN
   Atmosphere: Sophisticated, Airy, Natural, Sharp.
*/

:root {
    /* --- COLORS --- */
    /* Primary: Dark Luxury (Official) */
    --color-primary: #171717;
    /* Intense Dark */
    --color-primary-light: #2C2C2C;

    /* Accent: Carma Gold */
    --color-accent: #CBAA5C;
    --color-accent-hover: #E2C376;

    /* Neutrals */
    --color-bg: #FFFFFF;
    /* Clean White */
    --color-bg-alt: #F4F4F4;
    /* Light Grey */
    --color-text-main: #1A1A1A;
    --color-text-muted: #555555;
    --color-white: #FFFFFF;

    /* --- TYPOGRAPHY --- */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --fw-regular: 400;
    --fw-medium: 500;
    --fw-bold: 600;

    /* Fluid Type Scale */
    --fs-sm: clamp(0.8rem, 1vw, 1rem);
    --fs-base: clamp(1rem, 1.2vw, 1.125rem);
    --fs-md: clamp(1.25rem, 1.5vw, 1.5rem);
    --fs-lg: clamp(1.75rem, 2.5vw, 2.5rem);
    --fs-xl: clamp(2.5rem, 5vw, 4.5rem);

    /* --- SPACING (Fibonacci-ish) --- */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 4rem;
    /* Reduced from 8rem (50% reduction) */
    --space-2xl: 8rem;

    /* --- UI --- */
    --radius-sm: 4px;
    --radius-md: 12px;
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    --transition-fast: 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* --- RESET & BASE --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    background-color: --color-bg;
    /* Fallback */
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- TYPOGRAPHY UTILS --- */
h1,
h2,
h3,
.headline,
.section-title {
    font-family: var(--font-heading);
    line-height: 1.1;
    font-weight: var(--fw-regular);
    margin-bottom: var(--space-sm);
}

h1 {
    font-size: var(--fs-xl);
}

h2 {
    font-size: var(--fs-lg);
}

h3 {
    font-size: var(--fs-md);
    font-family: var(--font-body);
    font-weight: var(--fw-medium);
}

p {
    margin-bottom: var(--space-sm);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: var(--fs-sm);
    color: var(--color-accent);
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: var(--fw-bold);
}

.skip-link {
    position: absolute;
    top: -999px;
    left: 0;
    background: var(--color-primary);
    color: white;
    padding: 1rem;
    z-index: 1000;
}

.skip-link:focus {
    top: 0;
}

/* --- LAYOUT UTILS --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin-inline: auto;
}

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

/* Ensure map and footer have spacing */
.location {
    margin-bottom: 30px;
    /* Exact 30px spacing before footer as requested */
}

.flow-content>*+* {
    margin-top: var(--space-sm);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

/* --- COMPONENTS --- */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: var(--fw-medium);
    border-radius: 50px;
    /* Pillow shape for modern luxe feel */
    transition: var(--transition-fast);
    cursor: pointer;
    font-size: var(--fs-base);
}

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

.btn-primary:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.btn-text {
    color: var(--color-primary);
    padding-inline: 0;
}

.btn-text:hover .arrow {
    transform: translateX(5px);
}

.arrow {
    display: inline-block;
    transition: var(--transition-fast);
    margin-left: 5px;
}


/* Header */
.site-header {
    padding-block: var(--space-md);
    position: fixed;
    /* Or Sticky */
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(249, 249, 247, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: var(--fs-md);
    text-decoration: none;
    color: var(--color-primary);
    font-weight: var(--fw-bold);
    letter-spacing: -0.02em;
}

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

.main-nav a:not(.btn) {
    text-decoration: none;
    color: var(--color-text-main);
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    transition: color var(--transition-fast);
}

.main-nav a:not(.btn):hover {
    color: var(--color-accent);
}

/* Hero */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--space-xl);
    /* Clear header */
    text-align: center;
    overflow: hidden;
}

.hero-bg,
.placeholder-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-color: #ddd;
    /* Fallback */
}

.placeholder-bg {
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    /* In real impl, this would be an image/video */
}

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.hero .headline {
    margin-bottom: var(--space-md);
}

.hero .accent {
    font-style: italic;
    color: var(--color-accent);
}

.hero-actions {
    margin-top: var(--space-md);
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    align-items: center;
}

/* Intro */
.intro {
    text-align: center;
}

.intro .lead-text {
    font-size: var(--fs-md);
    max-width: 700px;
    margin-inline: auto;
    color: var(--color-text-muted);
}

/* Features */
.amenities {
    background-color: var(--color-bg-alt);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.feature-card {
    background: var(--color-white);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card .icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

/* Footer */
.site-footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding-block: var(--space-lg);
    text-align: center;
}

.site-footer p {
    opacity: 0.7;
    margin-bottom: var(--space-md);
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    /* Safety for small screens */
}

.footer-nav a,
.footer-social a {
    color: var(--color-white);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.footer-nav a:hover,
.footer-social a:hover {
    opacity: 1;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
    }

    .main-nav {
        display: none;
        /* TODO: Add mobile menu toggle */
    }

    .hero .headline {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .mobile-stack {
        flex-direction: column !important;
    }
}

/* --- ANIMATIONS --- */

.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for grid items if needed */
.feature-card:nth-child(2) {
    transition-delay: 0.1s;
}

.feature-card:nth-child(3) {
    transition-delay: 0.2s;
}

/* --- VIDEO --- */
.video-section .container {
    max-width: 1000px;
}

.video-wrapper {
    box-shadow: var(--shadow-soft);
}

/* --- COOKIE BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: -100px;
    /* Hidden via position */
    left: 0;
    width: 100%;
    background: var(--color-white);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
    padding: var(--space-sm) 0;
    z-index: 1000;
    transition: transform 0.3s ease-out;
}

.cookie-banner.show {
    transform: translateY(-100px);
    /* Move into view */
    bottom: 0px;
    transform: none;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    font-size: var(--fs-sm);
}

.cookie-content p {
    margin-bottom: 0;
}

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

/* --- SLIDER --- */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
}

/* --- GLASSMORPHISM --- */
.glass-panel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.25);
    display: inline-block;
    /* Wraps content nicely */
    max-width: 900px;
}

/* --- LANGUAGE SWITCHER --- */
.lang-switch {
    display: flex;
    gap: 0.5rem;
}

.lang-switch button {
    background: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 0.2rem 0.5rem;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.2s;
}

.lang-switch button:hover,
.lang-switch button.active {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

/* --- SLIDER PAGINATION --- */
.slider-pagination {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: var(--color-white);
    transform: scale(1.2);
}

/* --- SMALLER HERO (50%) --- */
.hero .glass-panel {
    max-width: 500px;
    /* Was 900px, reduced by ~50% visual weight */
    padding: var(--space-md);
}

.hero .headline {
    font-size: 2.5rem;
    /* Smaller headline */
}

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

/* --- LANGUAGE DROPDOWN --- */
.lang-dropdown {
    position: relative;
}

.current-lang {
    background: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
    display: none;
    flex-direction: column;
    min-width: 120px;
    z-index: 100;
}

.lang-dropdown:hover .lang-menu {
    display: flex;
}

.lang-menu button {
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    text-align: left;
    cursor: pointer;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.lang-menu button:hover {
    background: var(--color-bg-light);
}

/* --- SLIDER NAV ZONES --- */
.slider-nav-zone {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20%;
    /* Active area */
    z-index: 5;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.0);
    /* Hidden by default */
    transition: color 0.3s;
}

.slider-nav-zone:hover {
    color: rgba(255, 255, 255, 0.5);
    /* Hint on hover */
}

.prev-zone {
    left: 0;
}

.next-zone {
    right: 0;
}

/* Keep active dots white, others transparent */
.slider-dot {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.slider-dot.active {
    background: #fff;
    transform: scale(1.3);
    border-color: #fff;
}

/* --- GALLERY --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    height: 200px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- GLASS PANEL TEXT --- */
.glass-panel {
    color: var(--color-white);
}

.glass-panel .headline,
.glass-panel .subheadline,
.glass-panel .eyebrow {
    color: var(--color-white);
}

/* --- SHRINKING HEADER (Glassmorphism) --- */
/* --- SHRINKING HEADER --- */
.site-header {
    transition: all 0.3s ease;
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.5s ease;
    /* Smooth transition */
}

.site-header.scrolled {
    padding: 0.5rem 0;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.site-header.scrolled .logo {
    font-size: 1.2rem;
    /* Shrink logo */
    color: var(--color-text);
    /* Optional: Darker text on scroll? */
}

/* --- GALLERY VIEWER --- */
.gallery-viewer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gallery-main-stage {
    width: 100%;
    height: 60vh;
    /* Large stage */
    min-height: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: #f0f0f0;
}

.gallery-main-stage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}

.gallery-thumbs-container {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    /* Space for scrollbar if visible */
    scrollbar-width: thin;
    /* Firefox */
}

.gallery-thumbs-track {
    display: flex;
    gap: 0.5rem;
    min-width: min-content;
    /* Ensure connection */
}

.gallery-thumb {
    width: 120px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.2s;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.gallery-thumb:hover {
    opacity: 1;
}

.gallery-thumb.active {
    opacity: 1;
    border-color: var(--color-primary);
    transform: scale(1.05);
    /* Slight pop */
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- FOOTER FIX --- */
/* Ensure footer is always at bottom even if content is short (not the case here but good practice) */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.site-footer {
    margin-top: auto;
}

/* --- BOOKING WIDGET --- */
.calendarWidget {
    display: none;
    /* Hide all initially */
}

.calendarWidget.active {
    display: block;
    /* Show only active language */
}

/* --- FALLBACK FOR JS-LESS LOADING --- */
/* Show DE widget by default if no active class is present on any widget (optional safety, harder to do with pure CSS sibling selectors without a parent class, but we can default one to block if needed, but JS should handle it fast enough). */
/* Actually, let's just ensure the container has a min-height so it doesn't collapse. */
/* Default Desktop Height */
.booking-widget-box {
    height: 400px;
    /* Increased to 400px per user request */
    overflow: hidden;
    background: transparent;
}

.calendarWidget,
.calendarContent,
.calendarContent iframe {
    height: 100% !important;
    width: 100% !important;
    max-height: 100% !important;
    /* Inherit from container */
    border: none !important;
    display: block !important;
}

/* Ensure no double scrollbars */
#booking-widget-container iframe {
    overflow: hidden !important;
}

@media (max-width: 768px) {
    .booking-widget-box {
        height: 435px !important;
    }

    /* Force iframe to follow container */
    .calendarWidget,
    .calendarContent,
    .calendarContent iframe {
        max-height: 435px !important;
    }
}

/* --- BOOKING LAYOUT UPDATE --- */
.booking-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
    justify-content: space-between;
}

.booking-info {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.headline-large {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--color-primary);
}

.btn-gold {
    background-color: #CBAA5C;
    color: white;
    border-radius: 4px;
    /* Slightly sharper as per image hint */
    padding: 1rem 3rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.btn-gold:hover {
    background-color: #bb9b4f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(203, 170, 92, 0.3);
}

/* Adjust widget container for new layout */
#booking-widget-container {
    flex: 1.5;
    min-width: 300px;
}

@media (max-width: 900px) {
    .booking-layout {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .booking-info {
        text-align: center;
        margin-bottom: 2rem;
        width: 100%;
    }

    /* Mobile Widget Constraints */
    .booking-widget-box {
        width: 100%;
        height: 435px !important;
        /* Matches Desktop preference */
        max-height: 435px !important;
        flex: none !important;
    }
}

/* --- FOOTER SOCIAL --- */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-social a {
    color: var(--color-white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
    transition: all 0.2s;
}

.footer-social a:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
}

/* --- MOBILE MENU --- */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    /* Above mobile nav */
    padding: 0.5rem;
}

.burger-menu span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-primary);
    transition: all 0.3s ease;
}

/* Transform to X when open */
.burger-menu.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .main-nav {
        display: block;
        /* Override none */
        position: fixed;
        top: 0;
        right: -100%;
        /* Hidden */
        width: 80%;
        /* Drawer width */
        max-width: 300px;
        height: 100vh;
        background: var(--color-white);
        padding: 5rem 2rem;
        /* Space for X */
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .main-nav.active {
        right: 0;
        /* Slide in */
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .main-nav a {
        font-size: 1.2rem;
    }
}

/* --- COOKIE PREFERENCES TRIGGER --- */
#cookie-reopen-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--color-white);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 998;
    /* Below banner */
    border: none;
    transition: transform 0.2s;
}

#cookie-reopen-btn:hover {
    transform: scale(1.1);
}

/* Hide initial text when re-opened in 'settings mode' (optional, but handled nicely via JS logic usually, or we hide it if simplified) */
/* --- COOKIE CONSENT MODAL (FIXED) --- */
.cookie-banner {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    bottom: auto !important;
    /* Reset bottom */
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.6) !important;
    /* Backdrop */
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000 !important;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-banner.show {
    display: flex !important;
    /* Override generic show */
    opacity: 1;
}

.cookie-content {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    /* Reset old layout */
    margin: 0 !important;
    flex-wrap: nowrap !important;
    flex-direction: column !important;
}

.cookie-banner.show .cookie-content {
    transform: translateY(0);
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    width: 100%;
}

.cookie-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: #666;
    font-size: 0.9rem;
    text-decoration: underline;
}

/* --- REVIEWS SECTION --- */
.reviews {
    background: var(--color-bg-light);
    position: relative;
    overflow: hidden;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.review-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.review-stars {
    color: #CBAA5C;
    /* Gold */
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.review-text {
    font-style: italic;
    color: #444;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.review-author {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}