:root {
  --bg: #f9fafb;
  --panel: #ffffff;
  --border: #e6e9ef;
  --text: #1f2a3d;
  --muted: #6b7589;
  --accent: #f17c6f;
  --accent-strong: #e35e4f;
  --radius: 16px;
  --shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}

* { box-sizing: border-box; }
body { background: var(--bg); color: var(--text); font-family: "Manrope", system-ui, -apple-system, sans-serif; }
.animate-block { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-block.visible { opacity: 1; transform: translateY(0); }

.topbar { background: linear-gradient(90deg, rgba(241,124,111,0.08) 0%, rgba(241,124,111,0.02) 100%); border-bottom: 1px solid var(--border); font-size: 14px; color: var(--muted); }
.topbar-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 8px; padding: 8px 0; }
.topbar-item { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; padding: 4px 10px; border-radius: 10px; background: rgba(255,255,255,0.8); box-shadow: 0 6px 14px rgba(15,23,42,0.05); }
.topbar-icon { font-size: 16px; color: var(--accent-strong); }
@media (min-width: 992px) {
  .topbar-inner { grid-template-columns: auto auto; justify-content: flex-end; }
  .topbar-item:nth-child(1) { justify-self: end; }
  .topbar-item:nth-child(2) { justify-self: end; }
}
@media (max-width: 991px) {
  .topbar-inner { grid-template-columns: 1fr 1fr; justify-content: space-between; padding: 6px 0; }
  .topbar-item { padding: 3px 8px; font-size: 13px; }
  .topbar-item:nth-child(1) { justify-self: start; }
  .topbar-item:nth-child(2) { justify-self: end; }
  .topbar-icon { font-size: 14px; }
}

.navbar .nav-link { color: var(--muted); }
.navbar .nav-link:hover { color: var(--accent-strong); }
.navbar .nav-link.active { color: var(--text); font-weight: 700; }
.navbar.sticky-top { top: 0; z-index: 1040; }
.brand-logo { font-family: 'Great Vibes', cursive; font-size: 32px; background: linear-gradient(120deg, #fefefe 0%, #f3b6b0 40%, #c7749e 80%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; position: relative; padding-right: 8px; animation: brandDraw 2.8s cubic-bezier(0.4,0,0.2,1) 0.1s forwards, brandGlow 6s ease-in-out infinite alternate 3s, brandFloat 7s ease-in-out infinite 3s; clip-path: inset(0 100% 0 0); }
.navbar-brand { display: inline-flex; flex-direction: column; gap: 2px; }
.brand-logo::after { content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: linear-gradient(90deg, transparent 0%, rgba(241,124,111,0.8) 50%, transparent 100%); opacity: 0; transform: translateY(4px); animation: brandUnderline 6s ease-in-out infinite; }

.btn-accent { background: var(--accent); border-color: var(--accent); color: #fff; box-shadow: 0 10px 24px rgba(225, 94, 79, 0.18); }
.btn-accent:hover { background: var(--accent-strong); border-color: var(--accent-strong); }

.btn-outline-dark { border-color: var(--border); color: var(--text); }
.btn-outline-dark:hover { border-color: var(--accent); color: var(--accent); }

.hero { position: relative; padding: 140px 0 120px; min-height: 90vh; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-fullslide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 0.8s ease; }
.hero-fullslide.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0.15) 100%); z-index: 1; }
.hero-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 28px; align-items: center; position: relative; z-index: 2; }
.hero-text h1 { font-size: clamp(32px, 5vw, 52px); margin-bottom: 12px; }
.hero-text .lead { color: rgba(255,255,255,0.8); }
.hero-stats { list-style: none; padding: 0; margin: 16px 0 0; display: flex; gap: 16px; flex-wrap: wrap; color: rgba(255,255,255,0.75); }
.hero-stats strong { display: block; color: #fff; font-size: 20px; }
.glass-panel { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); border-radius: 18px; padding: 18px; box-shadow: var(--shadow); backdrop-filter: blur(6px); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin: 12px 0; }
.dots { display: flex; gap: 8px; }
.hero-dots { margin-top: 10px; }
.dots button { width: 10px; height: 10px; border-radius: 50%; border: 1px solid var(--border); background: transparent; }
.dots button.active { background: var(--accent); border-color: var(--accent); }
.hero-script { font-family: 'Great Vibes', cursive; font-size: clamp(48px, 8vw, 78px); font-weight: 600; white-space: nowrap; display: inline-block; text-shadow: none; overflow: hidden; clip-path: inset(0 100% 0 0); animation: revealStroke 4s cubic-bezier(0.4,0,0.15,1) 0.2s forwards, sway 6s ease-in-out 4s infinite; letter-spacing: 0.5px; background: linear-gradient(to bottom, rgba(255,255,255,0.78) 0%, #ffffff 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-text { animation: fadeUp 1s ease 0.1s both; }
.hero-adv { animation: fadeUp 1.2s ease both; }
.hero-adv:nth-child(2) { animation-delay: 0.18s; }
.hero-adv:nth-child(3) { animation-delay: 0.36s; }
.hero-advantages { margin-top: 18px; }
.hero-adv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 12px; }
.hero-adv { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.25); border-radius: 14px; padding: 14px; color: #fff; font-size: 14px; }
.hero-page { position: relative; padding: 120px 0 80px; background-size: cover; background-position: center; overflow: hidden; color: #fff; }
.hero-page .hero-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.2) 100%); z-index: 1; }
.hero-page .hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr; justify-items: center; }
.hero-page .glass-panel { max-width: 720px; text-align: center; }
.hero-page .hero-actions { justify-content: center; }

.section { padding: 64px 0; }
.section-muted { background: #f1f3f6; }
.section, .hero, .about-gallery, .contact-map { scroll-margin-top: 76px; }
.section-head { max-width: 720px; margin: 0 auto 28px; }
.section-head h2 { margin: 8px 0 8px; }
.muted { color: var(--muted); }
.eyebrow { text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); font-size: 12px; margin-bottom: 6px; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 16px; }
.card { border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow); background: var(--panel); }
.card.no-bg { background: transparent; box-shadow: none; }
.badge { background: rgba(241,124,111,0.12); color: var(--accent-strong); border: 1px solid rgba(241,124,111,0.4); }

.rooms-slider { position: relative; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); min-height: 420px; background: #111; }
.room-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 0.7s ease; min-height: 360px; display: flex; align-items: flex-end; }
.room-slide.active { opacity: 1; }
.room-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%); }
.room-content { position: relative; z-index: 2; padding: 24px; color: #fff; max-width: 520px; }
.room-content .muted { color: rgba(255,255,255,0.8); }
.room-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.35); color: #fff; border: none; width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; cursor: pointer; }
.room-nav.prev { left: 14px; }
.room-nav.next { right: 14px; }
.room-nav:hover { background: rgba(0,0,0,0.5); }
.room-dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
.room-dots button { width: 10px; height: 10px; border-radius: 50%; border: 1px solid var(--border); background: transparent; }
.room-dots button.active { background: var(--accent); border-color: var(--accent); }
.room-list { display: flex; flex-direction: column; gap: 18px; }
.room-row { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 16px; align-items: stretch; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); background: #fff; }
.room-photo { min-height: 220px; background-size: cover; background-position: center; }
.room-info { padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.room-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.room-slide-detail { height: 320px; background-size: cover; background-position: center; border-radius: 12px; }
.room-features { list-style: none; padding-left: 0; margin: 10px 0 0; display: grid; gap: 4px; color: rgba(255,255,255,0.8); }
.room-features li::before { content: '•'; margin-right: 6px; color: var(--accent); }
.room-features.muted { color: var(--muted); }

.room-modal-body { display: grid; gap: 16px; }
.room-modal-body .muted { line-height: 1.6; }
.room-modal-meta { display: flex; gap: 10px; flex-wrap: wrap; }
.room-pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 12px; background: rgba(241,124,111,0.12); color: var(--accent-strong); font-weight: 600; }
.room-pill span { color: var(--muted); font-weight: 500; }
.room-feature-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 8px; padding: 8px; border-radius: 12px; background: #f7f9fc; border: 1px solid var(--border); }
.room-feature-grid li { list-style: none; padding: 6px 0; border-bottom: 1px dashed #e2e6ef; color: var(--muted); }
.room-feature-grid li:last-child { border-bottom: none; }
.room-feature-grid li::before { content: '✓'; color: var(--accent); margin-right: 8px; font-weight: 700; }

.room-cards { display: grid; grid-template-columns: 1fr; gap: 18px; align-items: stretch; grid-auto-rows: 1fr; }
.room-card { border: 1px solid var(--border); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); background: #fff; display: grid; grid-template-rows: auto 1fr; height: 100%; transition: transform .2s ease, box-shadow .2s ease; }
.room-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(15,23,42,0.12); }
.room-card-photo { padding-top: 62%; background-size: cover; background-position: center; background-color: #f5f6fa; }
.room-card-body { padding: 18px; display: grid; grid-template-rows: auto auto auto 1fr auto; gap: 8px; min-height: 220px; height: 100%; }
.room-card-body h3 { margin: 0; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.room-card-body .eyebrow { display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.room-card-body .muted { display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.room-card .room-actions { margin-top: auto; display: flex; gap: 8px; flex-wrap: wrap; }

@media (min-width: 768px) {
  .room-cards { grid-template-columns: repeat(2, minmax(260px, 1fr)); }
}

@media (min-width: 1200px) {
  .room-cards { grid-template-columns: repeat(3, minmax(280px, 1fr)); }
}

.fancy-cards .card { position: relative; overflow: hidden; border: none; background: linear-gradient(180deg, #fff 0%, #f7f9fc 100%); box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08); }
.icon-pill { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 14px; background: rgba(241,124,111,0.12); color: var(--accent-strong); font-size: 22px; margin-bottom: 10px; }

.split { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 20px; align-items: center; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { padding: 8px 12px; border-radius: 999px; border: 1px solid var(--border); background: #fff; color: var(--muted); }
.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap: 20px; align-items: stretch; }
.about-stack { display: grid; gap: 14px; }
.about-card { border: 1px solid var(--border); border-radius: 16px; padding: 18px; box-shadow: var(--shadow); background: #fff; height: 100%; }
.about-list { margin: 0 0 12px; padding-left: 18px; color: var(--muted); display: grid; gap: 6px; }
.reveal { animation: fadeUp 0.9s ease both; }
.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.22s; }
.about-photo { border-radius: 18px; box-shadow: var(--shadow); background-size: cover; background-position: center; min-height: 360px; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 12px; }
.gallery-grid .tile { padding-top: 70%; background-size: cover; background-position: center; border-radius: 14px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.about-gallery { margin-top: 26px; }
.gallery-slider { position: relative; overflow: hidden; border-radius: 18px; background: #fff; box-shadow: var(--shadow); padding: 10px; --gallery-gap: 10px; }
.gallery-track { display: flex; gap: var(--gallery-gap); transition: transform 0.5s ease; --gallery-visible: 1; }
.gallery-item { flex: 0 0 calc((100% - (var(--gallery-visible) - 1)*var(--gallery-gap))/var(--gallery-visible)); border-radius: 14px; min-height: 180px; background-size: cover; background-position: center; box-shadow: var(--shadow); cursor: zoom-in; }
.gallery-controls { display: flex; justify-content: center; gap: 12px; margin-top: 8px; }
.gallery-nav { border: 1px solid var(--border); background: #fff; color: var(--text); width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow); }
.gallery-nav:hover { background: rgba(241,124,111,0.12); border-color: var(--accent); color: var(--accent-strong); }
@media (min-width: 768px) {
  .gallery-item { min-height: 220px; }
}

.booking-form .form-control { border-radius: 10px; border: 1px solid var(--border); }
.booking-form .form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 2px rgba(241,124,111,0.15); }
.booking-card { box-shadow: 0 18px 38px rgba(15,23,42,0.08); border-radius: 16px; }
.booking-progress-line { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.booking-progress { flex: 1; position: relative; background: #f1f3f6; border-radius: 10px; height: 12px; overflow: hidden; }
.booking-progress-bar { position: absolute; inset: 0; width: 0%; background: linear-gradient(90deg, var(--accent) 0%, var(--accent-strong) 100%); transition: width 0.3s ease; }
.booking-progress-text { min-width: 48px; text-align: right; font-size: 13px; color: var(--muted); }
.group-progress-line .booking-progress { height: 8px; }
.group-progress-line .booking-progress-text { min-width: 42px; font-size: 12px; }
.booking-steps { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; font-size: 13px; color: var(--muted); }
.booking-steps .step { padding: 6px 10px; border-radius: 10px; background: #f1f3f6; }
.booking-steps .step.active { background: rgba(241,124,111,0.12); color: var(--accent-strong); }
.booking-steps .divider { flex: 1; height: 1px; background: var(--border); opacity: 0.6; }
.booking-hints { padding-left: 18px; margin: 12px 0 0; display: grid; gap: 6px; }
.booking-hints li { color: var(--muted); }
.input-icon { position: relative; display: flex; align-items: center; }
.input-icon span { position: absolute; left: 10px; pointer-events: none; }
.input-icon .form-control { padding-left: 34px; }
.alert { border-radius: 10px; margin-bottom: 0; }
.inline-booking-status { margin-top: 16px; margin-bottom: 6px; }
.auto-resize { resize: none; overflow: hidden; min-height: 64px; }
.booking-info { position: relative; border-radius: 14px; background: #111; border: 1px solid var(--border); box-shadow: 0 12px 24px rgba(15,23,42,0.05); overflow: hidden; color: #fff; min-height: 100%; }
.booking-info-content { position: absolute; inset: 0; padding: 16px; display: grid; align-content: start; gap: 10px; z-index: 2; }
.booking-info .muted, .booking-info .booking-hints li, .booking-info .eyebrow, .booking-info h2 { color: #f5f7fb; }
.booking-info .booking-hints { padding-left: 18px; }
.booking-label { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.82); margin: 0; }
.booking-label-mobile { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.split { align-items: stretch; }
.booking-hero { position: absolute; inset: 0; border-radius: 12px; overflow: hidden; }
.booking-hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 0.8s ease; }
.booking-hero-slide.active { opacity: 1; }
.booking-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.15) 100%); pointer-events: none; z-index: 1; }

footer { color: var(--muted); }
.site-footer { background: #111827; color: #e5e7eb; padding: 36px 0 24px; margin-top: 24px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.04); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 20px; align-items: start; }
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.footer-list a { color: #e5e7eb; text-decoration: none; }
.footer-list a:hover { color: var(--accent); }
.footer-text { margin-bottom: 6px; color: #cbd5e1; }
.footer-copy { color: #9ca3af; text-align: center; }
.footer-copy.full { width: 100%; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-grid > div:nth-child(1) { justify-self: start; text-align: left; }
.footer-grid > div:nth-child(2) { justify-self: center; text-align: center; }
.footer-grid > div:nth-child(3) { justify-self: end; text-align: right; }
.site-footer .eyebrow { color: rgba(255,255,255,0.65); margin-bottom: 6px; }
@media (max-width: 991px) {
  .footer-grid > div { justify-self: start; text-align: left; }
}

.gallery-head { max-width: 760px; margin: 0 auto 24px; text-align: center; }
.gallery-head h2 { font-family: 'Playfair Display', 'Times New Roman', serif; font-weight: 700; letter-spacing: 0.5px; }
.display-serif { font-family: 'Playfair Display', 'Times New Roman', serif; font-weight: 700; letter-spacing: 0.3px; }
#rooms { background: #f5f5f7; }
.news-section, #rooms .section-head { text-align: center; }
.section-hidden { display: none; }
#booking { background: #f5f5f7; }
.news-section { background: #fff; }
.news-section .section-head { text-align: center; }
.news-section h2 { font-family: 'Playfair Display', 'Times New Roman', serif; font-weight: 700; letter-spacing: 0.4px; }
.news-head .muted { max-width: 560px; margin: 0 auto; }
.news-grid { display: none; }
.news-slider { position: relative; overflow: hidden; --news-gap: 12px; }
.news-track { display: flex; gap: var(--news-gap); transition: transform 0.5s ease; --news-visible: 1; align-items: stretch; }
.news-item { flex: 0 0 calc((100% - (var(--news-visible) - 1)*var(--news-gap))/var(--news-visible)); border-radius: 14px; padding: 16px; background: #fff; box-shadow: none; border: 1px solid var(--border); text-align: center; display: grid; grid-template-rows: auto 1fr auto; gap: 8px; min-height: 220px; height: 100%; align-items: start; }
.news-badge { display: inline-flex; align-items: center; justify-content: center; padding: 6px 10px; border-radius: 999px; background: rgba(241,124,111,0.12); color: var(--accent-strong); font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; }
.news-link { color: var(--accent-strong); font-weight: 600; text-decoration: none; }
.news-link:hover { text-decoration: underline; }
.news-date { font-size: 12px; color: var(--muted); }
.news-foot { margin-top: auto; display: flex; flex-direction: column; gap: 6px; align-items: center; }
.news-controls { display: flex; justify-content: center; gap: 12px; margin-top: 10px; }
.news-nav { border: 1px solid var(--border); background: #fff; color: var(--text); width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow); }
.news-nav:hover { background: rgba(241,124,111,0.12); border-color: var(--accent); color: var(--accent-strong); }
@media (min-width: 992px) {
  .news-item { min-height: 260px; }
}
.news-modal-figure { margin-bottom: 12px; border-radius: 12px; overflow: hidden; display: none; }
.news-modal-figure img { width: 100%; border-radius: 12px; display: block; object-fit: cover; }
.news-modal-text { color: var(--muted); display: grid; gap: 6px; }
.news-modal-text ul { padding-left: 18px; margin: 0; }
.news-modal-text p { margin-bottom: 0; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap: 20px; align-items: stretch; }
.contact-card { border: 1px solid var(--border); border-radius: 16px; padding: 18px; background: #fff; box-shadow: var(--shadow); }
.contact-list { list-style: none; padding: 0; margin: 14px 0; display: grid; gap: 12px; }
.contact-list li { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: center; }
.contact-icon { width: 36px; height: 36px; border-radius: 12px; display: grid; place-items: center; background: rgba(241,124,111,0.12); color: var(--accent-strong); font-size: 18px; }
.contact-map { position: relative; border-radius: 16px; overflow: hidden; min-height: 320px; background: #e8ecf3; box-shadow: var(--shadow); }
.contact-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; filter: grayscale(0.1) contrast(1) brightness(1); }
.map-inline { position: absolute; inset: 0; display: block; min-height: 320px; pointer-events: none; transition: filter 0.4s ease, opacity 0.4s ease; }
.map-mobile-btn { display: none; position: absolute; bottom: 12px; left: 12px; z-index: 3; }
.map-overlay { position: absolute; inset: 0; z-index: 1; padding: 18px; color: #fff; background: linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.06) 45%, rgba(0,0,0,0) 100%); pointer-events: none; }
.map-cover { position: absolute; inset: 0; z-index: 2; display: flex; align-items: flex-end; justify-content: flex-start; padding: 12px; background: linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.22) 80%); color: #fff; font-size: 14px; gap: 8px; transition: opacity 0.3s ease; pointer-events: none; }
.map-cover span { background: rgba(0,0,0,0.4); padding: 6px 10px; border-radius: 12px; }
.map-cover.hidden { opacity: 0; }

@media (max-width: 991px) {
  .map-inline { display: block; min-height: 320px; }
  .map-mobile-btn { display: inline-flex; align-items: center; justify-content: center; }
  .map-overlay { background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.08) 45%, rgba(0,0,0,0) 100%); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUpSlow {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes revealStroke {
  from { clip-path: inset(0 100% 0 0); opacity: 0.35; }
  40% { opacity: 0.55; }
  to { clip-path: inset(0 0 0 0); opacity: 1; }
}
@keyframes sway {
  0% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
  100% { transform: translateY(0); }
}
@keyframes brandGlow {
  0% { filter: drop-shadow(0 0 0 rgba(230,120,140,0.0)); transform: translateY(0); }
  50% { filter: drop-shadow(0 4px 10px rgba(230,120,140,0.35)); transform: translateY(-1px); }
  100% { filter: drop-shadow(0 0 0 rgba(230,120,140,0.0)); transform: translateY(0); }
}
@keyframes brandFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
  100% { transform: translateY(0); }
}
@keyframes brandDraw {
  0% { clip-path: inset(0 100% 0 0); opacity: 0.6; }
  50% { opacity: 1; }
  100% { clip-path: inset(0 0 0 0); opacity: 1; }
}
@keyframes brandUnderline {
  0% { opacity: 0; transform: translateY(6px); }
  40% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(6px); }
}

/* Explorer (админка) */
.explorer-grid { display: flex; flex-direction: column; gap: 8px; min-height: 220px; background: #f8fafc; padding: 8px; border: 1px solid var(--border); border-radius: 12px; }
.explorer-tile { border: 1px solid var(--border); border-radius: 10px; padding: 12px; background: #fff; box-shadow: var(--shadow), inset 0 -1px 0 #e5e7eb; cursor: pointer; transition: transform .1s ease, box-shadow .1s ease; display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%; }
.explorer-left { display: flex; align-items: center; gap: 12px; }
.explorer-check { margin-right: 4px; }
.explorer-tile:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(15,23,42,0.08); }
.explorer-tile.selected { outline: 2px solid var(--accent); outline-offset: 2px; }
.explorer-icon { font-size: 24px; }
.explorer-name { font-weight: 600; flex: 1; }
.explorer-meta { color: var(--muted); font-size: 12px; text-align: right; min-width: 80px; display: flex; align-items: center; justify-content: flex-end; padding: 0 6px; }

/* Simple picker modal (admin) */
.picker-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.35); display: none; align-items: center; justify-content: center; z-index: 2000; }
.picker-overlay.active { display: flex; }
.picker-box { background: #fff; border-radius: 12px; padding: 16px; width: min(520px, 90vw); max-height: 70vh; overflow: auto; box-shadow: 0 10px 30px rgba(0,0,0,0.18); }
.picker-title { font-weight: 600; margin-bottom: 10px; }
.picker-list button { width: 100%; text-align: left; margin-bottom: 6px; font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif; }
