/* =============================================
   La Livadă — stylesheet
   Paletă: cremă caldă · verde livadă · roz prăfuit
   Tipografie: Fraunces (display) + Manrope (corp)
   ============================================= */

:root {
    /* paletă - aliniată cu logo-ul */
    --c-bg:        #F5F0E6;
    --c-bg-alt:    #EFE9DC;
    --c-paper:     #FFFCF6;
    --c-ink:       #1F2419;
    --c-ink-soft:  #4A5040;
    --c-muted:     #8A8B7C;
    --c-line:      #DCD4C2;

    --c-green:     #1F4F2D;   /* verde livadă - din logo */
    --c-green-2:   #2D6B3C;
    --c-green-3:   #4D8854;

    --c-orange:    #E8862B;   /* portocaliu cald - din casa logo-ului */
    --c-orange-soft:#F4B473;
    --c-rose:      #B25F5F;   /* păstrat ca accent secundar */
    --c-rose-soft: #D9A4A0;
    --c-clay:      #C68F5E;

    /* tipografie */
    --f-display: 'Fraunces', 'Times New Roman', serif;
    --f-body:    'Manrope', system-ui, -apple-system, sans-serif;

    /* spațiu */
    --container: 1180px;
    --pad: clamp(20px, 4vw, 40px);

    /* radii & umbre */
    --radius: 14px;
    --radius-lg: 24px;
    --shadow-sm: 0 1px 2px rgba(31, 36, 25, .06), 0 4px 16px rgba(31, 36, 25, .04);
    --shadow-md: 0 6px 24px rgba(31, 36, 25, .08), 0 16px 48px rgba(31, 36, 25, .06);
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--c-bg);
    color: var(--c-ink);
    font-family: var(--f-body);
    font-size: 17px;
    line-height: 1.65;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    background-image:
        radial-gradient(1200px 600px at 100% -10%, rgba(178, 95, 95, .04), transparent 60%),
        radial-gradient(1000px 500px at -10% 30%, rgba(45, 62, 44, .04), transparent 60%);
}

img { max-width: 100%; display: block; }

a { color: var(--c-green); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--c-rose); }

.muted { color: var(--c-muted); }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad);
}

/* ---------- Tipografie ---------- */
.display {
    font-family: var(--f-display);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 0.5em;
    font-variation-settings: 'opsz' 96, 'SOFT' 30;
}
h1.display { font-size: clamp(40px, 7vw, 84px); }
h2.display { font-size: clamp(32px, 5vw, 56px); }
h3.display { font-size: clamp(24px, 3vw, 36px); }

.display em {
    font-style: italic;
    color: var(--c-green-3);
    font-variation-settings: 'opsz' 96, 'SOFT' 100;
}

.eyebrow {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--c-green);
    font-weight: 600;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--c-line);
    margin-bottom: 24px;
}
.eyebrow--accent { color: var(--c-rose); border-color: var(--c-rose-soft); }

.lede {
    font-size: clamp(17px, 1.5vw, 21px);
    line-height: 1.55;
    color: var(--c-ink-soft);
    max-width: 60ch;
}

/* ---------- Butoane ---------- */
.btn-primary, .btn-ghost, .btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--f-body);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.01em;
    border-radius: 999px;
    padding: 14px 28px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, background .25s ease, color .25s ease, border-color .25s ease;
    text-decoration: none;
    line-height: 1;
}
.btn-primary {
    background: var(--c-green);
    color: var(--c-paper);
}
.btn-primary:hover {
    background: var(--c-green-2);
    color: var(--c-paper);
    transform: translateY(-1px);
}
.btn-primary:disabled {
    background: var(--c-muted);
    cursor: not-allowed;
    transform: none;
}
.btn-large { padding: 18px 36px; font-size: 16px; }
.btn-ghost {
    background: transparent;
    color: var(--c-ink);
    border-color: var(--c-line);
}
.btn-ghost:hover { border-color: var(--c-ink); color: var(--c-ink); }

.btn-cta {
    background: var(--c-orange);
    color: white;
    padding: 11px 22px;
    font-size: 14px;
    box-shadow: 0 4px 16px rgba(232, 134, 43, 0.25);
}
.btn-cta:hover {
    background: var(--c-green);
    color: white;
    box-shadow: 0 6px 20px rgba(31, 79, 45, 0.3);
}

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
    background: transparent;
    border-bottom: 1px solid transparent;
}

/* Transparent peste hero - text alb / cremă */
.site-header.over-hero {
    background: linear-gradient(to bottom, rgba(31, 36, 25, 0.4), transparent);
}
.site-header.over-hero .brand,
.site-header.over-hero .nav a {
    color: var(--c-paper);
}
.site-header.over-hero .nav a:hover { color: white; }
.site-header.over-hero .brand-mark {
    background: var(--c-paper);
    color: var(--c-green);
}
.site-header.over-hero .nav-toggle span { background: var(--c-paper); }

/* Peste hero (DOAR cînd nu e scrolled): social icons + lang switcher sînt cremă deschisă */
.site-header.over-hero:not(.scrolled) .social-links a,
.site-header.over-hero:not(.scrolled) .social-links svg { color: var(--c-paper) !important; }
.site-header.over-hero:not(.scrolled) .lang-switcher,
.site-header.over-hero:not(.scrolled) .lang-switcher a { color: var(--c-paper) !important; }

/* La scroll - cremă solid + ink dark */
.site-header.scrolled {
    background: rgba(245, 240, 230, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--c-line);
}
.site-header.scrolled.over-hero {
    background: rgba(245, 240, 230, 0.96);
}
.site-header.scrolled .brand,
.site-header.scrolled .nav a {
    color: var(--c-ink);
}
.site-header.scrolled .brand-mark {
    background: var(--c-green);
    color: var(--c-paper);
}
.site-header.scrolled .nav-toggle span { background: var(--c-ink); }

/* La scroll: social icons + lang switcher devin întunecate, vizibile pe cremă */
.site-header.scrolled .social-links a,
.site-header.scrolled .social-links svg { color: var(--c-ink) !important; }
.site-header.scrolled .lang-switcher,
.site-header.scrolled .lang-switcher a { color: var(--c-ink) !important; }
.site-header.scrolled .lang-switcher a.active { color: var(--c-paper) !important; }

.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 14px var(--pad);
    display: flex;
    align-items: center;
    gap: 24px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-display);
    font-size: 22px;
    color: var(--c-ink);
    font-weight: 500;
    letter-spacing: -0.01em;
    text-decoration: none;
    transition: color .3s ease;
}
.brand-logo {
    width: auto;
    display: block;
    transition: opacity .3s ease, height .3s ease;
}
/* Comutarea logo-urilor în funcție de starea header-ului */
.site-header.over-hero:not(.scrolled) .brand-logo--scrolled { display: none; }
.site-header.scrolled .brand-logo--hero { display: none; }
/* Dacă ai un singur logo încărcat, browserul afișează acel singur element fără swap */
.brand-mark {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--c-green);
    color: var(--c-paper);
    display: grid; place-items: center;
    font-size: 13px; font-weight: 600;
    font-family: var(--f-body);
    letter-spacing: .02em;
    transition: background .3s ease, color .3s ease;
}
.nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav a {
    color: var(--c-ink-soft);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    text-decoration: none;
    transition: color .3s ease;
}
.nav a:hover { color: var(--c-ink); }
.nav a::after {
    content: ''; position: absolute;
    left: 0; right: 0; bottom: -4px;
    height: 1px; background: var(--c-orange);
    transform: scaleX(0); transform-origin: left;
    transition: transform .3s ease;
}
.nav a:hover::after { transform: scaleX(1); }

/* ---------- Language switcher (text RO / RU / EN) ---------- */
.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    margin-left: 14px;
    padding-left: 14px;
    border-left: 1px solid currentColor;
    opacity: 0.55;
    transition: opacity .3s ease;
}
.site-header.over-hero:not(.scrolled) .lang-switcher { opacity: 1; }
.site-header.over-hero:not(.scrolled) .lang-switcher a:not(.active) { opacity: 0.85; }
.site-header.over-hero:not(.scrolled) .lang-switcher a:not(.active):hover { opacity: 1; }
.site-header.over-hero:not(.scrolled) .social-links { opacity: 1; }
.lang-switcher a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    padding: 6px 10px;
    border-radius: 6px;
    font-family: var(--f-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: inherit !important;
    text-decoration: none;
    transition: background .2s ease, opacity .2s ease;
    opacity: 0.7;
}
.lang-switcher a:hover {
    opacity: 1;
}
.lang-switcher a.active {
    opacity: 1;
    background: var(--c-orange);
    color: var(--c-paper) !important;
}
.lang-switcher a::after { display: none !important; }

/* Mobile header actions container — switcher + hamburger împreună */
.mobile-header-actions {
    display: none;
    align-items: center;
    gap: 14px;
    margin-left: auto;
}
.lang-switcher--mobile { display: none; }
.lang-toggle-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    padding: 6px 10px;
    border-radius: 6px;
    font-family: var(--f-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: inherit !important;
    text-decoration: none;
    border: 1px solid currentColor;
    transition: background .2s ease, color .2s ease;
}
.lang-toggle-mobile:hover {
    background: var(--c-orange);
    color: var(--c-paper) !important;
    border-color: var(--c-orange);
}
.lang-toggle-mobile::after { display: none !important; }

@media (max-width: 860px) {
    /* Pe mobile: ascunde lang-switcher din nav, arată-l în mobile-header-actions */
    .nav > .lang-switcher { display: none; }
    .mobile-header-actions { display: inline-flex; }
    .lang-switcher--mobile { display: inline-flex; margin: 0; padding: 0; border: 0; opacity: 1; }

    /* În drawer-ul mobil deschis, lang-switcher apare din nou (sub social) */
    .nav.open > .lang-switcher {
        display: inline-flex !important;
        margin: 20px 0 0;
        padding: 20px 0 0;
        border-top: 1px solid var(--c-line);
        border-left: 0;
        gap: 8px;
        opacity: 1 !important;
    }
    /* Drawer-ul are fundal cremă — forțăm textul închis cu specificitate max */
    .site-header .nav.open > .lang-switcher,
    .site-header .nav.open > .lang-switcher a {
        color: var(--c-ink) !important;
    }
    .site-header .nav.open > .lang-switcher a {
        opacity: 1 !important;
        background: var(--c-bg-alt, #F0EBE0);
    }
    .site-header .nav.open > .lang-switcher a.active {
        color: var(--c-paper) !important;
        background: var(--c-orange) !important;
    }
    .nav.open .lang-switcher a {
        font-size: 14px;
        padding: 10px 18px;
        min-width: 50px;
    }
}
.social-links {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-left: 6px;
    padding-left: 18px;
    border-left: 1px solid currentColor;
    opacity: 0.55;
    transition: opacity .3s ease;
}
.social-links a {
    display: inline-flex;
    color: inherit !important;
    line-height: 0;
    transition: transform .2s ease, color .3s ease;
}
.social-links a:hover {
    color: var(--c-orange) !important;
    transform: translateY(-1px);
    opacity: 1;
}
.social-links a::after { display: none !important; }
.social-links svg { width: 18px; height: 18px; display: block; }

.nav-toggle {
    display: none;
    width: 40px; height: 40px;
    border: none; background: transparent;
    cursor: pointer; padding: 8px;
    flex-direction: column; gap: 5px; justify-content: center;
}
.nav-toggle span {
    width: 24px; height: 2px;
    background: var(--c-ink);
    transition: transform .3s ease, opacity .2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
    .nav { display: none; }
    .btn-cta {
        margin-left: auto;
        padding: 9px 16px;
        font-size: 13px;
    }
    .nav-toggle { display: flex; }

    /* Logo mai mic pe mobil */
    .brand-logo--hero { max-height: 44px; }
    .brand-logo--scrolled { max-height: 40px; }

    /* Drawer-ul mobil - peste tot, opac, deasupra paginii */
    .nav.open {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important;  /* dynamic viewport pentru iOS */
        flex-direction: column;
        justify-content: flex-start;    /* aliniate la top, nu centrate */
        align-items: center;
        background: #FFFCF6 !important;
        background-color: #FFFCF6 !important;
        padding: 80px 24px 40px !important;
        gap: 24px;
        z-index: 9999 !important;       /* peste TOT */
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        animation: menuFadeIn .25s ease-out;
        margin: 0 !important;
    }
    @keyframes menuFadeIn {
        from { opacity: 0; }
        to   { opacity: 1; }
    }
    .nav.open a {
        color: var(--c-ink) !important;
        font-size: 22px;
        font-family: var(--f-display);
        font-weight: 400;
        line-height: 1.2;
    }
    .nav.open a::after { background: var(--c-orange); }

    /* X-ul (nav-toggle) trebuie deasupra drawer-ului ca să-l închidem */
    body.menu-open .nav-toggle {
        position: fixed !important;
        top: 18px !important;
        right: 18px !important;
        z-index: 10000 !important;
    }
    body.menu-open .nav-toggle span { background: var(--c-ink) !important; }

    /* Pe mobil cu meniul deschis, blochează scroll-ul body */
    body.menu-open {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
    }

    /* Social icons în meniul mobil — mai mari, distanțate, fără bordură */
    .nav.open .social-links {
        margin: 32px 0 0;
        padding: 32px 0 0;
        border-left: none;
        border-top: 1px solid var(--c-line);
        gap: 28px;
        opacity: 1;
    }
    .nav.open .social-links svg { width: 28px; height: 28px; }
    .nav.open .social-links a { color: var(--c-ink) !important; }

    /* Cînd meniul e deschis, header-ul devine cremă solid (logo închis vizibil) */
    body.menu-open .site-header {
        background: var(--c-paper) !important;
        border-bottom: 1px solid var(--c-line);
    }
    body.menu-open .site-header .brand { color: var(--c-ink); }
    body.menu-open .site-header .brand-mark {
        background: var(--c-green);
        color: var(--c-paper);
    }
    body.menu-open .site-header .brand-logo--hero { display: none; }
    body.menu-open .site-header .brand-logo--scrolled {
        display: block !important;
    }
    body.menu-open .site-header .nav-toggle span {
        background: var(--c-ink);
    }

    /* Hero - mai multă respirație sub header pe mobil */
    .hero { padding-top: 120px; }
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: flex-end;
    padding-top: 100px;
    overflow: hidden;
    color: var(--c-paper);
    background: var(--c-green);
}
.hero-bg {
    position: absolute; inset: 0;
    background-color: #1F4F2D;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: heroZoom 14s ease-out forwards;
}
.hero-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}
/* Suprimă orice control built-in al browser-ului (PiP, Media Session, fullscreen) */
.hero-video::-webkit-media-controls,
.hero-video::-webkit-media-controls-panel,
.hero-video::-webkit-media-controls-enclosure,
.hero-video::-webkit-media-controls-overlay-play-button,
.hero-video::-webkit-media-controls-play-button,
.hero-video::-webkit-media-controls-picture-in-picture-button,
.hero-video::-webkit-media-controls-fullscreen-button,
.hero-video::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

/* ------ YouTube hero - iframe acoperă hero păstrînd 16:9 ------ */
.hero-yt-wrap {
    position: absolute; inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;  /* blochează interacțiunea cu YouTube UI */
}
.hero-youtube {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    /* dimensiuni care acoperă viewport-ul în raport 16:9, fără benzi negre */
    width: 177.78vh;          /* 16/9 din înălțimea viewport-ului */
    min-width: 100vw;         /* dar nu mai puțin de 100% lățime */
    height: 56.25vw;          /* 9/16 din lățimea viewport-ului */
    min-height: 100vh;        /* nu mai puțin de 100% înălțime */
    border: 0;
}
.hero-overlay {
    position: absolute; inset: 0;
    z-index: 1;
    background:
        linear-gradient(to top, rgba(31,36,25,0.85) 0%, rgba(31,36,25,0.25) 60%, rgba(31,36,25,0.6) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--pad) clamp(40px, 8vh, 80px);
}
.hero .eyebrow {
    color: rgba(255,255,255,0.85);
    border-color: rgba(255,255,255,0.4);
}
.hero .display { color: var(--c-paper); max-width: 14ch; }
.hero .display em { color: var(--c-orange-soft); }
.hero .lede { color: rgba(255,253,247,0.88); margin-bottom: 32px; max-width: 50ch; }

.hero-cta {
    display: flex; gap: 14px; flex-wrap: wrap;
    margin-bottom: clamp(36px, 6vh, 64px);
}
.hero-cta .btn-ghost {
    color: var(--c-paper);
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(8px);
}
.hero-cta .btn-ghost:hover {
    background: rgba(255,255,255,0.18);
    border-color: var(--c-paper);
    color: var(--c-paper);
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    margin-top: 36px;
    background: rgba(15, 22, 14, 0.55);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border: 1px solid rgba(255, 252, 246, 0.12);
    border-radius: 18px;
    padding: 4px;
    max-width: 800px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.meta-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 18px 20px;
    border-radius: 14px;
    transition: background .3s ease;
}
.meta-item:hover { background: rgba(255, 255, 255, 0.04); }
.meta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(232, 134, 43, 0.18);
    color: var(--c-orange-soft);
    margin-bottom: 6px;
}
.meta-icon svg { width: 18px; height: 18px; }
.hero-meta strong {
    font-family: var(--f-display);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 400;
    line-height: 1;
    color: var(--c-paper);
    letter-spacing: -0.01em;
}
.meta-label {
    font-family: var(--f-body);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 253, 247, 0.7);
    margin-top: 4px;
    font-weight: 500;
}

@media (max-width: 720px) {
    .hero-meta {
        grid-template-columns: repeat(2, 1fr);
        padding: 6px;
        gap: 2px;
    }
    .meta-item { padding: 14px 16px; }
    .meta-icon { width: 28px; height: 28px; margin-bottom: 4px; }
    .meta-icon svg { width: 14px; height: 14px; }
}

@keyframes heroZoom {
    from { transform: scale(1.12); }
    to   { transform: scale(1); }
}

/* ---------- Sections ---------- */
.section {
    padding: clamp(64px, 10vw, 140px) 0;
    position: relative;
}
.section + .section { border-top: 1px solid var(--c-line); }
.section-amenities, .section-pricing { background: var(--c-bg-alt); }
.section-gallery, .section-booking { background: var(--c-paper); }

.section-head {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section-head .eyebrow { margin-bottom: 18px; }

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
}
@media (max-width: 860px) {
    .two-col { grid-template-columns: 1fr; }
}

/* ---------- About ---------- */
.checks {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
}
.checks li {
    padding: 12px 0 12px 28px;
    position: relative;
    border-top: 1px solid var(--c-line);
    color: var(--c-ink-soft);
}
.checks li:last-child { border-bottom: 1px solid var(--c-line); }
.checks li::before {
    content: '';
    position: absolute; left: 0; top: 22px;
    width: 14px; height: 6px;
    border-left: 2px solid var(--c-rose);
    border-bottom: 2px solid var(--c-rose);
    transform: rotate(-45deg);
}

.about-photo {
    margin: 0;
    position: relative;
    aspect-ratio: 4 / 5;
}
.photo-frame {
    position: absolute;
    inset: 0;
    background-color: var(--c-line);
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.photo-frame--2 {
    inset: auto -40px -40px auto;
    width: 55%;
    height: 55%;
    border: 8px solid var(--c-bg);
}
@media (max-width: 860px) {
    .photo-frame--2 { inset: auto -16px -24px auto; }
}

/* ---------- Amenities ---------- */
.amenity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1px;
    background: var(--c-line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.amenity {
    background: var(--c-paper);
    padding: 32px 28px;
    transition: background .25s ease, transform .25s ease;
}
.amenity:hover {
    background: var(--c-bg);
}
.amenity-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--c-bg-alt);
    border: 1px solid var(--c-line);
    margin-bottom: 18px;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px 22px;
}
/* iconițe SVG inline ca background — fără imagini externe */
.amenity-icon[data-icon="home"]    { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D3E2C' stroke-width='1.5'><path d='M3 11l9-8 9 8M5 10v10h14V10'/></svg>"); }
.amenity-icon[data-icon="kitchen"] { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D3E2C' stroke-width='1.5'><path d='M4 11h16v9H4zM7 6c0-1 1-2 2-2s2 1 2 2-1 2-2 2-2-1-2-2zM13 6c0-1 1-2 2-2s2 1 2 2-1 2-2 2-2-1-2-2z'/></svg>"); }
.amenity-icon[data-icon="terrace"] { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D3E2C' stroke-width='1.5'><path d='M3 14h18M5 14v6M19 14v6M3 14L12 5l9 9'/></svg>"); }
.amenity-icon[data-icon="pool"]    { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D3E2C' stroke-width='1.5'><path d='M2 18c2 0 2-1 5-1s3 1 5 1 3-1 5-1 3 1 5 1M2 14c2 0 2-1 5-1s3 1 5 1 3-1 5-1 3 1 5 1M7 11V5l5-2v6'/></svg>"); }
.amenity-icon[data-icon="grill"]   { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D3E2C' stroke-width='1.5'><path d='M4 7h16l-2 8H6L4 7zM8 15v5M16 15v5M9 4c1 1 0 2 0 3M12 4c1 1 0 2 0 3M15 4c1 1 0 2 0 3'/></svg>"); }
.amenity-icon[data-icon="tennis"]  { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D3E2C' stroke-width='1.5'><circle cx='12' cy='12' r='9'/><path d='M3 12c4 0 8-3 8-9M21 12c-4 0-8 3-8 9'/></svg>"); }
.amenity-icon[data-icon="football"]{ background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D3E2C' stroke-width='1.5'><circle cx='12' cy='12' r='9'/><path d='M12 7l4 3-1 5h-6l-1-5 4-3z'/></svg>"); }
.amenity-icon[data-icon="kids"]    { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D3E2C' stroke-width='1.5'><circle cx='12' cy='6' r='3'/><path d='M9 11h6l1 8h-3v-5h-2v5H8l1-8z'/></svg>"); }
.amenity-icon[data-icon="scooter"] { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D3E2C' stroke-width='1.5'><circle cx='6' cy='18' r='3'/><circle cx='18' cy='18' r='3'/><path d='M9 18h6M15 18l-2-12h-3'/></svg>"); }
.amenity-icon[data-icon="sauna"]   { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D3E2C' stroke-width='1.5'><path d='M12 3c2 3-2 4 0 7s-2 4 0 7M7 6c1 2-1 3 0 5M17 6c1 2-1 3 0 5'/></svg>"); }
.amenity-icon[data-icon="jacuzzi"] { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D3E2C' stroke-width='1.5'><path d='M3 12h18v5a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3v-5zM7 12V6a3 3 0 0 1 3-3'/><circle cx='15' cy='8' r='2'/></svg>"); }
.amenity-icon[data-icon="fish"]    { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D3E2C' stroke-width='1.5'><path d='M3 12c4-6 12-6 16 0-4 6-12 6-16 0zM19 12l3-3v6l-3-3zM14 12h.01'/></svg>"); }
.amenity-icon[data-icon="parking"] { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D3E2C' stroke-width='1.5'><rect x='4' y='4' width='16' height='16' rx='2'/><path d='M10 17V8h3.5a2.5 2.5 0 0 1 0 5H10'/></svg>"); }
.amenity-icon[data-icon="fire"]    { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D3E2C' stroke-width='1.5'><path d='M12 22c4 0 7-3 7-7 0-3-2-5-2-5s-1 2-2 2c-1-3-3-5-3-9-2 2-5 4-5 9-1 0-2-2-2-2s-2 2-2 5c0 4 3 7 7 7z'/></svg>"); }

/* ---------- Google Reviews ---------- */
.section-reviews {
    background: var(--c-green);
    color: var(--c-paper);
    position: relative;
    overflow: hidden;
}
/* Subtle decorative texture */
.section-reviews::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(232, 134, 43, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(255, 253, 247, 0.06) 0%, transparent 50%);
    pointer-events: none;
}
.section-reviews .container { position: relative; z-index: 1; }
.section-reviews .eyebrow { color: var(--c-orange-soft); border-color: rgba(244, 180, 115, 0.4); }
.section-reviews .display { color: var(--c-paper); }
.section-reviews .muted { color: rgba(255, 253, 247, 0.65); }

.reviews-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-size: 15px;
}
.rating-stars { letter-spacing: 1px; font-size: 18px; }
.rating-stars .star-full  { color: #F4C440; }
.rating-stars .star-empty { color: rgba(255, 253, 247, 0.25); }
.reviews-rating strong { font-size: 18px; color: var(--c-paper); }

/* ---------- Carusel ---------- */
.reviews-carousel {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    padding: 0 60px;
}
.reviews-track {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    min-height: 320px;
}
.review-slide {
    position: absolute;
    top: 0; left: 0; right: 0;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .5s ease, transform .5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}
.review-slide.is-active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}
.review-slide.is-leaving {
    opacity: 0;
    transform: translateX(-40px);
}

.review-card {
    background: rgba(255, 252, 246, 0.07);
    border: 1px solid rgba(255, 252, 246, 0.15);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
}
.review-quote-mark {
    position: absolute;
    top: 12px;
    left: 28px;
    font-family: var(--f-display);
    font-size: 96px;
    line-height: 1;
    color: var(--c-orange);
    opacity: 0.5;
    font-weight: 600;
    pointer-events: none;
    user-select: none;
}
.review-text {
    font-family: var(--f-display);
    font-style: italic;
    font-size: clamp(17px, 1.6vw, 21px);
    line-height: 1.65;
    color: rgba(255, 253, 247, 0.92);
    margin: 28px 0 28px;
    min-height: 140px;
}
.review-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 253, 247, 0.15);
}
.review-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(255, 252, 246, 0.25);
}
.review-avatar--initial {
    background: var(--c-orange);
    color: var(--c-paper);
    display: grid; place-items: center;
    font-weight: 600;
    font-size: 20px;
    font-family: var(--f-display);
    border-color: transparent;
}
.review-author-block { flex: 1; }
.review-author {
    display: block;
    font-family: var(--f-body);
    font-size: 14px;
    color: var(--c-paper);
    line-height: 1.2;
    font-weight: 600;
    font-style: normal;
}
.review-meta {
    display: block;
    font-size: 12px;
    color: rgba(255, 253, 247, 0.55);
    margin-top: 3px;
}
.review-stars {
    color: #F4C440;
    font-size: 15px;
    letter-spacing: 1.5px;
    flex-shrink: 0;
}

/* Săgeți navigare */
.reviews-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 252, 246, 0.1);
    border: 1px solid rgba(255, 252, 246, 0.2);
    color: var(--c-paper);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background .2s ease, transform .2s ease, border-color .2s ease;
    z-index: 2;
    padding: 0;
}
.reviews-nav:hover {
    background: var(--c-orange);
    border-color: var(--c-orange);
    transform: translateY(-50%) scale(1.08);
}
.reviews-nav--prev { left: 0; }
.reviews-nav--next { right: 0; }

/* Indicatori (dots) */
.reviews-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
}
.reviews-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 252, 246, 0.25);
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: background .25s ease, transform .25s ease, width .25s ease;
}
.reviews-dot:hover {
    background: rgba(255, 252, 246, 0.5);
    transform: scale(1.2);
}
.reviews-dot.is-active {
    background: var(--c-orange);
    width: 28px;
    border-radius: 4px;
}

@media (max-width: 720px) {
    .reviews-carousel { padding: 0 8px; }
    .reviews-nav {
        width: 36px;
        height: 36px;
        background: rgba(0, 0, 0, 0.25);
    }
    .reviews-nav--prev { left: -4px; }
    .reviews-nav--next { right: -4px; }
    .review-card { padding: 28px 24px; }
    .review-quote-mark { font-size: 70px; left: 14px; top: 6px; }
    .review-text {
        font-size: 16px;
        margin: 18px 0 22px;
        min-height: 180px;
    }
}

.section-reviews .btn-ghost {
    border-color: rgba(255, 253, 247, 0.4);
    color: var(--c-paper);
}
.section-reviews .btn-ghost:hover {
    background: var(--c-orange);
    border-color: var(--c-orange);
    color: var(--c-paper);
}
.btn-small { font-size: 13px; padding: 8px 18px; }

.amenity h3 {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 20px;
    margin: 0 0 6px;
    color: var(--c-ink);
}
.amenity p {
    margin: 0;
    color: var(--c-ink-soft);
    font-size: 14px;
    line-height: 1.55;
}

/* ---------- Gallery ---------- */
.gallery-grid {
    display: grid;
    gap: 8px;
}
.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    background: var(--c-bg-alt);
    cursor: zoom-in;
    position: relative;
    transition: transform .3s ease;
    display: block;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
    display: block;
}
.gallery-item:hover img { transform: scale(1.06); }

/* Bloc 1: aranjament artistic - 5 imagini */
.gallery-grid--hero {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 140px;
    margin-bottom: 8px;
}
.gallery-grid--hero .gallery-item:nth-child(1) { grid-column: span 6; grid-row: span 3; }
.gallery-grid--hero .gallery-item:nth-child(2) { grid-column: span 3; grid-row: span 2; }
.gallery-grid--hero .gallery-item:nth-child(3) { grid-column: span 3; grid-row: span 2; }
.gallery-grid--hero .gallery-item:nth-child(4) { grid-column: span 3; grid-row: span 1; }
.gallery-grid--hero .gallery-item:nth-child(5) { grid-column: span 3; grid-row: span 1; }

/* Bloc 2: grid uniform pentru imaginile rămase, 5 col × 2 rînduri */
.gallery-grid--rest {
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 180px;
}

/* Bloc 3: ascunse vizual, dar accesibile în lightbox prin querySelectorAll */
.gallery-hidden {
    position: absolute;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}
.gallery-item--hidden { pointer-events: none; }

@media (max-width: 1024px) {
    .gallery-grid--rest { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 160px; }
}
@media (max-width: 860px) {
    .gallery-grid--hero {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 100px;
    }
    .gallery-grid--hero .gallery-item:nth-child(1) { grid-column: span 4; grid-row: span 3; }
    .gallery-grid--hero .gallery-item:nth-child(2),
    .gallery-grid--hero .gallery-item:nth-child(3) { grid-column: span 2; grid-row: span 2; }
    .gallery-grid--hero .gallery-item:nth-child(4),
    .gallery-grid--hero .gallery-item:nth-child(5) { grid-column: span 2; grid-row: span 2; }

    .gallery-grid--rest { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 140px; }
}
@media (max-width: 540px) {
    .gallery-grid--rest { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
}

/* ---------- Pricing ---------- */
.price-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 56px;
}
.price-card {
    background: var(--c-paper);
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-line);
    transition: transform .3s ease, box-shadow .3s ease;
}
.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.price-card--main {
    background: var(--c-green);
    color: var(--c-paper);
    border-color: transparent;
    box-shadow: var(--shadow-md);
}
.price-card h3 {
    margin: 0 0 18px;
    font-family: var(--f-display);
    font-weight: 400;
    font-size: 24px;
}
.price {
    font-family: var(--f-display);
    margin: 0 0 24px;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.price strong {
    font-size: 56px;
    font-weight: 400;
    letter-spacing: -0.02em;
}
.price span {
    font-family: var(--f-body);
    font-size: 14px;
    color: var(--c-muted);
}
.price-card--main .price span { color: rgba(255,255,255,0.7); }

.price-subtitle {
    font-size: 13px;
    color: var(--c-muted);
    margin: -4px 0 22px;
    line-height: 1.4;
}
.price-card--main .price-subtitle { color: rgba(255,253,247,0.75); }

/* Layout cu rînduri pentru tarife multiple (Lu-Jo / Vi-Du) */
.price-rows {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 0 0 26px;
    padding: 18px;
    background: rgba(255, 252, 246, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 252, 246, 0.12);
}
.price-card:not(.price-card--main) .price-rows {
    background: var(--c-bg-alt);
    border-color: var(--c-line);
}
.price-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.price-row-label {
    font-family: var(--f-body);
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: rgba(255,253,247,0.7);
    white-space: nowrap;
}
.price-card:not(.price-card--main) .price-row-label { color: var(--c-muted); }
.price-row-amount {
    font-family: var(--f-display);
    line-height: 1;
    white-space: nowrap;
}
.price-row-amount strong {
    font-size: 30px;
    font-weight: 400;
    letter-spacing: -0.01em;
}
.price-row-amount em {
    font-family: var(--f-body);
    font-style: normal;
    font-size: 11px;
    color: rgba(255,253,247,0.65);
    margin-left: 4px;
    display: block;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.price-card:not(.price-card--main) .price-row-amount em { color: var(--c-muted); }

@media (max-width: 540px) {
    .price-rows { padding: 14px; gap: 12px; }
    .price-row-amount strong { font-size: 26px; }
}

.price-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.price-card li {
    font-size: 15px;
    line-height: 1.5;
    padding-left: 24px;
    position: relative;
    color: var(--c-ink-soft);
}
.price-card li::before {
    content: '';
    position: absolute; left: 0; top: 9px;
    width: 12px; height: 1px;
    background: var(--c-rose);
}
.price-card--main li { color: rgba(255,255,255,0.85); }
.price-card--main li::before { background: var(--c-rose-soft); }

.price-card .addons {
    display: flex; flex-direction: column; gap: 12px;
}
.price-card .addons li {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 12px 0;
    border-bottom: 1px solid var(--c-line);
}
.price-card .addons li::before { display: none; }
.price-card .addons li:last-child { border-bottom: none; }
.price-card .addons strong { color: var(--c-ink); font-size: 14px; }

.special-offer {
    text-align: center;
    padding: 56px 32px;
    background: var(--c-paper);
    border-radius: var(--radius-lg);
    border: 1px dashed var(--c-rose-soft);
}
.special-offer h3 {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(28px, 3vw, 38px);
    margin: 0 0 12px;
    color: var(--c-rose);
}
.special-offer p {
    max-width: 50ch;
    margin: 0 auto;
    color: var(--c-ink-soft);
}

/* ---------- Booking ---------- */
.booking-shell {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: start;
}
@media (max-width: 1000px) {
    .booking-shell { grid-template-columns: 1fr; }
}

.booking-calendar {
    background: var(--c-bg);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--c-line);
    position: sticky; top: 100px;
}
@media (max-width: 1000px) {
    .booking-calendar { position: static; }
}

.calendar-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 20px;
}
.cal-title {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: 22px;
    margin: 0;
    text-transform: capitalize;
}
.cal-nav {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid var(--c-line);
    background: var(--c-paper);
    cursor: pointer;
    font-size: 20px;
    color: var(--c-ink);
    transition: background .2s ease, border-color .2s ease;
}
.cal-nav:hover { background: var(--c-bg-alt); border-color: var(--c-ink); }

.calendar-months {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
@media (max-width: 540px) {
    .calendar-months { grid-template-columns: 1fr; }
}
.month {
    display: flex; flex-direction: column; gap: 6px;
}
.month-name {
    font-family: var(--f-display);
    font-size: 16px;
    text-align: center;
    color: var(--c-ink-soft);
    margin-bottom: 4px;
    text-transform: capitalize;
}
.weekdays, .days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}
.weekdays span {
    font-size: 11px; text-align: center; color: var(--c-muted);
    text-transform: uppercase; letter-spacing: 0.08em;
    padding: 4px 0;
}
.days button {
    aspect-ratio: 1;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    font-family: var(--f-body);
    font-size: 13px;
    color: var(--c-ink);
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
}
.days button:hover:not(:disabled):not(.busy) {
    background: var(--c-paper);
    border-color: var(--c-line);
}
.days button.empty { visibility: hidden; cursor: default; }
.days button.busy {
    color: var(--c-muted);
    text-decoration: line-through;
    cursor: not-allowed;
    background: repeating-linear-gradient(
        45deg, transparent, transparent 4px,
        rgba(178, 95, 95, 0.1) 4px, rgba(178, 95, 95, 0.1) 8px
    );
}
.days button.past {
    color: var(--c-line);
    cursor: not-allowed;
}
.days button.in-range {
    background: var(--c-rose-soft);
    color: var(--c-ink);
}
.days button.selected, .days button.range-end, .days button.range-start {
    background: var(--c-green);
    color: var(--c-paper);
    border-color: var(--c-green);
    font-weight: 600;
}

.calendar-legend {
    display: flex; gap: 18px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--c-line);
    font-size: 12px;
    color: var(--c-muted);
}
.calendar-legend .dot {
    display: inline-block; width: 10px; height: 10px;
    border-radius: 3px; margin-right: 4px;
    vertical-align: middle;
}
.dot-free { background: var(--c-paper); border: 1px solid var(--c-line); }
.dot-sel  { background: var(--c-green); }
.dot-busy { background: rgba(178, 95, 95, 0.2); }

.booking-form {
    background: var(--c-paper);
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-line);
    box-shadow: var(--shadow-sm);
}
.booking-form .form-row { margin-bottom: 18px; }
.booking-form .form-row.two {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
@media (max-width: 540px) {
    .booking-form .form-row.two { grid-template-columns: 1fr; }
}
.booking-form label {
    display: flex; flex-direction: column; gap: 6px;
}
.booking-form label > span {
    font-size: 13px;
    color: var(--c-ink-soft);
    font-weight: 500;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
    background: var(--c-bg);
    border: 1px solid var(--c-line);
    border-radius: 10px;
    padding: 12px 14px;
    font-family: var(--f-body);
    font-size: 15px;
    color: var(--c-ink);
    transition: border-color .2s ease, background .2s ease;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--c-green);
    background: var(--c-paper);
}
.addons-fields {
    border: 1px solid var(--c-line);
    border-radius: 12px;
    padding: 18px 20px;
    margin: 0 0 18px;
}
.addons-fields legend {
    padding: 0 8px;
    font-size: 13px;
    color: var(--c-ink-soft);
    font-weight: 500;
}

/* Card-uri saună/ciubăr pe site (în formularul de rezervare) */
.addon-cards-site {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
}
@media (max-width: 540px) {
    .addon-cards-site { grid-template-columns: 1fr; }
}
.addon-card-site {
    border: 2px solid var(--c-line);
    border-radius: 12px;
    padding: 16px 14px;
    text-align: center;
    cursor: pointer;
    background: var(--c-paper);
    transition: border-color .2s ease, background .2s ease, transform .15s ease;
    position: relative;
    user-select: none;
}
.addon-card-site:hover {
    border-color: var(--c-orange);
    transform: translateY(-1px);
}
.addon-card-site.is-selected {
    border-color: var(--c-green);
    background: rgba(31, 79, 45, 0.04);
}
.addon-card-site.is-selected::after {
    content: '✓';
    position: absolute;
    top: 8px;
    right: 12px;
    color: var(--c-green);
    font-weight: 700;
    font-size: 18px;
}
.addon-card-site input { display: none; }
.addon-card-site .addon-name {
    font-family: var(--f-display);
    font-size: 16px;
    color: var(--c-ink);
    line-height: 1.2;
}
.addon-card-site .addon-price {
    font-size: 13px;
    color: var(--c-muted);
    margin-top: 4px;
}
.addon-card-site.is-selected .addon-price {
    color: var(--c-green);
    font-weight: 600;
}

.quote-box {
    background: var(--c-bg);
    border-radius: 12px;
    padding: 18px 20px;
    margin: 24px 0;
}
.quote-row {
    display: flex; justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
    color: var(--c-ink-soft);
}
.quote-row strong { color: var(--c-ink); font-weight: 600; }
.quote-row.total {
    border-top: 1px solid var(--c-line);
    margin-top: 10px;
    padding-top: 14px;
    font-size: 16px;
}
.quote-row.total strong {
    font-family: var(--f-display);
    font-size: 22px;
    color: var(--c-green);
}

.form-status {
    margin-top: 20px;
    padding: 16px 18px;
    border-radius: 10px;
    font-size: 14px;
}
.form-status.success {
    background: rgba(45, 62, 44, 0.08);
    color: var(--c-green);
    border: 1px solid var(--c-green-3);
}
.form-status.error {
    background: rgba(178, 95, 95, 0.1);
    color: var(--c-rose);
    border: 1px solid var(--c-rose-soft);
}

.form-note {
    font-size: 13px;
    text-align: center;
    margin-top: 14px;
}

/* ---------- Map ---------- */
.map-frame {
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--c-bg-alt);
}
.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: saturate(0.8) contrast(0.95);
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--c-green);
    color: rgba(255, 252, 246, 0.85);
    padding: 80px var(--pad) 32px;
}
.footer-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}
@media (max-width: 720px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer-brand {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: 32px;
    margin: 0 0 12px;
    color: var(--c-paper);
    letter-spacing: -0.01em;
}
.site-footer h4 {
    font-family: var(--f-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin: 0 0 14px;
    color: var(--c-rose-soft);
}
.site-footer a { color: rgba(255,252,246,0.85); }
.site-footer a:hover { color: var(--c-paper); }
.site-footer .muted { color: rgba(255,252,246,0.55); }
.footer-bottom {
    max-width: var(--container);
    margin: 56px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255,252,246,0.15);
    font-size: 12px;
    color: rgba(255,252,246,0.5);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-credit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    opacity: 0.7;
    transition: opacity .2s ease;
    text-transform: none;
    letter-spacing: 0;
}
.footer-credit:hover { opacity: 1; }
.footer-credit span {
    font-size: 11px;
    color: rgba(255,252,246,0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.footer-credit img {
    height: 22px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}
@media (max-width: 540px) {
    .footer-bottom { justify-content: center; text-align: center; }
}

/* ---------- Lightbox ---------- */
[hidden] { display: none !important; }
.lightbox {
    position: fixed; inset: 0;
    background: rgba(31, 36, 25, 0.94);
    z-index: 100;
    display: grid; place-items: center;
    backdrop-filter: blur(6px);
}
.lightbox img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lb-close, .lb-nav {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    width: 48px; height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    transition: background .2s ease;
}
.lb-close:hover, .lb-nav:hover { background: rgba(255,255,255,0.25); }
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ---------- Animații la scroll ---------- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}