/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: 'Inter', 'Segoe UI', Arial, sans-serif; color: #333; background: #fff; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }
.section-title { text-align: center; margin-bottom: 2.5rem; }
.section-title h2 { color: #1a1a1a; }
.section-title p { color: #666; max-width: 600px; margin: 0.5rem auto 0; }

/* === COLORS === */
:root {
  --gold: #C17A24;
  --gold-dark: #9A5E18;
  --dark: #1a1a1a;
  --warm-bg: #F8F4EF;
  --border: #e8e0d5;
  --text-muted: #777;
  --radius: 8px;
}

/* === LAYOUT === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 60px 0; }
.section--dark { background: var(--dark); color: #fff; }
.section--dark .section-title p { color: rgba(255,255,255,0.75); }
.section--warm { background: var(--warm-bg); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }

/* === BUTTONS === */
.btn { display: inline-block; padding: 12px 28px; border-radius: var(--radius); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.5px; transition: all 0.2s; cursor: pointer; border: 2px solid transparent; }
.btn-primary { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: #fff; }
.btn-white { background: #fff; color: var(--dark); }
.btn-white:hover { background: var(--gold); color: #fff; }

/* === HEADER / NAV === */
.site-header { position: sticky; top: 0; z-index: 1000; background: #1a1a1a; border-bottom: 1px solid rgba(255,255,255,0.08); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 20px; }
.nav-logo { display: flex; align-items: center; gap: 10px; color: #fff; flex-shrink: 0; }
.nav-logo img { height: 36px; transition: transform 0.4s cubic-bezier(.34,1.56,.64,1), filter 0.4s ease; transform-origin: center; }
.nav-logo:hover img { transform: scale(1.12) rotate(-3deg); filter: drop-shadow(0 4px 14px rgba(193,122,36,0.6)); }
.nav-logo-text { font-family: 'Playfair Display', Georgia, serif; font-size: 1.2rem; color: #fff; line-height: 1.1; }
.nav-logo-text span { display: block; font-size: 0.65rem; font-family: 'Inter', sans-serif; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link { display: flex; align-items: center; gap: 4px; padding: 8px 12px; color: rgba(255,255,255,0.85); font-size: 0.85rem; font-weight: 500; border-radius: 6px; transition: transform 0.4s cubic-bezier(.34,1.56,.64,1), color 0.2s ease, background 0.2s ease, text-shadow 0.3s ease; white-space: nowrap; transform-origin: center; }
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(255,255,255,0.08); transform: scale(1.1); text-shadow: 0 2px 10px rgba(193,122,36,0.7); }
.nav-link svg { width: 12px; height: 12px; fill: currentColor; transition: transform 0.2s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }
.nav-dropdown { position: absolute; top: calc(100% + 4px); left: 0; min-width: 200px; background: #fff; border-radius: var(--radius); box-shadow: 0 8px 32px rgba(0,0,0,0.15); padding: 6px; opacity: 0; pointer-events: none; transform: translateY(-8px); transition: all 0.2s; z-index: 100; }
.nav-item:hover .nav-dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.nav-dropdown a { display: block; padding: 6px 12px; color: #555; font-size: 0.78rem; font-weight: 400; border-radius: 5px; transition: background 0.15s, color 0.15s, padding-left 0.15s; }
.nav-dropdown a:hover { background: var(--warm-bg); color: var(--gold); padding-left: 16px; }
.nav-contacts { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.nav-phone { color: #fff; font-weight: 600; font-size: 0.9rem; white-space: nowrap; }
.nav-phone:hover { color: var(--gold); }
.nav-address { color: rgba(255,255,255,0.5); font-size: 0.72rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 1024px) {
  .hamburger { display: flex; }
  .nav-contacts { display: none; }
  .nav-menu { display: none; position: fixed; top: 70px; left: 0; right: 0; height: calc(100vh - 70px); background: #1a1a1a; flex-direction: column; align-items: flex-start; padding: 20px; gap: 0; overflow-y: auto; z-index: 1001; }
  .nav-menu.open { display: flex; }
  .nav-item { width: 100%; }
  .nav-link { padding: 12px 16px; width: 100%; font-size: 1rem; }
  .nav-dropdown { position: static; opacity: 1; pointer-events: all; transform: none; box-shadow: none; background: rgba(255,255,255,0.05); border-radius: 0; display: none; padding: 0 0 0 16px; }
  .nav-dropdown.open { display: block; }
  .nav-dropdown a { color: rgba(255,255,255,0.7); padding: 10px 12px; font-size: 0.9rem; }
  .nav-dropdown a:hover { background: rgba(255,255,255,0.05); color: #fff; }
}

/* === HERO CINEMA === */
/* Картинки 16:9 со своим текстом — показываем целиком, без обрезки */
.hero-cinema { position: relative; width: 100%; aspect-ratio: 16 / 9; max-height: 78vh; margin: 0 auto; overflow: hidden; background: #1a1a1a; }

/* Slides */
.hc-slides { position: absolute; inset: 0; }
.hc-slide { position: absolute; inset: 0; background-size: contain; background-position: center; background-repeat: no-repeat; background-color: #1a1a1a; opacity: 0; transition: opacity 1.2s ease; }
.hc-slide.active { opacity: 1; animation: kenburns 8s ease-out forwards; }
.hc-video-slide { animation: none !important; transform: none !important; background: #1a1a1a; }
.hc-video-slide video { width: 100%; height: 100%; object-fit: contain; display: block; }

/* Оверлей над видео: логотип + надпись */
.hcv-overlay { position: absolute; inset: 0; z-index: 3; pointer-events: none; overflow: hidden; }
.hcv-logo { position: absolute; top: 42%; left: 50%; width: clamp(140px, 22vw, 300px); transform: translate(-50%, -50%) scale(0.4); opacity: 0; filter: drop-shadow(0 8px 30px rgba(0,0,0,0.5)); }
.hcv-caption {
  position: absolute; left: 50%; bottom: 9%; transform: translate(-50%, 80px);
  opacity: 0; text-align: center; white-space: nowrap;
  font-family: 'Playfair Display', Georgia, serif; font-weight: 700;
  font-size: clamp(1.5rem, 4.5vw, 3.4rem); color: #fff; line-height: 1.15;
  text-shadow: 0 4px 24px rgba(0,0,0,0.7); padding: 0 16px;
}

/* Анимации запускаются, когда видео-слайд активен (длительность = длине слайда 9с) */
.hc-video-slide.active .hcv-logo { animation: hcvLogo 9s ease-in-out forwards; }
.hc-video-slide.active .hcv-caption { animation: hcvCaption 9s ease-out forwards; }

@keyframes hcvLogo {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.4); }
  9%   { opacity: 1; transform: translate(-50%, -50%) scale(1.0); }
  22%  { opacity: 1; transform: translate(-50%, -50%) scale(1.12); }
  30%  { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
  40%  { opacity: 0; transform: translate(-50%, -50%) scale(1.75); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.75); }
}
@keyframes hcvCaption {
  0%   { opacity: 0; transform: translate(-50%, 80px); }
  36%  { opacity: 0; transform: translate(-50%, 80px); }
  50%  { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 1; transform: translate(-50%, 0); }
}
@keyframes kenburns {
  0%   { transform: scale(1.04); }
  100% { transform: scale(1.0); }
}

/* Arrows */
.hc-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 4; background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.3); color: #fff; font-size: 2rem; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; backdrop-filter: blur(4px); line-height: 1; }
.hc-arrow:hover { background: var(--gold); border-color: var(--gold); }
.hc-prev { left: 20px; }
.hc-next { right: 20px; }

/* Dots */
.hc-dots { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 4; }
.hc-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.5); border: none; cursor: pointer; transition: all 0.3s; padding: 0; box-shadow: 0 1px 4px rgba(0,0,0,0.4); }
.hc-dot.active { background: var(--gold); width: 28px; border-radius: 4px; }

/* Progress bar */
.hc-progress { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: rgba(255,255,255,0.15); z-index: 4; }
.hc-progress-bar { height: 100%; width: 0%; background: var(--gold); transition: width linear; }

/* Кнопки под слайдером */
.hc-actions-bar { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; padding: 28px 20px; background: var(--warm-bg); }

@media (max-width: 768px) {
  .hc-arrow { width: 38px; height: 38px; font-size: 1.5rem; }
  .hc-prev { left: 8px; } .hc-next { right: 8px; }
}

/* === HERO (old, kept for other pages) === */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s; background-size: cover; background-position: center; }
.hero-slide.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.3) 100%); }
.hero-content { position: relative; z-index: 2; color: #fff; max-width: 700px; }
.hero-tag { display: inline-block; background: var(--gold); color: #fff; font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; border-radius: 4px; margin-bottom: 20px; }
.hero h1 { margin-bottom: 20px; text-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.hero-subtitle { font-size: 1.1rem; opacity: 0.9; margin-bottom: 32px; max-width: 500px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 2; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.2s; border: none; }
.hero-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* === PAGE BANNER === */
.page-banner { position: relative; height: 280px; display: flex; align-items: center; overflow: hidden; }
.page-banner-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-banner-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.3)); }
.page-banner-content { position: relative; z-index: 2; color: #fff; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 10px; }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.55); }
.page-banner h1 { font-size: clamp(1.8rem, 4vw, 3rem); }

/* === CARDS === */
.card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.08); transition: transform 0.2s, box-shadow 0.2s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.card-img { aspect-ratio: 4/3; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 20px; }
.card-price { font-size: 1.1rem; font-weight: 700; color: var(--gold); margin-bottom: 6px; }
.card-title { font-size: 1.1rem; margin-bottom: 8px; }
.card-desc { font-size: 0.88rem; color: #666; margin-bottom: 14px; }
.card-tag { display: inline-block; background: var(--warm-bg); color: var(--gold); font-size: 0.75rem; font-weight: 600; padding: 3px 10px; border-radius: 20px; margin-bottom: 10px; }

/* === AMENITIES LIST === */
.amenities { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin: 24px 0; }
.amenity-block { background: var(--warm-bg); border-radius: var(--radius); padding: 20px; }
.amenity-block h4 { color: var(--gold); margin-bottom: 10px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.amenity-block ul { padding: 0; }
.amenity-block li { font-size: 0.88rem; padding: 4px 0; color: #444; display: flex; align-items: flex-start; gap: 8px; }
.amenity-block li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* === PRICE TABLE === */
.price-table { background: var(--dark); color: #fff; border-radius: var(--radius); overflow: hidden; }
.price-table-header { background: var(--gold); padding: 16px 24px; }
.price-table-header h3,
.room-info-card .price-table-header h3 { color: #000; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 24px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.price-row:last-child { border-bottom: none; }
.price-row .label { font-size: 0.9rem; color: rgba(255,255,255,0.9); }
.price-row .value { font-weight: 700; color: var(--gold); font-size: 1.1rem; }
.price-note { padding: 12px 24px; font-size: 0.8rem; color: rgba(255,255,255,0.65); font-style: italic; }

/* === CHAN VIDEO === */
.chan-video-section { position: relative; width: 100%; aspect-ratio: 16 / 9; max-height: 78vh; margin: 0 auto; overflow: hidden; background: #1a1a1a; display: flex; justify-content: center; align-items: center; }
.chan-video { width: 100%; height: 100%; object-fit: contain; display: block; }
.chan-video-top { position: absolute; top: 0; left: 0; right: 0; z-index: 2; padding: 24px 0 60px; background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent); color: #fff; }
.chan-video-top h1 { font-size: clamp(1.8rem, 4vw, 3rem); margin-top: 6px; text-shadow: 0 2px 12px rgba(0,0,0,0.5); }
.chan-video-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px 20px 24px; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent); text-align: center; z-index: 2; }
.chan-video-caption p { margin: 0; color: #fff; font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.3rem, 3vw, 2.2rem); text-shadow: 0 2px 12px rgba(0,0,0,0.5); }

/* === GALLERY === */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 12px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.gallery-item:hover img { transform: scale(1.05); }

/* === LIGHTBOX === */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 9000; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: 4px; }
.lightbox-close { position: absolute; top: 20px; right: 24px; color: #fff; font-size: 2rem; cursor: pointer; background: none; border: none; line-height: 1; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); color: #fff; font-size: 2rem; cursor: pointer; background: rgba(255,255,255,0.1); border: none; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* === FEATURES / INFO BLOCKS === */
.info-block { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.info-block.reverse { direction: rtl; }
.info-block.reverse > * { direction: ltr; }
.info-text h2 { margin-bottom: 16px; }
.info-text p { color: #555; margin-bottom: 16px; }
.info-img { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; }
.info-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 768px) { .info-block, .info-block.reverse { grid-template-columns: 1fr; direction: ltr; } }

/* === DISCOUNTS === */
.discount-card { background: var(--warm-bg); border-radius: var(--radius); padding: 28px; border-left: 4px solid var(--gold); overflow: hidden; }
.discount-card.has-img { padding: 0; display: flex; flex-direction: column; }
.discount-card-img { width: 100%; aspect-ratio: 491 / 274; object-fit: cover; display: block; }
.discount-card-body { padding: 22px 26px; }
.discount-badge { display: inline-block; background: var(--gold); color: #fff; font-weight: 700; font-size: 1.4rem; padding: 6px 16px; border-radius: 6px; margin-bottom: 12px; }
.discount-card h3 { margin-bottom: 8px; font-size: 1.1rem; color: #1a1a1a; }
.discount-card p { font-size: 0.88rem; color: #555; margin: 0; }

/* === TESTIMONIALS === */
.testimonials { padding: 60px 0; background: var(--warm-bg); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.testimonial { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.testimonial-text { font-size: 0.9rem; color: #444; line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testimonial-author { font-weight: 600; font-size: 0.88rem; color: var(--dark); }
.testimonial-date { font-size: 0.78rem; color: var(--text-muted); }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 8px; }

/* === CONTACT SECTION === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { width: 44px; height: 44px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fff; font-size: 1.1rem; }
.contact-item h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 4px; font-family: 'Inter', sans-serif; }
.contact-item a, .contact-item p { font-weight: 500; color: #333; }
.contact-item a:hover { color: var(--gold); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: #555; }
.form-group input, .form-group textarea, .form-group select { border: 1.5px solid var(--border); border-radius: var(--radius); padding: 10px 14px; font-size: 0.9rem; font-family: inherit; transition: border-color 0.2s; background: #fff; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-success { display: none; background: #d4edda; color: #155724; padding: 12px 16px; border-radius: var(--radius); font-size: 0.9rem; }

/* === SOCIAL LINKS === */
.social-links { display: flex; gap: 12px; }
.social-link { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.1); color: #fff; font-size: 1rem; transition: background 0.2s; }
.social-link:hover { background: var(--gold); }
.social-link svg { width: 18px; height: 18px; fill: currentColor; }

/* === CTA STRIP === */
.cta-strip { background: var(--gold); padding: 40px 0; text-align: center; }
.cta-strip h2 { color: #fff; margin-bottom: 8px; }
.cta-strip p { color: rgba(255,255,255,0.85); margin-bottom: 24px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === NOTES / WARNINGS === */
.notice { background: #fff8e1; border: 1px solid #ffe082; border-radius: var(--radius); padding: 16px 20px; font-size: 0.88rem; color: #555; margin: 16px 0; }
.notice strong { color: #b8860b; }
.notes-list { padding: 0; list-style: none; }
.notes-list li { padding: 6px 0; font-size: 0.88rem; color: #555; border-bottom: 1px solid var(--border); padding-left: 20px; position: relative; }
.notes-list li::before { content: attr(data-n); position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* === FOOTER === */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 50px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
.footer-brand { max-width: 300px; }
.footer-brand p { font-size: 0.88rem; margin-top: 12px; line-height: 1.7; }
.footer-col h4 { color: #fff; font-family: 'Inter', sans-serif; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 0.88rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; gap: 12px; }
.footer-bottom p { font-size: 0.8rem; }
.footer-legal { font-size: 0.78rem; color: rgba(255,255,255,0.6); }

/* === ROOM DETAIL === */
.room-detail { display: grid; grid-template-columns: 3fr 2fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .room-detail { grid-template-columns: 1fr; } }
.room-gallery-main { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.room-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.room-gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 8px; }
.room-thumb { border-radius: 6px; overflow: hidden; aspect-ratio: 1; cursor: pointer; opacity: 0.7; transition: opacity 0.2s; border: 2px solid transparent; }
.room-thumb.active, .room-thumb:hover { opacity: 1; border-color: var(--gold); }
.room-thumb img { width: 100%; height: 100%; object-fit: cover; }
.room-info-card { background: var(--dark); color: #fff; border-radius: 12px; padding: 28px; position: sticky; top: 90px; }
.room-info-card h3 { color: var(--gold); margin-bottom: 20px; }
.book-actions { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.book-actions .btn { text-align: center; display: block; width: 100%; }

/* === PROGRAM CARDS === */
.program-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.program-card h3 { color: var(--gold); margin-bottom: 12px; }
.program-steps { padding: 0; display: flex; flex-direction: column; gap: 8px; margin: 12px 0; }
.program-steps li { font-size: 0.88rem; color: #444; padding-left: 20px; position: relative; }
.program-steps li::before { content: '•'; position: absolute; left: 6px; color: var(--gold); }
.program-price-row { display: flex; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 12px; margin-top: 12px; }
.program-price-row span { font-weight: 700; color: var(--gold); }

/* === UTILITIES === */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 40px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
