/* Mobile-first · Apartmán Marcel */

:root {
    --primary: #2a6b44;
    --primary-dark: #1a4a2e;
    --primary-light: #3d8f5c;
    --accent: #f0e6d4;
    --accent-warm: #e8b86d;
    --text: #152019;
    --text-muted: #5a6b60;
    --bg: #f6f8f5;
    --bg-alt: #eef3ee;
    --white: #ffffff;
    --border: #dde5df;
    --shadow: 0 8px 32px rgba(26, 74, 46, 0.1);
    --shadow-lg: 0 20px 50px rgba(26, 74, 46, 0.14);
    --radius: 16px;
    --radius-sm: 10px;
    --header-h: 64px;
    --font: 'DM Sans', system-ui, sans-serif;
    --font-display: 'Outfit', 'DM Sans', system-ui, sans-serif;
    --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    padding-top: var(--header-h);
    padding-bottom: calc(4.5rem + var(--safe-bottom));
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
    max-width: 100vw;
}

main {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

section {
    width: 100%;
}

.container {
    width: min(1140px, calc(100% - 2rem));
    margin-inline: auto;
    padding-inline: 0;
}

body.no-mobile-cta { padding-bottom: 0; }

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

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

/* Typography */
h1, h2, h3, .logo { font-family: var(--font-display); }

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-light);
    margin: 0 0 0.5rem;
}

.section-label-light { color: rgba(255, 255, 255, 0.85); }

/* Header – mobile first */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    height: var(--header-h);
    transition: height var(--transition), box-shadow var(--transition), background var(--transition);
}

.site-header.is-scrolled {
    height: 58px;
    background: rgba(255, 255, 255, 0.96);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: min(1140px, calc(100% - 2rem));
    margin-inline: auto;
}

.logo {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -0.02em;
}

.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--bg-alt);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
    color: var(--primary);
    cursor: pointer;
}

.nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 1rem 1rem 6rem;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
    overflow-y: auto;
}

.nav-links.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.nav-links li { border-bottom: 1px solid var(--border); }

.nav-links a:not(.btn) {
    display: block;
    padding: 1rem 0.5rem;
    color: var(--text);
    font-weight: 600;
    font-size: 1.05rem;
}

.nav-links a:not(.btn).active { color: var(--primary); }

.nav-links .btn-nav {
    display: inline-flex;
    width: 100%;
    max-width: 20rem;
    margin: 1rem auto 0;
    justify-content: center;
    color: var(--white);
    border: none;
}

.nav-links .btn-nav:hover {
    color: var(--white);
}

.nav-links li:last-child {
    display: flex;
    justify-content: center;
    border-bottom: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
    font-family: inherit;
    min-height: 48px;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 16px rgba(42, 107, 68, 0.35);
}

.btn-primary:hover {
    color: var(--white);
    box-shadow: 0 8px 24px rgba(42, 107, 68, 0.45);
    transform: translateY(-1px);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.2); color: var(--white); }

.btn-lg { padding: 1rem 1.75rem; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-nav { padding: 0.85rem 1.25rem; font-size: 0.95rem; }

/* Mobile sticky CTA */
.mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    display: flex;
    justify-content: center;
    padding: 0.75rem 1rem calc(0.75rem + var(--safe-bottom));
    background: linear-gradient(to top, rgba(246, 248, 245, 0.98) 70%, transparent);
    backdrop-filter: blur(8px);
}

.mobile-cta .btn {
    width: min(100%, 28rem);
}

/* Hero */
.hero {
    position: relative;
    min-height: calc(100svh - var(--header-h));
    min-height: calc(100dvh - var(--header-h));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    margin-top: calc(-1 * var(--header-h));
    padding-top: var(--header-h);
}

.hero-media {
    position: absolute;
    inset: 0;
    margin: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 18s ease-in-out infinite alternate;
}

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

.hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(21, 32, 25, 0.92) 0%, rgba(21, 32, 25, 0.45) 45%, rgba(21, 32, 25, 0.25) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 2rem 1rem 3.5rem;
    width: 100%;
    max-width: 640px;
    margin-inline: auto;
}

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    backdrop-filter: blur(6px);
}

.hero h1 {
    font-size: clamp(2.25rem, 9vw, 3.75rem);
    font-weight: 800;
    margin: 0 0 0.75rem;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.hero-rating { margin: 0 0 1rem; font-size: 0.95rem; }

.rating-score {
    background: linear-gradient(135deg, var(--accent-warm), #f5d9a8);
    color: var(--primary-dark);
    padding: 0.25rem 0.65rem;
    border-radius: 8px;
    font-weight: 800;
}

.hero-tagline {
    font-size: 1.05rem;
    opacity: 0.92;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
}

.hero-scroll {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    animation: bounce 2s infinite;
}

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

/* Sections */
.section { padding: 3.5rem 0; }
.section-tight { padding-top: 1.5rem; }

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2rem;
    width: 100%;
}

.section-header h2 {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
    color: var(--primary-dark);
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}

.section-header p { color: var(--text-muted); margin: 0; }

.page-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: 2.5rem 0;
    text-align: center;
}

.page-hero-mesh {
    background:
        radial-gradient(circle at 20% 80%, rgba(232, 184, 109, 0.25), transparent 50%),
        linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.page-hero h1 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.85rem, 6vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.page-hero p { margin: 0; opacity: 0.9; }
.page-hero-sm { padding: 2.25rem 0; }

/* Features */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-grid li {
    background: var(--white);
    padding: 1.25rem 1rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: transform var(--transition), box-shadow var(--transition);
}

.feature-grid li:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.feature-grid i {
    font-size: 1.5rem;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 14px;
    margin: 0 auto 0.75rem;
    display: block;
}

.feature-grid strong { display: block; font-size: 0.95rem; }
.feature-grid span { font-size: 0.8rem; color: var(--text-muted); }

/* About */
.about-grid {
    display: grid;
    gap: 1.25rem;
}

.about-grid h2 { color: var(--primary-dark); margin-top: 0; font-size: 1.5rem; }

.rooms-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.rooms-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-warm), var(--primary));
}

.rooms-card h3 { margin-top: 0; color: var(--primary-dark); }
.rooms-card ul { padding-left: 1.2rem; margin: 0; }

/* Pricing */
.pricing { background: var(--bg-alt); }

.pricing-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform var(--transition);
}

.price-card:hover { transform: translateY(-2px); }

.price-card h3 { margin-top: 0; color: var(--primary-dark); }
.price-card ul { padding-left: 1.2rem; margin: 0; }
.price-period { color: var(--text-muted); font-size: 0.88rem; }

.price-card-highlight {
    border: 2px solid var(--primary);
    background: linear-gradient(160deg, #fff, #f3faf5);
}

.price-big {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 0.5rem 0;
    font-family: var(--font-display);
}

.price-note { font-size: 0.85rem; color: var(--text-muted); }
.text-center { text-align: center; }

.text-center .btn {
    margin-inline: auto;
}

.btn-center {
    display: flex;
    justify-content: center;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
}

.gallery-grid figure { margin: 0; }

.gallery-grid img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-sm);
    transition: transform var(--transition);
}

.gallery-link { display: block; overflow: hidden; border-radius: var(--radius-sm); }
.gallery-link:hover img { transform: scale(1.06); }

.gallery-grid figcaption {
    margin-top: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.gallery-grid-preview .gallery-grid,
.gallery-preview .gallery-grid { grid-template-columns: repeat(2, 1fr); }

/* Reviews */
.reviews { background: var(--white); }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 360px));
    justify-content: center;
    gap: 1rem;
    width: 100%;
    margin-inline: auto;
}

.review-card {
    background: var(--bg);
    padding: 1.25rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    position: relative;
    width: 100%;
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-size: 3rem;
    line-height: 1;
    color: var(--primary);
    opacity: 0.12;
    font-family: Georgia, serif;
}

.review-score {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
}

.review-card blockquote {
    margin: 0 0 0.75rem;
    font-style: normal;
    color: var(--text);
    font-size: 0.95rem;
}

.review-card footer { font-size: 0.8rem; color: var(--text-muted); }

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--accent) 0%, #e8dcc8 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(42, 107, 68, 0.08), transparent 70%);
    top: -100px;
    right: -80px;
    border-radius: 50%;
}

.cta-inner {
    text-align: center;
    position: relative;
    width: 100%;
    max-width: 640px;
    margin-inline: auto;
}

.cta-inner h2 { color: var(--primary-dark); margin-top: 0; }

.cta-actions {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0 0;
}

/* Contact */
.contact-stack {
    display: grid;
    gap: 1.25rem;
}

.map-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.map-embed {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--bg-alt);
}

.map-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.map-card-actions { padding: 1rem; }

.contact-card, .attractions {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.contact-card-featured {
    background: linear-gradient(160deg, #fff 0%, #f3faf5 100%);
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-role { color: var(--text-muted); margin: -0.5rem 0 1rem; }

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.contact-list li {
    display: flex;
    gap: 0.85rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.contact-list small {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    font-weight: 600;
}

.contact-list-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--bg-alt);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.attractions-modern h2 { margin-top: 0; color: var(--primary-dark); }

.attraction-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.65rem;
}

.attraction-list li {
    display: flex;
    gap: 0.85rem;
    align-items: center;
    padding: 0.85rem 1rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.attraction-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    background: #edf5ef;
    color: var(--primary-dark);
    border: 1.5px solid rgba(42, 107, 68, 0.25);
    box-shadow: 0 2px 6px rgba(26, 74, 46, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}

.attraction-icon i {
    color: var(--primary-dark);
}

.attraction-info {
    flex: 1;
    min-width: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.attraction-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 0.15rem;
}

/* Reservation */
.reservation-section { background: var(--bg-alt); }

.reservation-layout {
    display: grid;
    gap: 1.25rem;
}

.calendar-panel, .reservation-form-panel {
    background: var(--white);
    padding: 1.25rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.calendar-panel h2, .reservation-form-panel h2 {
    margin-top: 0;
    color: var(--primary-dark);
    font-size: 1.25rem;
}

.calendar-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.82rem;
}

.legend-free i, .legend-booked i {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 3px;
    margin-right: 0.35rem;
    vertical-align: middle;
}

.legend-free i { background: #c8e6d0; border: 1px solid #2a6b44; }
.legend-booked i { background: #fde8e8; border: 1px solid #c44; }

.calendar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.calendar-nav button {
    background: var(--bg-alt);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    color: var(--primary);
    font-size: 0.9rem;
}

.calendar-nav h3 { margin: 0; font-size: 1rem; font-family: var(--font-display); }

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.82rem;
    cursor: pointer;
    border: none;
    background: #edf5ef;
    transition: all var(--transition);
    font-family: inherit;
    padding: 0;
    min-height: 36px;
}

.calendar-day.empty { background: transparent; cursor: default; }
.calendar-day.past { opacity: 0.35; cursor: not-allowed; }
.calendar-day.booked { background: #fde8e8; color: #a33; cursor: not-allowed; }
.calendar-day.checkin, .calendar-day.checkout {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    color: var(--white);
    font-weight: 700;
}
.calendar-day.in-range { background: #c8e6d0; }
.calendar-day:hover:not(.empty):not(.past):not(.booked) { background: #d4edda; }

.calendar-selection {
    margin-top: 0.85rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    padding: 0.75rem;
    background: var(--bg);
    border-radius: var(--radius-sm);
}

/* Forms */
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; margin-bottom: 0.35rem; font-weight: 600; font-size: 0.88rem; }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    background: var(--bg);
    transition: border-color var(--transition), box-shadow var(--transition);
    min-height: 48px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(42, 107, 68, 0.15);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form-check label { display: flex; gap: 0.6rem; align-items: flex-start; font-weight: 400; font-size: 0.88rem; }
.form-check input { width: auto; margin-top: 0.2rem; min-height: auto; }

.price-summary {
    background: linear-gradient(135deg, #f3faf5, var(--accent));
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    border: 1px solid var(--border);
}

.price-summary p { margin: 0.3rem 0; }

.form-message {
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    font-size: 0.92rem;
}

.form-message.error { background: #fde8e8; color: #a33; }
.form-message.success { background: #d4edda; color: #1e5631; }

.payment-panel {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border);
}

.payment-details { margin: 1rem 0; }
.payment-details dt { font-weight: 700; margin-top: 0.65rem; font-size: 0.85rem; color: var(--text-muted); }
.payment-details dd { margin: 0.15rem 0 0; font-size: 1rem; }

.qr-figure { text-align: center; margin: 1.25rem 0 0; }
.qr-figure img { margin: 0 auto; border-radius: var(--radius-sm); max-width: 260px; }
.qr-figure figcaption { margin-top: 0.5rem; font-size: 0.82rem; color: var(--text-muted); }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.lightbox[hidden] { display: none; }

.lightbox figure { margin: 0; max-width: 100%; }
.lightbox img { max-height: 75vh; margin: 0 auto; border-radius: var(--radius-sm); }
.lightbox figcaption { color: #fff; text-align: center; margin-top: 0.75rem; font-size: 0.9rem; }

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
    backdrop-filter: blur(4px);
}

.lightbox-close { top: max(1rem, var(--safe-bottom)); right: 1rem; }
.lightbox-prev { left: 0.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 0.5rem; top: 50%; transform: translateY(-50%); }

/* Footer */
.site-footer {
    background: linear-gradient(160deg, var(--primary-dark), #122a1c);
    color: rgba(255, 255, 255, 0.88);
    padding: 2.5rem 0 1.25rem;
}

.footer-inner {
    display: grid;
    gap: 1.5rem;
    width: min(1140px, calc(100% - 2rem));
    margin: 0 auto 1.5rem;
}

.site-footer h2, .site-footer h3 {
    color: var(--white);
    margin-top: 0;
    font-size: 1.1rem;
}

.site-footer a { color: var(--accent-warm); }
.site-footer ul { list-style: none; padding: 0; }
.site-footer li { margin-bottom: 0.4rem; }

.footer-copy {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.65;
    margin: 0;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    width: min(1140px, calc(100% - 2rem));
    margin-inline: auto;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

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

/* Tablet+ */
@media (min-width: 640px) {
    .feature-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 0.85rem; }
    .hero-actions { flex-direction: row; justify-content: center; }
    .hero-actions .btn { width: auto; }
    .map-embed { aspect-ratio: 16/10; }
}

@media (min-width: 768px) {
    :root { --header-h: 72px; }

    body { padding-bottom: 0; }
    .mobile-cta { display: none; }

    .nav-toggle { display: none; }

    .nav-links {
        position: static;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 1.25rem;
        padding: 0;
        transform: none;
        opacity: 1;
        visibility: visible;
        overflow: visible;
        background: transparent;
    }

    .nav-links li { border: none; }

    .nav-links a:not(.btn) {
        padding: 0.35rem 0;
        font-size: 0.92rem;
        position: relative;
    }

    .nav-links a:not(.btn).active::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--primary);
        border-radius: 2px;
    }

    .nav-links .btn-nav {
        width: auto;
        max-width: none;
        margin: 0;
    }

    .nav-links li:last-child {
        display: list-item;
    }

    .section { padding: 5rem 0; }

    .about-grid { grid-template-columns: 1.5fr 1fr; gap: 2rem; }
    .pricing-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-stack { grid-template-columns: 1fr 1fr; }
    .reservation-layout { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .footer-inner { grid-template-columns: repeat(3, 1fr); }

    .calendar-panel, .reservation-form-panel { padding: 1.75rem; }
    .feature-grid { grid-template-columns: repeat(6, 1fr); }
}

@media (min-width: 1024px) {
    .hero { align-items: center; }
    .hero-content { padding-bottom: 2rem; }
    .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Admin */
.admin-body { padding-top: 0; padding-bottom: 0; background: #f0f2f5; }

.admin-header {
    background: var(--primary-dark);
    color: var(--white);
    padding: 1rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.admin-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.admin-nav a { color: rgba(255, 255, 255, 0.85); font-weight: 500; font-size: 0.9rem; }
.admin-nav a:hover, .admin-nav a.active { color: var(--white); }

.admin-main { width: min(1200px, 100% - 1.5rem); margin: 1.5rem auto; }

.admin-card {
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 1.25rem;
}

.admin-status-form {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.admin-status-form h2 {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    color: var(--primary-dark);
}

.form-hint {
    margin: 0 0 1rem;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--text-muted);
}

.admin-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }

.admin-table th, .admin-table td {
    padding: 0.65rem 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.admin-table th { background: var(--bg); font-weight: 600; }

.status-badge {
    display: inline-block;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.status-waiting_for_payment { background: #fff3cd; color: #856404; }
.status-confirmed { background: #d4edda; color: #155724; }
.status-cancelled { background: #f8d7da; color: #721c24; }
.status-checked_out { background: #e2e3e5; color: #383d41; }
.status-pending { background: #cce5ff; color: #004085; }

.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.admin-login-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    width: min(400px, 100% - 2rem);
    box-shadow: var(--shadow-lg);
}

.admin-login-card h1 { margin-top: 0; color: var(--primary-dark); text-align: center; }

.alert { padding: 0.85rem 1rem; border-radius: var(--radius-sm); margin-bottom: 1rem; }
.alert-error { background: #fde8e8; color: #a33; }
.alert-success { background: #d4edda; color: #155724; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.stat-card {
    background: var(--white);
    padding: 1.25rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-card strong {
    display: block;
    font-size: 1.75rem;
    color: var(--primary);
    font-family: var(--font-display);
}

@media (min-width: 768px) {
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 767px) {
    .form-row { grid-template-columns: 1fr; }
    .admin-table { display: block; overflow-x: auto; }
}
