/* =========================================================
   Lacul Periș — stylesheet 2026
   Design: lake-quiet, modern, no framework.
   ========================================================= */

/* ---------- design tokens ---------- */
:root {
    --c-water-deep: #0A4D5E;
    --c-water: #1E7A8C;
    --c-water-mist: #DCEEF1;
    --c-sky: #E8F2F5;
    --c-reed: #7BA05B;
    --c-brand-blue: #1B4F8A;
    --c-sand: #C59D5F;
    --c-ink: #1A2330;
    --c-ink-muted: #5A6470;
    --c-line: rgba(26, 35, 48, 0.08);
    --c-bg: #FBFBF9;
    --c-bg-alt: #F2F5F4;

    --font-display: "Fraunces", Georgia, serif;
    --font-body: "Inter", system-ui, -apple-system, sans-serif;

    --wrap: 1200px;
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 22px;

    --shadow-sm: 0 2px 8px rgba(10, 77, 94, 0.06);
    --shadow-md: 0 10px 30px rgba(10, 77, 94, 0.10);
    --shadow-lg: 0 30px 60px rgba(10, 77, 94, 0.18);

    --ease: cubic-bezier(.4, 0, .2, 1);
    --t-fast: 180ms var(--ease);
    --t-base: 320ms var(--ease);
    --t-slow: 600ms var(--ease);

    --header-h: 72px;
}

/* ---------- reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.65;
    color: var(--c-ink);
    background: var(--c-bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img, picture { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; }
a { color: var(--c-water); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--c-water-deep); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; color: var(--c-ink); margin: 0; }
h2 { font-size: clamp(1.8rem, 2.8vw + 0.5rem, 2.75rem); }
h3 { font-size: clamp(1.25rem, 1vw + 0.9rem, 1.5rem); }
p { margin: 0 0 1em; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }

.skip-link {
    position: absolute; top: -100px; left: 0; padding: 12px 16px;
    background: var(--c-water-deep); color: #fff; z-index: 9999;
    transition: top var(--t-fast);
}
.skip-link:focus { top: 0; color: #fff; }

/* ---------- buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    border: none;
    cursor: pointer;
    transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast);
    white-space: nowrap;
}
.btn-primary {
    background: var(--c-sand);
    color: #1A2330;
    box-shadow: 0 6px 18px rgba(197, 157, 95, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(197, 157, 95, 0.45); color: #1A2330; }
.btn-ghost {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.22); color: #fff; transform: translateY(-2px); }

/* ---------- site header ---------- */
.site-header {
    position: fixed; inset: 0 0 auto 0;
    height: var(--header-h);
    z-index: 100;
    background: transparent;
    transition: background var(--t-base), box-shadow var(--t-base), backdrop-filter var(--t-base);
}
.site-header .wrap {
    height: 100%;
    display: flex; align-items: center; gap: 1.5rem;
}
.brand { display: block; line-height: 0; }
.brand img { width: 160px; height: auto; transition: opacity var(--t-base); }
.brand-dark { display: none; }
.site-header.is-scrolled {
    background: rgba(251, 251, 249, 0.92);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 var(--c-line), 0 8px 24px rgba(0,0,0,0.04);
}
.site-header.is-scrolled .brand-light { display: none; }
.site-header.is-scrolled .brand-dark { display: block; }

.nav { margin-left: auto; }
.nav-list {
    display: flex; gap: 0.25rem;
    list-style: none; margin: 0; padding: 0;
}
.nav-list a {
    display: inline-block;
    padding: 8px 14px;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    position: relative;
    transition: color var(--t-fast), background var(--t-fast);
}
.nav-list a::after {
    content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
    height: 2px; background: currentColor; transform: scaleX(0); transform-origin: left;
    transition: transform var(--t-base);
}
.nav-list a:hover::after,
.nav-list a.is-active::after { transform: scaleX(1); }
.site-header.is-scrolled .nav-list a { color: var(--c-ink); }
.site-header.is-scrolled .nav-list a:hover { color: var(--c-water-deep); }

.header-cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px;
    background: var(--c-sand); color: var(--c-ink);
    border-radius: 999px;
    font-weight: 600; font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(197, 157, 95, 0.3);
    transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.header-cta:hover { transform: translateY(-1px); color: var(--c-ink); box-shadow: 0 6px 16px rgba(197, 157, 95, 0.4); }

.nav-toggle {
    display: none;
    background: none; border: 0;
    width: 44px; height: 44px;
    padding: 10px;
    margin-left: auto;
    position: relative;
    z-index: 101;
}
.nav-toggle span {
    display: block; height: 2px; background: #fff; margin: 5px 0;
    transition: transform var(--t-base), opacity var(--t-base), background var(--t-base);
}
.site-header.is-scrolled .nav-toggle span { background: var(--c-ink); }

/* ---------- hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: #fff;
    isolation: isolate;
}
.hero-slides {
    position: absolute; inset: 0;
    z-index: -2;
}
.hero-slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 1.6s var(--ease);
}
.hero-slide.is-active { opacity: 1; }
.hero-slide img {
    width: 100%; height: 100%;
    object-fit: cover;
    animation: kenburns 14s ease-in-out infinite alternate;
}
.hero-slide:nth-child(2) img { animation-direction: alternate-reverse; }
.hero-slide:nth-child(3) img { animation-delay: -3s; }
.hero-slide:nth-child(4) img { animation-delay: -7s; animation-direction: alternate-reverse; }

@keyframes kenburns {
    from { transform: scale(1.0) translate(0, 0); }
    to   { transform: scale(1.12) translate(-1.5%, -1%); }
}

.hero-vignette {
    position: absolute; inset: 0; z-index: -1;
    background:
        radial-gradient(ellipse at center, rgba(10, 35, 48, 0.45) 0%, rgba(10, 35, 48, 0.15) 60%, transparent 100%),
        linear-gradient(180deg, rgba(10, 35, 48, 0.55) 0%, rgba(10, 35, 48, 0.2) 40%, rgba(10, 35, 48, 0.7) 100%);
}

.hero-content {
    text-align: center;
    max-width: 820px;
    padding-top: var(--header-h);
}
.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin: 0 0 0.75rem;
    animation: revealUp 1s var(--ease) 0.2s both;
}
.hero-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(2.6rem, 7vw + 1rem, 6rem);
    line-height: 1;
    margin: 0 0 1rem;
    color: #fff;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4), 0 8px 40px rgba(0,0,0,0.35);
    animation: revealUp 1.1s var(--ease) 0.35s both;
}
.hero-title span {
    font-style: italic;
    color: #FFD480;
    font-weight: 500;
    text-shadow:
        0 2px 6px rgba(0,0,0,0.55),
        0 0 28px rgba(10, 35, 48, 0.5),
        0 8px 40px rgba(0,0,0,0.4);
}
.hero-tagline {
    font-size: clamp(1.05rem, 1vw + 0.7rem, 1.35rem);
    color: rgba(255,255,255,0.95);
    margin: 0 0 2rem;
    animation: revealUp 1.1s var(--ease) 0.55s both;
}
.hero-actions {
    display: flex; gap: 0.75rem;
    justify-content: center; flex-wrap: wrap;
    margin-bottom: 0;
    animation: revealUp 1.1s var(--ease) 0.75s both;
}

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

.hero-scroll {
    position: absolute; left: 50%; bottom: 24px;
    transform: translateX(-50%);
    width: 28px; height: 46px;
    border: 1.5px solid rgba(255,255,255,0.55);
    border-radius: 14px;
    display: grid; place-items: center;
    animation: fadeIn 1s var(--ease) 2s both;
}
.hero-scroll span {
    width: 3px; height: 8px;
    background: #fff;
    border-radius: 2px;
    animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
    0% { transform: translateY(-8px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(8px); opacity: 0; }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---------- section base ---------- */
.section {
    padding: clamp(4rem, 8vw, 7rem) 0;
}
.section-alt { background: var(--c-bg-alt); }
.section-dark {
    background: linear-gradient(180deg, var(--c-water-deep) 0%, #062E3A 100%);
    color: #fff;
}
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark a { color: var(--c-sand); }
.section-dark a:hover { color: #fff; }

.section-head {
    max-width: 720px;
    margin: 0 auto 3rem;
    text-align: center;
}
.section-head h2 { margin: 0.5rem 0; }
.section-head-light { color: #fff; }
.section-sub { color: var(--c-ink-muted); margin-top: 0.75rem; }
.section-dark .section-sub { color: rgba(255,255,255,0.7); }

.eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--c-water);
    font-weight: 600;
    margin: 0;
}
.section-dark .eyebrow { color: var(--c-sand); }

/* ---------- anunț (slot) ---------- */
.anunt {
    background: linear-gradient(90deg, var(--c-sand), #D8B377);
    padding: 1.25rem 0;
    color: var(--c-ink);
}
.anunt .wrap { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.anunt-tag {
    background: var(--c-ink);
    color: var(--c-sand);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    font-weight: 700;
}
.anunt p { margin: 0; }

/* ---------- cards (servicii) ---------- */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.75rem;
}
.card {
    background: #fff;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--t-base), box-shadow var(--t-base);
    display: flex; flex-direction: column;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.card-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.card-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 1.75rem; }
.card-body h3 { margin: 0 0 0.75rem; color: var(--c-water-deep); }
.card-body p { color: var(--c-ink-muted); margin: 0 0 0.75rem; }
.card-list {
    list-style: none; padding: 0; margin: 1rem 0 0;
    color: var(--c-ink-muted);
}
.card-list li {
    position: relative;
    padding-left: 1.25rem;
    padding-block: 4px;
}
.card-list li::before {
    content: ""; position: absolute; left: 0; top: 12px;
    width: 6px; height: 6px;
    background: var(--c-reed);
    border-radius: 50%;
}

/* ---------- tarife ---------- */
.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
}
.price {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 2rem 1.25rem 1.75rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid var(--c-line);
    transition: transform var(--t-base), box-shadow var(--t-base);
    display: flex; flex-direction: column;
}
.price:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-duration {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-ink-muted);
    margin: 0;
    font-weight: 600;
    min-height: 2.4em;
    display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 4px;
}
.price-duration em {
    font-style: normal;
    color: var(--c-water);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    display: block; width: 100%;
}
.price-amount {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 3vw + 1rem, 3.4rem);
    font-weight: 600;
    color: var(--c-water-deep);
    margin: 0.4rem 0 0.25rem;
    line-height: 1;
    display: inline-flex; align-items: baseline; gap: 6px; justify-content: center;
}
.price-amount span {
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--c-ink-muted);
    font-weight: 500;
    letter-spacing: 0.02em;
}
.price-extra-note {
    font-size: 0.78rem;
    color: var(--c-sand);
    font-weight: 600;
    letter-spacing: 0.02em;
    margin: 0 0 1.1rem;
    min-height: 1.2em;
}
.price ul {
    list-style: none; padding: 0; margin: 0;
    color: var(--c-ink-muted);
    border-top: 1px solid var(--c-line);
    padding-top: 1.1rem;
    flex: 1;
    display: flex; flex-direction: column; justify-content: center;
}
.price ul li { padding: 3px 0; font-size: 0.95rem; }
.price ul strong { color: var(--c-ink); }
.price-total {
    margin-top: 0.5rem;
    padding-top: 0.5rem !important;
    border-top: 1px dashed var(--c-line);
    color: var(--c-water-deep) !important;
    font-weight: 600;
    font-size: 0.85rem !important;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* price groups */
.price-group {
    max-width: 1200px;
    margin: 0 auto;
}
.price-group + .price-group { margin-top: 3rem; }
.price-group-title {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    text-align: center;
    font-size: clamp(1.35rem, 1.5vw + 0.9rem, 1.8rem);
    color: var(--c-water-deep);
    margin: 0 0 0.4rem;
}
.price-group-title svg { color: var(--c-reed); }
.price-group-sub {
    text-align: center;
    color: var(--c-ink-muted);
    font-size: 0.92rem;
    margin: 0 0 1.5rem;
}
.price-group-title:not(:has(+ .price-group-sub)) { margin-bottom: 1.5rem; }

.price-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* warning note under a group */
.price-note {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    max-width: 1200px;
    margin: 1.25rem auto 0;
    padding: 0.85rem 1.25rem;
    background: #FBEFE0;
    border: 1px solid #E9C99A;
    border-radius: var(--r-md);
    color: #8A5A1E;
    font-size: 0.92rem;
    text-align: center;
}
.price-note svg { color: #C08A2E; flex-shrink: 0; }
.price-note strong { color: #6E4515; }

/* Bazinele 1,2,3 — horizontal panel */
.price-panel {
    display: grid;
    grid-template-columns: minmax(180px, 260px) 1fr;
    gap: 0;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--t-base), box-shadow var(--t-base);
}
.price-panel:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-panel-main {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(180deg, var(--c-water-deep), #093E4D);
    color: #fff;
    text-align: center;
}
.price-panel-main .price-duration { color: rgba(255,255,255,0.75); min-height: auto; margin-bottom: 0.5rem; }
.price-panel-main .price-amount { color: #fff; }
.price-panel-main .price-amount span { color: rgba(255,255,255,0.75); }
.price-panel-cond {
    list-style: none; margin: 0;
    padding: 1.5rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1.5rem;
    align-content: center;
    color: var(--c-ink-muted);
}
.price-panel-cond li {
    position: relative;
    padding-left: 22px;
    line-height: 1.5;
}
.price-panel-cond li::before {
    content: ""; position: absolute; left: 0; top: 9px;
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--c-reed);
}
.price-panel-cond strong { color: var(--c-ink); }

/* Căbănuțe group */
.price-group-cabins .price-group-title svg { color: var(--c-sand); }
.price-cabin { justify-content: center; padding-block: 2.25rem; }
.price-cabin .price-amount { margin-bottom: 0; }

.price-cta {
    margin-top: 3rem;
    text-align: center;
}
.price-cta p {
    color: var(--c-ink-muted);
    margin: 0 0 1rem;
}

/* ---------- regulament ---------- */
.rules {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}
.rules-side {
    display: flex; flex-direction: column;
    gap: 1.5rem;
}
.rules-col {
    padding: 2rem;
    border-radius: var(--r-lg);
    background: #fff;
    box-shadow: var(--shadow-sm);
}
.rules-yes { border-left: 4px solid var(--c-reed); }
.rules-no { border-left: 4px solid #C8463F; }
.rules-info { border-left: 4px solid var(--c-water); background: linear-gradient(180deg, #fff, var(--c-water-mist)); }
.rules-col h3 {
    display: flex; align-items: center; gap: 10px;
    margin: 0 0 1.25rem;
    color: var(--c-ink);
}
.rules-yes h3 svg { color: var(--c-reed); }
.rules-no h3 svg { color: #C8463F; }
.rules-info h3 svg { color: var(--c-water); }
.rules-col ul {
    list-style: none; padding: 0; margin: 0;
    color: var(--c-ink-muted);
}
.rules-col li {
    padding: 6px 0 6px 22px;
    position: relative;
    line-height: 1.55;
}
.rules-col li::before {
    content: ""; position: absolute; left: 0; top: 16px;
    width: 8px; height: 2px;
    background: currentColor;
    opacity: 0.5;
}
.rules-info p { color: var(--c-ink-muted); margin: 0 0 0.75rem; }
.rules-info p:last-child { margin-bottom: 0; }

/* two equal columns (obligații / interzis) */
.rules-two { grid-template-columns: 1fr 1fr; }
.rules-bonus { border-left: 4px solid var(--c-sand); background: linear-gradient(180deg, #fff, #FBF3E6); }
.rules-bonus h3 svg { color: var(--c-sand); }

/* colored bullets per column type */
.rules-yes li::before { background: var(--c-reed); opacity: 1; height: 8px; border-radius: 2px; }
.rules-no li::before { background: #C8463F; opacity: 1; height: 8px; border-radius: 2px; }
.rules-info li::before { background: var(--c-water); opacity: 1; height: 8px; border-radius: 2px; }
.rules-bonus li::before { background: var(--c-sand); opacity: 1; height: 8px; border-radius: 2px; }
.rules-info li, .rules-bonus li { padding-left: 22px; }

/* rezervări + beneficii row */
.rules-extra {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 1.5rem auto 0;
    align-items: start;
}

/* braconaj warning banner */
.rules-warning {
    display: flex; align-items: center; gap: 12px;
    max-width: 1100px;
    margin: 1.5rem auto 0;
    padding: 1rem 1.5rem;
    background: #FBECEA;
    border: 1px solid #E7B7B1;
    border-radius: var(--r-md);
    color: #8A2F27;
    font-size: 0.95rem;
}
.rules-warning svg { color: #C8463F; flex-shrink: 0; }
.rules-warning strong { color: #7A251E; }

/* regulament căbănuțe (separat) */
.rules-cabins {
    max-width: 1100px;
    margin: 2.5rem auto 0;
    padding: 2rem;
    border-radius: var(--r-lg);
    background: linear-gradient(135deg, var(--c-water-deep), #093E4D);
    color: #fff;
    box-shadow: var(--shadow-md);
}
.rules-cabins-title {
    display: flex; align-items: center; gap: 12px;
    margin: 0 0 1.5rem;
    color: #fff;
}
.rules-cabins-title svg { color: var(--c-sand); }
.rules-cabins-list {
    list-style: none; padding: 0; margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 2rem;
    color: rgba(255,255,255,0.9);
}
.rules-cabins-list li {
    position: relative;
    padding-left: 24px;
    line-height: 1.55;
}
.rules-cabins-list li::before {
    content: ""; position: absolute; left: 0; top: 8px;
    width: 8px; height: 8px; border-radius: 2px;
    background: var(--c-sand);
}
.rules-cabins-list strong { color: #fff; }

/* ---------- despre ---------- */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}
.about-media {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4 / 5;
}
.about-media img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.about-body h2 { margin: 0.5rem 0 1.5rem; }
.about-body p { color: var(--c-ink-muted); }
.about-facts {
    list-style: none; padding: 0; margin: 2rem 0;
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    border-top: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
    padding-block: 1.5rem;
}
.about-facts strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--c-water-deep);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 4px;
}
.about-facts span {
    font-size: 0.85rem;
    color: var(--c-ink-muted);
}
.about-final {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.35rem;
    color: var(--c-water-deep);
    margin: 1.5rem 0 0;
}

/* ---------- galerie (masonry via CSS columns) ---------- */
.gallery {
    column-count: 3;
    column-gap: 1rem;
}
.gallery-item {
    display: block;
    width: 100%;
    margin: 0 0 1rem;
    padding: 0;
    border: 0;
    background: none;
    border-radius: var(--r-md);
    overflow: hidden;
    cursor: zoom-in;
    break-inside: avoid;
    transition: transform var(--t-base), box-shadow var(--t-base);
    box-shadow: var(--shadow-sm);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.gallery-item img {
    width: 100%;
    display: block;
    transition: transform var(--t-slow);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-cta {
    text-align: center;
    margin-top: 2.5rem;
    color: var(--c-ink-muted);
}

/* ---------- contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.contact-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: var(--r-lg);
}
.contact-card h3 { margin: 0 0 1.25rem; color: #fff; }
.contact-card ul { list-style: none; padding: 0; margin: 0 0 1.25rem; }
.contact-card li {
    display: flex; align-items: center; gap: 12px;
    padding: 8px 0;
    color: rgba(255,255,255,0.9);
}
.contact-card svg { color: var(--c-sand); flex-shrink: 0; }
.contact-note {
    color: rgba(255,255,255,0.7);
    font-size: 0.92rem;
    margin: 1rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.contact-map {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #000;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    display: block;
    border: 0;
    filter: grayscale(0.2) contrast(1.05);
}

.directions {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r-lg);
    padding: 2rem;
}
.directions h3 { margin: 0 0 1.5rem; color: #fff; }
.directions-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
.dir-dir {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--c-sand);
    margin: 0 0 0.5rem;
    font-weight: 600;
}
.directions p { color: rgba(255,255,255,0.85); margin: 0; }

.directions-map {
    margin: 2rem 0 0;
    border-radius: var(--r-md);
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}
.directions-map img {
    width: 100%;
    height: auto;
    display: block;
    filter: saturate(1.05) brightness(0.97);
}
.directions-map figcaption {
    padding: 0.85rem 1rem;
    text-align: center;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* ---------- footer ---------- */
.site-footer {
    background: #062E3A;
    color: rgba(255,255,255,0.7);
    padding: 3rem 0 1.5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    align-items: start;
}
.footer-grid img { filter: brightness(0) invert(1) opacity(0.85); }
.footer-grid nav { display: flex; flex-direction: column; gap: 6px; }
.footer-grid nav a, .footer-social a {
    color: rgba(255,255,255,0.7);
    font-size: 0.92rem;
    padding: 2px 0;
}
.footer-grid nav a:hover, .footer-social a:hover { color: var(--c-sand); }
.footer-social { display: flex; flex-direction: column; gap: 6px; }
.footer-copy {
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    margin: 1.5rem 0 0;
}

/* ---------- floating action buttons ---------- */
.fab {
    position: fixed; bottom: 20px; right: 20px;
    display: flex; flex-direction: column; gap: 12px;
    z-index: 90;
}
.fab-btn {
    width: 56px; height: 56px;
    border-radius: 50%;
    display: grid; place-items: center;
    color: #fff;
    box-shadow: var(--shadow-md);
    transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.fab-btn:hover { transform: scale(1.08); color: #fff; box-shadow: var(--shadow-lg); }
.fab-wa { background: #25D366; }
.fab-tel {
    background: var(--c-water-deep);
    animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: var(--shadow-md), 0 0 0 0 rgba(10, 77, 94, 0.5); }
    50% { box-shadow: var(--shadow-md), 0 0 0 16px rgba(10, 77, 94, 0); }
}

/* ---------- call chooser (2 numere) ---------- */
/* butoanele care deschid selectorul păstrează stilul de <a> */
button.header-cta, button.fab-btn { border: 0; font: inherit; }

.contact-phones { align-items: flex-start; }
.contact-phones-list { display: flex; flex-direction: column; gap: 10px; }
.contact-phones-list a { display: flex; flex-direction: column; line-height: 1.2; color: #fff; }
.contact-phones-list .ph-label { font-size: 0.74rem; color: rgba(255,255,255,0.6); letter-spacing: 0.03em; text-transform: uppercase; margin-bottom: 2px; }
.contact-phones-list strong { color: #fff; font-size: 1.1rem; font-weight: 600; letter-spacing: 0.02em; }
.contact-phones-list .ph-note { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-top: 2px; letter-spacing: 0.01em; }
.contact-phones-list a:hover .ph-label,
.contact-phones-list a:hover strong { color: var(--c-sand); }
.footer-ai { opacity: 0.6; font-size: 0.82em; }

.callbox {
    position: fixed; inset: 0;
    background: rgba(6, 30, 38, 0.62);
    backdrop-filter: blur(4px);
    z-index: 1100;
    display: grid; place-items: center;
    padding: 1.5rem;
    animation: fadeIn var(--t-base);
}
.callbox[hidden] { display: none; }
.callbox-panel {
    position: relative;
    background: #fff;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    padding: 1.75rem 1.5rem 1.5rem;
    width: min(100%, 420px);
    animation: revealUp var(--t-base);
}
.callbox-close {
    position: absolute; top: 10px; right: 12px;
    background: none; border: 0;
    font-size: 28px; line-height: 1;
    color: var(--c-ink-muted);
    width: 40px; height: 40px;
    border-radius: 50%;
    transition: background var(--t-fast), color var(--t-fast);
}
.callbox-close:hover { background: var(--c-bg-alt); color: var(--c-ink); }
.callbox-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--c-ink);
    margin: 0 0 1.1rem;
    padding-right: 2rem;
}
.callbox-opt {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 16px;
    border-radius: var(--r-md);
    border: 1px solid var(--c-line);
    color: var(--c-ink);
    transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
}
.callbox-opt + .callbox-opt { margin-top: 0.75rem; }
.callbox-opt:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: transparent; color: var(--c-ink); }
.callbox-ico {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border-radius: 50%;
    display: grid; place-items: center;
    background: var(--c-water-mist);
    color: var(--c-water-deep);
}
.callbox-txt { display: flex; flex-direction: column; flex: 1; }
.callbox-txt strong { font-size: 0.95rem; color: var(--c-ink); font-weight: 600; }
.callbox-txt em { font-style: normal; font-size: 1.2rem; font-weight: 600; color: var(--c-water-deep); letter-spacing: 0.02em; margin-top: 2px; }
.callbox-note { display: block; font-size: 0.72rem; margin-top: 4px; color: var(--c-ink-muted); letter-spacing: 0.01em; }
.callbox-opt-primary .callbox-note { color: rgba(255,255,255,0.72); }
.callbox-go { font-size: 1.7rem; color: var(--c-ink-muted); line-height: 1; }
.callbox-opt-primary {
    background: linear-gradient(180deg, var(--c-water-deep), #093E4D);
    border-color: transparent;
}
.callbox-opt-primary .callbox-ico { background: rgba(255,255,255,0.15); color: #fff; }
.callbox-opt-primary .callbox-txt strong { color: rgba(255,255,255,0.78); }
.callbox-opt-primary .callbox-txt em { color: #fff; }
.callbox-opt-primary .callbox-go { color: rgba(255,255,255,0.6); }
.callbox-opt-primary:hover { color: #fff; }

@keyframes sheetUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
@media (max-width: 560px) {
    .callbox { place-items: end center; padding: 0; }
    .callbox-panel {
        width: 100%;
        border-radius: var(--r-lg) var(--r-lg) 0 0;
        padding-bottom: 2rem;
        animation: sheetUp var(--t-base);
    }
}

/* ---------- lightbox ---------- */
.lightbox {
    position: fixed; inset: 0;
    background: rgba(6, 30, 38, 0.96);
    z-index: 1000;
    display: grid; place-items: center;
    padding: 2rem;
    animation: fadeIn var(--t-base);
}
.lightbox[hidden] { display: none; }
.lb-img {
    max-width: 100%;
    max-height: 88vh;
    border-radius: var(--r-md);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lb-close, .lb-prev, .lb-next {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 52px; height: 52px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    display: grid; place-items: center;
    transition: background var(--t-fast), transform var(--t-fast);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.2); transform: scale(1.08); }
.lb-close { top: 20px; right: 20px; font-size: 32px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) scale(1.08); }
.lb-next:hover { transform: translateY(-50%) scale(1.08); }
.lb-counter {
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin: 0;
}

/* ---------- scroll reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
    .header-cta { padding: 10px 12px; }
    .header-cta span { display: none; }
    .nav-list { gap: 0; }
    .nav-list a { padding: 8px 10px; font-size: 0.9rem; }
}

@media (max-width: 920px) {
    .about, .contact-grid, .directions-grid, .rules,
    .rules-two, .rules-extra { grid-template-columns: 1fr; }
    .about-media { aspect-ratio: 16 / 11; max-height: 460px; }
    .gallery { column-count: 2; }
    .footer-grid { grid-template-columns: 1fr; }
    .price-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .price-panel { grid-template-columns: 1fr; }
    .price-panel-cond { grid-template-columns: 1fr; }
    .rules-cabins-list { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    :root { --header-h: 64px; }
    .header-cta span { display: none; }
    .header-cta { padding: 10px; }

    .nav { position: static; }
    .nav-toggle { display: block; order: 3; }
    .nav-list {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 100vh;
        height: 100svh;
        background: rgba(251, 251, 249, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: calc(var(--header-h) + 1.5rem) 1.5rem 2rem;
        gap: 0;
        transform: translateY(-110%);
        transition: transform var(--t-base);
        z-index: 99;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        overflow-y: auto;
    }
    .nav.is-open .nav-list { transform: translateY(0); }
    .nav.is-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--c-ink); }
    .nav.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
    .nav.is-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--c-ink); }
    .nav-list a {
        color: var(--c-ink);
        font-size: 1.1rem;
        padding: 14px 4px;
        border-radius: 0;
        border-bottom: 1px solid var(--c-line);
    }
    .nav-list a::after { display: none; }

    .site-header { background: transparent; }
    .site-header .wrap { gap: 0.5rem; }

    .gallery { column-count: 1; }
    .price-grid, .price-grid-4 { grid-template-columns: 1fr; }
    .hero { min-height: 88vh; }
    .fab-btn { width: 52px; height: 52px; }
    .fab { bottom: 14px; right: 14px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
    .hero-slide img { animation: none; }
}
