/* ============================================================
   NAPOLES Design System — Frozen Lake
   Editorial-Minimalist · Architectural Portfolio Grade
   Slate Gray × Icy Blue × Snow White × Navy
   ============================================================ */

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ============================================================
   DESIGN TOKENS — Frozen Lake
   ============================================================ */
:root {
    /* ── Frozen Lake Palette */
    --slate: #6D8196;
    --slate-dark: #4A6178;
    --slate-deeper: #344757;
    --ice: #ADD8E6;
    --ice-light: #C8E8F0;
    --ice-pale: #E0F2F7;
    --ice-ghost: #F0F8FB;
    --snow: #FFFAFA;
    --navy: #000080;
    --navy-light: #0A0AAA;
    --navy-muted: #1A1A99;

    /* ── Semantic Primaries */
    --c-primary: var(--navy);
    --c-primary-dark: #00005C;
    --c-primary-light: var(--ice);
    --c-accent: var(--ice);
    --c-accent-glow: rgba(173, 216, 230, 0.35);

    /* ── Backgrounds */
    --c-bg: var(--snow);
    --c-bg-alt: #F5F7FA;
    --c-bg-section: var(--ice-ghost);
    --c-bg-card: #FFFFFF;
    --c-bg-dark: var(--navy);
    --c-bg-darker: #00005C;

    /* ── Text */
    --c-text: #0A0A2E;
    --c-text-secondary: var(--slate-dark);
    --c-text-muted: var(--slate);
    --c-text-light: var(--ice);
    --c-text-on-dark: var(--snow);
    --c-text-on-primary: #FFFFFF;

    /* Legacy compat */
    --color-sand: var(--c-bg);
    --color-obsidian: var(--navy);
    --color-forest: var(--navy);
    --color-forest-2: var(--c-bg-darker);
    --color-gold: var(--ice);
    --color-gold-light: var(--ice-light);
    --color-sand-dark: var(--c-bg-alt);
    --color-sand-card: var(--c-bg-card);
    --c-text-primary: var(--c-text);
    --border-card: rgba(109, 129, 150, 0.12);
    --border-subtle: rgba(109, 129, 150, 0.08);
    --border-gold: rgba(173, 216, 230, 0.5);

    /* ── Accents */
    --c-success: #10B981;
    --c-warning: #F59E0B;
    --c-error: #EF4444;

    /* ── Gradients */
    --g-primary: linear-gradient(135deg, var(--navy) 0%, #0A0A6E 100%);
    --g-hero: linear-gradient(160deg, #00003A 0%, var(--navy) 40%, #0A0A6E 100%);
    --g-silk: linear-gradient(135deg, var(--ice-ghost) 0%, var(--ice-pale) 50%, var(--ice-ghost) 100%);
    --g-glow-ice: radial-gradient(ellipse at 50% 50%, rgba(173, 216, 230, 0.08), transparent 70%);

    /* ── Shadows (sharp, architectural) */
    --shadow-sm: 0 1px 2px rgba(0, 0, 128, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 128, 0.06);
    --shadow-lg: 0 12px 40px rgba(0, 0, 128, 0.08);
    --shadow-xl: 0 24px 64px rgba(0, 0, 128, 0.10);
    --shadow-glow: 0 0 40px rgba(173, 216, 230, 0.3);
    --shadow-glow-sm: 0 0 20px rgba(173, 216, 230, 0.2);
    --shadow-card: 0 1px 4px rgba(0, 0, 128, 0.04);

    /* ── Typography */
    --f-heading: 'Instrument Serif', Georgia, serif;
    --f-body: 'Inter', -apple-system, sans-serif;

    /* ── Radii — Sharp architectural (tiny borders) */
    --r-sm: 2px;
    --r-md: 2px;
    --r-lg: 2px;
    --r-xl: 2px;
    --r-2xl: 2px;
    --r-pill: 100px;
    --r-full: 50%;
    --r-luxury: 2px;

    /* ── Spacing (generous, editorial whitespace) */
    --s-xs: 4px;
    --s-sm: 8px;
    --s-md: 16px;
    --s-lg: 24px;
    --s-xl: 40px;
    --s-2xl: 64px;
    --s-3xl: 100px;
    --s-4xl: 150px;

    /* ── Transitions */
    --t-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --t-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --t-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);

    /* ── Layout */
    --nav-height: 72px;
    --container-max: 1200px;

    /* ── Borders */
    --b-fine: 1px;
}

/* ============================================================
   BASE STYLES — Editorial Minimalist
   ============================================================ */
body {
    font-family: var(--f-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: -0.01em;
    color: var(--c-text);
    background: var(--c-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

h1, h2 {
    font-family: var(--f-heading) !important;
    font-weight: 400;
    font-style: normal;
    line-height: 0.95;
    color: var(--c-text);
    letter-spacing: -0.03em;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
}

h3, h4, h5 {
    font-family: var(--f-heading) !important;
    font-weight: 400;
    line-height: 1.15;
    color: var(--c-text);
    letter-spacing: -0.02em;
    font-size: 1.3rem;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--s-lg);
}

.section { padding: var(--s-3xl) 0; }
.section-alt { background: var(--c-bg-alt); }

/* Grid Utilities */
.row { display: flex; flex-wrap: wrap; margin-right: -15px; margin-left: -15px; }
.col-lg-6 { position: relative; width: 100%; padding-right: 15px; padding-left: 15px; }
@media (min-width: 992px) {
    .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
}
.g-4 { gap: 1.5rem; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.text-center { text-align: center !important; }
.lead { font-size: 1.1rem; line-height: 1.6; }

/* ============================================================
   SECTION HEADERS — Editorial with line accent
   ============================================================ */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--s-sm);
    padding: 6px 16px;
    background: transparent;
    border: 1px solid var(--slate);
    border-radius: 2px;
    font-family: var(--f-body);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: var(--s-lg);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    margin-bottom: var(--s-lg);
    max-width: 700px;
    line-height: 1.05;
}

.section-title.centered { text-align: center; margin-left: auto; margin-right: auto; }

.section-subtitle {
    font-size: 1rem;
    color: var(--c-text-secondary);
    line-height: 1.8;
    max-width: 560px;
    font-weight: 400;
}

.section-subtitle.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-header { text-align: center; margin-bottom: var(--s-3xl); }

.gradient-text {
    /* Folosit pe titluri cu fundal deschis -> culoare cu contrast suficient (WCAG AA) */
    color: var(--slate-dark);
    font-style: italic;
}

/* Skip-to-content link pentru accesibilitate (vizibil doar la focus cu tastatura) */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 100000;
    background: var(--navy, #001F3F);
    color: #fff;
    padding: 12px 20px;
    border-radius: 0 0 6px 0;
    text-decoration: none;
    font-weight: 600;
}
.skip-link:focus {
    left: 0;
}

/* ============================================================
   DOT GRID DECORATIONS
   ============================================================ */
.dot-grid {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, var(--slate) 1px, transparent 1px);
    background-size: 16px 16px;
    opacity: 0.15;
    pointer-events: none;
}

/* ============================================================
   BUTTONS — Sharp, Fill-up hover, Glow effect
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--s-sm);
    padding: 14px 36px;
    border-radius: 2px;
    font-family: var(--f-body);
    font-weight: 500;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    cursor: pointer;
    border: 1.5px solid transparent;
    text-decoration: none;
    transition: all var(--t-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Fill-up hover effect */
.btn::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 0;
    background: var(--navy);
    transition: height var(--t-normal);
    z-index: -1;
}

.btn:hover::before { height: 100%; }

.btn-primary {
    background: var(--navy);
    color: var(--snow);
    border-color: var(--navy);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover:not(:disabled) {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
    box-shadow: var(--shadow-glow-sm);
}

/* Reverse fill for primary hover */
.btn-primary::before { background: transparent; }
.btn-primary:hover::before { height: 0; }

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--navy);
}

.btn-outline:hover {
    color: var(--snow);
    box-shadow: var(--shadow-glow-sm);
}

.btn-gold, .btn-white {
    background: var(--snow);
    color: var(--navy);
    border-color: rgba(109, 129, 150, 0.2);
}

.btn-gold:hover, .btn-white:hover {
    color: var(--snow);
    border-color: var(--navy);
    box-shadow: var(--shadow-glow-sm);
}

.btn-lg { padding: 16px 44px; font-size: 0.85rem; }
.btn-block { width: 100%; justify-content: center; }

/* Glow on focus */
.btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--c-accent-glow);
}

/* Disabled state */
.btn:disabled,
.btn.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
    filter: grayscale(0.2);
    box-shadow: none !important;
}

/* ============================================================
   NAVBAR — Frosted Glass, architectural
   ============================================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-height);
    background: rgba(255, 250, 250, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(109, 129, 150, 0.1);
    z-index: 1000;
    transition: all var(--t-normal);
}

.navbar.scrolled {
    background: rgba(255, 250, 250, 0.95);
    box-shadow: 0 1px 30px rgba(0, 0, 128, 0.04);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 64px; /* Increased from 40px */
    width: auto;
    display: block;
    transition: transform var(--t-fast);
}

.nav-logo:hover .logo-img {
    transform: scale(1.05);
}

.logo-text {
    color: var(--navy);
    letter-spacing: 0.12em;
    font-size: 1.1rem;
    font-family: var(--f-body);
    font-weight: 600;
    text-transform: uppercase;
}

/* Logo icon removed in favor of image logo */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-link {
    padding: 8px 16px;
    font-family: var(--f-body);
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--slate-dark);
    border-radius: 2px;
    transition: all var(--t-fast);
    position: relative;
}

/* Underline reveal on hover */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 16px; right: 16px;
    height: 1px;
    background: var(--navy);
    transform: scaleX(0);
    transition: transform var(--t-normal);
    transform-origin: left;
}

.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link:hover, .nav-link.active { color: var(--navy); }

.nav-cta {
    background: var(--navy) !important;
    color: var(--snow) !important;
    padding: 10px 24px !important;
    border-radius: 2px !important;
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.14em !important;
    transition: all var(--t-normal) !important;
    border: 1.5px solid var(--navy) !important;
}

.nav-cta:hover {
    background: transparent !important;
    color: var(--navy) !important;
    box-shadow: var(--shadow-glow-sm) !important;
}

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: var(--s-sm); }

.hamburger, .hamburger::before, .hamburger::after {
    display: block; width: 22px; height: 1.5px;
    background: var(--navy);
    transition: all var(--t-fast);
}

.hamburger { position: relative; }
.hamburger::before, .hamburger::after { content: ''; position: absolute; left: 0; }
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

/* ============================================================
   HERO — Dark cinematic, architectural overlay
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--nav-height) + var(--s-3xl)) var(--s-lg) var(--s-2xl);
    /* Fallback JPG pentru browsere fără image-set */
    background-image: url('../images/hacienda_napoles.jpg');
    /* WebP cu fallback JPG (reduce LCP ~47%) */
    background-image: -webkit-image-set(url('../images/hacienda_napoles.webp') type('image/webp'), url('../images/hacienda_napoles.jpg') type('image/jpeg'));
    background-image: image-set(url('../images/hacienda_napoles.webp') type('image/webp'), url('../images/hacienda_napoles.jpg') type('image/jpeg'));
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Navy overlay with grain */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 80, 0.53);
    z-index: 1;
}

/* Vignette gradient */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(0, 0, 60, 0.18) 0%,
        rgba(0, 0, 80, 0.48) 50%,
        rgba(0, 0, 60, 0.88) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.92;
    margin-bottom: var(--s-xl);
    text-shadow: none;
    font-weight: 400;
    letter-spacing: -0.04em;
    color: var(--snow);
    font-family: var(--f-heading);
}

.hero-subtitle {
    color: rgba(173, 216, 230, 0.85);
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto var(--s-xl);
    letter-spacing: 0.02em;
}

.hero-title .highlight {
    color: var(--ice);
    font-style: italic;
}

.hero-play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: transparent;
    border-radius: var(--r-full);
    border: 1.5px solid rgba(173, 216, 230, 0.4);
    box-shadow: 0 0 40px rgba(173, 216, 230, 0.15);
    cursor: pointer;
    margin: var(--s-2xl) auto;
    transition: all var(--t-normal);
}

.hero-play-btn:hover {
    background: var(--ice);
    border-color: var(--ice);
    box-shadow: 0 0 60px rgba(173, 216, 230, 0.35);
    transform: scale(1.08);
}

.hero-play-btn i {
    font-size: 1.4rem;
    color: var(--ice);
    margin-left: 3px;
    transition: color var(--t-fast);
}

.hero-play-btn:hover i { color: var(--navy); }

.hero-watermark {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--f-heading);
    font-size: clamp(5rem, 14vw, 12rem);
    font-weight: 400;
    color: rgba(173, 216, 230, 0.04);
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    letter-spacing: 0.05em;
}

/* ============================================================
   COUNTDOWN — Navy with icy numbers
   ============================================================ */
.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--s-3xl);
    padding: var(--s-2xl) 0;
    background: var(--navy);
    position: relative;
    z-index: 2;
}

/* Grain texture on dark surfaces */
.countdown::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
}

.countdown-item { text-align: center; }

.countdown-number {
    font-family: var(--f-heading);
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--ice);
    line-height: 1;
    text-shadow: 0 0 30px rgba(173, 216, 230, 0.15);
}

.countdown-label {
    font-size: 0.65rem;
    font-weight: 600;
    font-family: var(--f-body);
    color: var(--slate);
    margin-top: var(--s-sm);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* ============================================================
   INFO STRIP — Thin, minimal
   ============================================================ */
.info-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-bottom: 1px solid var(--border-card);
    position: relative;
    z-index: 3;
}

.info-strip-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--s-md);
    padding: var(--s-lg) var(--s-md);
    background: var(--c-bg);
    border-right: 1px solid var(--border-card);
    transition: all var(--t-normal);
}

.info-strip-card:last-child { border-right: none; }
.info-strip-card:hover { background: var(--c-bg-alt); }
.info-strip-card i { font-size: 1.1rem; color: var(--navy); }

.info-strip-card span {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--c-text-secondary);
    letter-spacing: 0.02em;
}

/* ── Hero Overlay Variant */
.hero-info-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
    z-index: 10;
}

.hero-info-strip .info-strip-card {
    background: transparent;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-info-strip .info-strip-card i {
    color: var(--ice);
}

.hero-info-strip .info-strip-card span {
    color: var(--snow);
}

.hero-info-strip .info-strip-card:hover {
    background: rgba(255, 255, 255, 0.08);
}

.hero-info-strip .info-strip-card:hover i {
    color: var(--snow);
    transform: scale(1.1);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { background: var(--c-bg); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-3xl);
    align-items: center;
}

.about-stats {
    display: flex;
    gap: var(--s-2xl);
    margin-top: var(--s-xl);
}

.about-stat-number {
    font-family: var(--f-heading);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--navy);
    line-height: 1;
}

.about-stat-number .plus { font-size: 2rem; color: var(--ice); }

.about-stat-label {
    font-size: 0.7rem;
    color: var(--slate);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-family: var(--f-body);
    font-weight: 600;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: var(--s-sm);
}

.about-img {
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid var(--border-card);
    transition: all var(--t-normal);
}

.about-img:hover {
    box-shadow: var(--shadow-glow-sm);
    border-color: var(--ice);
}

.about-img.tall { grid-row: 1 / 3; }

.about-img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--s-sm);
    height: 100%;
    min-height: 180px;
    background: var(--c-bg-alt);
    color: var(--slate);
    font-size: 0.85rem;
    padding: var(--s-xl);
}

.about-img.tall .about-img-placeholder { min-height: 380px; }
.about-img-placeholder i { font-size: 2.2rem; color: var(--slate); opacity: 0.4; }

/* ============================================================
   FEATURES GRID — Architectural cards, glow on hover
   ============================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-md);
}

.feature-card {
    background: var(--c-bg-card);
    border: 1px solid var(--border-card);
    border-radius: 2px;
    padding: var(--s-xl) var(--s-lg);
    transition: all var(--t-normal);
    position: relative;
    overflow: hidden;
}

/* Top accent line — reveals on hover */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--ice);
    transform: scaleX(0);
    transition: transform var(--t-normal);
    transform-origin: left;
}

.feature-card:hover { border-color: var(--ice); box-shadow: var(--shadow-glow-sm); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--c-bg-alt);
    border: 1px solid var(--border-card);
    border-radius: 2px;
    margin-bottom: var(--s-lg);
    transition: all var(--t-normal);
}

.feature-card:hover .feature-icon {
    background: var(--navy);
    border-color: var(--navy);
}

.feature-icon i { font-size: 1.4rem; color: var(--navy); transition: color var(--t-fast); }
.feature-card:hover .feature-icon i { color: var(--ice); }

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: var(--s-sm);
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--c-text-secondary);
    line-height: 1.75;
}

/* ============================================================
   STATS SECTION — Navy with icy glow numbers
   ============================================================ */
.stats-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

/* Grain overlay */
.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-md);
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: var(--s-xl) var(--s-md);
    border: 1px solid rgba(173, 216, 230, 0.08);
    border-radius: 2px;
    transition: all var(--t-normal);
}

.stat-item:hover {
    border-color: rgba(173, 216, 230, 0.25);
    box-shadow: var(--shadow-glow-sm);
}

.stat-number {
    font-family: var(--f-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    color: var(--ice);
    line-height: 1;
    margin-bottom: var(--s-sm);
    text-shadow: 0 0 30px rgba(173, 216, 230, 0.2);
}

.stat-number .plus { font-size: 60%; color: var(--slate); }

.stat-label {
    font-size: 0.68rem;
    font-weight: 600;
    font-family: var(--f-body);
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

/* ============================================================
   PRICING CARDS — Rounded, premium, matching screenshot
   ============================================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-lg);
    align-items: start;
}

.pricing-card {
    background: var(--c-bg-card);
    border: 1px solid rgba(173, 216, 230, 0.25);
    border-radius: 16px;
    padding: var(--s-2xl) var(--s-xl);
    transition: all var(--t-normal);
    position: relative;
    box-shadow: 0 2px 16px rgba(0, 0, 128, 0.04);
}

.pricing-card:hover {
    border-color: var(--ice);
    box-shadow: 0 8px 40px rgba(173, 216, 230, 0.2);
    transform: translateY(-6px);
}

/* Featured — Navy gradient, elevated */
.pricing-card.featured {
    background: linear-gradient(180deg, #000070 0%, #00005C 100%);
    border-color: rgba(173, 216, 230, 0.15);
    box-shadow: 0 12px 48px rgba(0, 0, 128, 0.2);
    transform: scale(1.04);
    z-index: 1;
    padding-top: calc(var(--s-2xl) + 16px);
}

.pricing-card.featured .pricing-label,
.pricing-card.featured .pricing-value,
.pricing-card.featured .pricing-features li,
.pricing-card.featured .pricing-unit,
.pricing-card.featured .pricing-note,
.pricing-card.featured h3 {
    color: var(--snow) !important;
}

.pricing-card.featured .pricing-features li i {
    color: var(--ice) !important;
}

.pricing-card.featured .pricing-amount {
    border-bottom-color: rgba(173, 216, 230, 0.12);
}

.pricing-card.featured .pricing-features li {
    border-bottom-color: rgba(173, 216, 230, 0.06);
}

.pricing-card.featured:hover {
    box-shadow: 0 16px 60px rgba(0, 0, 128, 0.3), var(--shadow-glow);
    transform: scale(1.04) translateY(-6px);
}

/* Featured badge — Navy pill (no yellow!) */
.pricing-card.featured::before {
    content: '★ RECOMANDAT ★';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    color: var(--ice);
    font-size: 0.6rem;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: var(--r-pill);
    white-space: nowrap;
    letter-spacing: 0.16em;
    font-family: var(--f-body);
    text-transform: uppercase;
    border: 1px solid rgba(173, 216, 230, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 128, 0.15);
}

/* Featured button — Icy gradient */
.pricing-card.featured .btn {
    background: linear-gradient(135deg, var(--ice) 0%, #48cae4 100%);
    color: var(--navy);
    border-color: transparent;
    border-radius: var(--r-pill);
    font-weight: 700;
}

.pricing-card.featured .btn:hover {
    box-shadow: 0 4px 20px rgba(173, 216, 230, 0.4);
    transform: translateY(-2px);
}

.pricing-label {
    font-family: var(--f-body);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--slate);
    margin-bottom: var(--s-sm);
}

.pricing-amount {
    margin-bottom: var(--s-xl);
    padding-bottom: var(--s-xl);
    border-bottom: 1px solid var(--border-card);
}

.pricing-value {
    display: block;
    font-family: var(--f-heading);
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    font-weight: 400;
    color: var(--navy);
    line-height: 1;
}

.pricing-unit {
    display: block;
    font-size: 0.82rem;
    color: var(--slate);
    margin-top: 8px;
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    font-size: 0.9rem;
    color: var(--c-text-secondary);
    border-bottom: 1px solid rgba(109, 129, 150, 0.06);
}

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

.pricing-features li i {
    color: var(--ice);
    font-size: 1rem;
    flex-shrink: 0;
}

/* Regular card buttons — pill-shaped outline */
.pricing-card .btn {
    border-radius: var(--r-pill);
}

.pricing-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--slate);
    margin-top: var(--s-md);
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.row { display: flex; flex-wrap: wrap; margin-right: -15px; margin-left: -15px; }
.col-lg-6 { flex: 0 0 50%; max-width: 50%; padding-right: 15px; padding-left: 15px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.cta-card {
    background: var(--snow);
    padding: var(--s-2xl);
    border-radius: var(--r-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--s-xl);
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-lg);
}

.testimonials-section { background: var(--c-bg-alt); }

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--s-2xl);
}

.testimonials-nav { display: flex; gap: var(--s-sm); }

.testimonials-nav button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    border-radius: 2px;
    border: 1px solid var(--border-card);
    background: transparent;
    color: var(--navy);
    cursor: pointer;
    font-size: 1rem;
    transition: all var(--t-fast);
}

.testimonials-nav button:hover {
    background: var(--navy);
    color: var(--ice);
    border-color: var(--navy);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-md);
}

.testimonial-card {
    background: var(--c-bg-card);
    border: 1px solid var(--border-card);
    border-radius: 2px;
    padding: var(--s-xl);
    transition: all var(--t-normal);
}

.testimonial-card:hover {
    border-color: var(--ice);
    box-shadow: var(--shadow-glow-sm);
}

.testimonial-text {
    font-size: 0.92rem;
    color: var(--c-text-secondary);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: var(--s-lg);
    font-family: var(--f-heading);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--s-md);
    margin-bottom: var(--s-md);
}

.testimonial-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 2px;
    background: var(--navy);
    color: var(--ice);
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-name { font-weight: 700; font-size: 0.9rem; }
.testimonial-location { font-size: 0.78rem; color: var(--slate); }

.testimonial-stars { display: flex; gap: 2px; margin-bottom: 4px; }
.testimonial-stars i { color: var(--ice); font-size: 0.85rem; }
.testimonial-rating { font-size: 0.72rem; color: var(--slate); letter-spacing: 0.05em; }

/* ============================================================
   FAQ — Clean accordion
   ============================================================ */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: var(--s-3xl);
    align-items: start;
}

.faq-item {
    border-bottom: 1px solid var(--border-card);
    transition: all var(--t-normal);
}

.faq-item.open { border-color: var(--navy); }

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--s-lg) 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--f-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--c-text);
    text-align: left;
    gap: var(--s-md);
    transition: all var(--t-fast);
}

.faq-question:hover { color: var(--navy); }

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    border-radius: 2px;
    border: 1px solid var(--border-card);
    color: var(--navy);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all var(--t-fast);
}

.faq-item.open .faq-toggle {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--ice);
    transform: rotate(45deg);
}

.faq-answer { display: none; padding: 0 0 var(--s-lg); }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { font-size: 0.9rem; color: var(--c-text-secondary); line-height: 1.8; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--s-2xl);
}

.contact-info-card {
    background: var(--c-bg-card);
    border: 1px solid var(--border-card);
    border-radius: 2px;
    padding: var(--s-2xl);
    transition: all var(--t-normal);
}

.contact-info-card:hover { border-color: var(--ice); box-shadow: var(--shadow-glow-sm); }
.contact-info-card h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: var(--s-sm); }
.contact-info-card > p { color: var(--c-text-secondary); font-size: 0.9rem; margin-bottom: var(--s-xl); }

.terms-section h3 {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.terms-section ul {
    list-style: none;
    padding: 0;
}

.terms-section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--slate);
    line-height: 1.6;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: var(--s-md);
    padding: var(--s-md) 0;
    font-size: 0.9rem;
    color: var(--c-text-secondary);
    border-bottom: 1px solid var(--border-subtle);
    transition: color var(--t-fast);
}

.contact-detail:last-child { border-bottom: none; }
.contact-detail:hover { color: var(--navy); }
.contact-detail i { color: var(--navy); font-size: 1rem; width: 20px; flex-shrink: 0; }

.contact-form-card {
    background: var(--c-bg-card);
    border: 1px solid var(--border-card);
    border-radius: 2px;
    padding: var(--s-2xl);
    transition: all var(--t-normal);
}

.contact-form-card:focus-within { border-color: var(--ice); box-shadow: var(--shadow-glow-sm); }

/* ============================================================
   CTA FINAL — Full navy with glow
   ============================================================ */
.cta-section {
    position: relative;
    background: var(--navy);
    overflow: hidden;
    text-align: center;
    padding: var(--s-4xl) 0;
}

/* Grain */
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Radial glow */
.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(173, 216, 230, 0.06), transparent);
    pointer-events: none;
}

.cta-section .section-badge {
    border-color: rgba(173, 216, 230, 0.3);
    color: var(--ice);
}

.cta-section .section-title { color: var(--snow); }
.cta-section .section-subtitle { color: var(--slate); }

.cta-section .btn-primary {
    background: var(--ice);
    color: var(--navy);
    border-color: var(--ice);
}

.cta-section .btn-primary:hover:not(:disabled) {
    background: var(--snow);
    box-shadow: var(--shadow-glow);
}

/* ============================================================
   ANIMATIONS — Staggered reveal
   ============================================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLine {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(173, 216, 230, 0.15); }
    50% { box-shadow: 0 0 40px rgba(173, 216, 230, 0.3); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Staggered reveal classes */
.animate-ready {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for grid children */
.features-grid .animate-in:nth-child(1) { transition-delay: 0s; }
.features-grid .animate-in:nth-child(2) { transition-delay: 0.1s; }
.features-grid .animate-in:nth-child(3) { transition-delay: 0.2s; }
.features-grid .animate-in:nth-child(4) { transition-delay: 0.3s; }
.features-grid .animate-in:nth-child(5) { transition-delay: 0.4s; }
.features-grid .animate-in:nth-child(6) { transition-delay: 0.5s; }

.stats-grid .animate-in:nth-child(1) { transition-delay: 0s; }
.stats-grid .animate-in:nth-child(2) { transition-delay: 0.12s; }
.stats-grid .animate-in:nth-child(3) { transition-delay: 0.24s; }
.stats-grid .animate-in:nth-child(4) { transition-delay: 0.36s; }

.pricing-grid .animate-in:nth-child(1) { transition-delay: 0s; }
.pricing-grid .animate-in:nth-child(2) { transition-delay: 0.15s; }
.pricing-grid .animate-in:nth-child(3) { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .about-images { display: none; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-4px); }
    .faq-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .countdown { gap: var(--s-xl); }
    .info-strip { grid-template-columns: 1fr; }
    .info-strip-card { border-right: none; border-bottom: 1px solid var(--border-card); }
    .features-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-header { flex-direction: column; align-items: flex-start; gap: var(--s-md); }

    .nav-menu {
        display: none;
        position: fixed;
        top: var(--nav-height);
        left: 0; right: 0;
        background: rgba(255, 250, 250, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-card);
        flex-direction: column;
        padding: var(--s-lg);
        gap: 2px;
    }

    .nav-menu.active { display: flex; }
    .nav-link { padding: 14px 16px; width: 100%; }
    .nav-link::after { bottom: 10px; }
    .nav-toggle { display: block; }

    /* Responsive Typography & Spacing */
    .page-title { font-size: clamp(2.5rem, 8vw, 4rem); }
    .section-title { font-size: clamp(2rem, 6vw, 3rem); }
    .section { padding: 60px 0; }
    .page-hero { padding: 100px 0 60px; }
    
    .venue-specs-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
}

/* ============================================================
   BOOKING TYPE SELECTOR & DEPOSIT NOTICE
   ============================================================ */
.booking-type-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.type-option {
    background: #fff;
    border: 1px solid var(--border-card);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all var(--t-normal);
    position: relative;
}

.type-option:hover {
    border-color: var(--ice);
    background: rgba(173, 216, 230, 0.05);
}

.type-option.active {
    border-color: var(--navy);
    background: #F0F4F8;
    box-shadow: 0 4px 12px rgba(0, 31, 112, 0.05);
}

.type-option-icon {
    width: 40px;
    height: 40px;
    background: var(--c-bg-alt);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--navy);
    transition: all var(--t-normal);
}

.type-option.active .type-option-icon {
    background: var(--navy);
    color: var(--ice);
}

.type-option-text {
    flex: 1;
}

.type-option-text strong {
    display: block;
    font-size: 0.9rem;
    color: var(--navy);
}

.type-option-text span {
    display: block;
    font-size: 0.75rem;
    color: var(--slate);
}

.type-option-check {
    opacity: 0;
    color: var(--navy);
    font-size: 1.2rem;
    transition: all var(--t-normal);
}

.type-option.active .type-option-check {
    opacity: 1;
}

/* Deposit Notice */
.deposit-notice {
    background: #FFF9EB;
    border: 1px solid #FFE5A1;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    animation: fadeInUp 0.4s ease-out;
}

.deposit-notice-icon {
    font-size: 1.5rem;
    color: #D97706;
}

.deposit-notice-content strong {
    display: block;
    font-size: 0.9rem;
    color: #92400E;
    margin-bottom: 4px;
}

.deposit-notice-content p {
    font-size: 0.85rem;
    color: #B45309;
    line-height: 1.5;
    margin: 0;
}

/* Deposit Info Box (Deferred Auth) */
.deposit-info-box {
    background: rgba(247, 231, 206, 0.1);
    border: 1px solid rgba(247, 231, 206, 0.3);
    border-radius: 12px;
    padding: 16px;
    margin-top: 12px;
    border-left: 4px solid var(--gold);
}

.deposit-row {
    margin-bottom: 8px !important;
}

.deposit-explanation {
    font-size: 0.85rem;
    color: var(--slate);
    line-height: 1.6;
    margin: 0;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.deposit-explanation i {
    font-size: 1.1rem;
    color: var(--gold);
    margin-top: 2px;
}

.deposit-explanation strong {
    color: var(--navy);
}

@media (max-width: 600px) {
    .booking-type-selector {
        grid-template-columns: 1fr;
    }
}