:root {
  --red: #ef1b24;
  --red-dark: #bd1118;
  --yellow: #f6c62f;
  --green: #a9d52c;
  --charcoal: #22272b;
  --ink: #2d3033;
  --muted: #6b7075;
  --cream: #f7f4ee;
  --white: #fff;
  --line: #e5e2dc;
  --shadow: 0 18px 45px rgba(27, 31, 35, .12);
  --radius: 22px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--charcoal); line-height: 1.1; letter-spacing: -.025em; }
h1 { font-size: clamp(2.65rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); }
h3 { font-size: 1.3rem; }
.container { width: var(--container); margin-inline: auto; }
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link { position: fixed; z-index: 9999; top: 12px; left: 12px; padding: 10px 16px; background: var(--white); transform: translateY(-150%); }
.skip-link:focus { transform: none; }

.topbar { color: var(--white); background: var(--charcoal); font-size: .78rem; letter-spacing: .02em; }
.topbar-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-header { position: sticky; z-index: 1000; top: 0; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(34,39,43,.08); transition: box-shadow .2s ease; backdrop-filter: blur(12px); }
.site-header.is-scrolled { box-shadow: 0 8px 28px rgba(22, 28, 32, .1); }
.header-inner { min-height: 90px; display: flex; align-items: center; gap: 30px; }
.brand { flex: 0 0 auto; }
.brand img { width: 104px; height: auto; }
.primary-navigation { margin-left: auto; }
.menu { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 34px); padding: 0; margin: 0; list-style: none; }
.menu a { position: relative; display: block; padding: 31px 0; color: var(--charcoal); font-size: .9rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.menu a::after { content: ""; position: absolute; right: 0; bottom: 24px; left: 0; height: 3px; background: var(--red); transform: scaleX(0); transition: transform .2s ease; }
.menu a:hover::after, .menu .current-menu-item > a::after { transform: scaleX(1); }
.header-cta, .button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 12px 22px; border: 2px solid transparent; border-radius: 999px; font-size: .9rem; font-weight: 800; line-height: 1.15; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.header-cta { color: var(--white); background: var(--red); white-space: nowrap; }
.button:hover, .header-cta:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--red); }
.button-primary:hover { background: var(--red-dark); }
.button-light { color: var(--charcoal); background: var(--white); }
.button-outline { color: var(--charcoal); border-color: currentColor; background: transparent; }
.nav-toggle { display: none; width: 48px; height: 48px; padding: 11px; border: 0; background: transparent; }
.nav-toggle > span:not(.screen-reader-text) { display: block; height: 2px; margin: 5px 0; background: var(--charcoal); }

.hero { position: relative; min-height: 690px; display: grid; align-items: center; overflow: hidden; color: var(--white); background: #30363a; }
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide { display: grid; align-items: center; opacity: 0; visibility: hidden; transition: opacity .9s ease, visibility .9s ease; }
.hero-slide.is-active { z-index: 1; opacity: 1; visibility: visible; }
.hero-slide-image { position: absolute; inset: -2%; width: 104%; max-width: none; height: 104%; object-fit: cover; transform: scale(1.02); transform-origin: center center; }
.hero-slide:nth-child(2) .hero-slide-image { transform-origin: center right; }
.hero-slide:nth-child(3) .hero-slide-image { transform-origin: center left; }
.hero-slide.is-active .hero-slide-image { animation: hero-kenburns 7.4s ease-out both; }
@keyframes hero-kenburns { from { transform: scale(1.02); } to { transform: scale(1.14) translate3d(-1%, -.5%, 0); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(18,22,24,.89) 0%, rgba(18,22,24,.54) 53%, rgba(18,22,24,.18) 100%); }
.hero-content { position: relative; z-index: 1; padding-block: 120px 180px; }
.hero h1, .hero h2 { max-width: 840px; margin-bottom: 24px; color: var(--white); font-size: clamp(2.65rem, 6vw, 5.5rem); }
.hero-slide .hero-content > * { opacity: 0; transform: translateY(24px); }
.hero-slide.is-active .hero-content > * { animation: hero-content-in .72s ease forwards; }
.hero-slide.is-active .hero-content > :nth-child(2) { animation-delay: .1s; }
.hero-slide.is-active .hero-content > :nth-child(3) { animation-delay: .18s; }
.hero-slide.is-active .hero-content > :nth-child(4) { animation-delay: .26s; }
@keyframes hero-content-in { to { opacity: 1; transform: none; } }
.hero-content > p { max-width: 650px; margin-bottom: 34px; font-size: clamp(1.1rem, 2.2vw, 1.4rem); }
.eyebrow { display: inline-block; margin-bottom: 15px; color: var(--red); font-size: .78rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.hero .eyebrow, .parking-intro .eyebrow, .section-heading-light .eyebrow { color: var(--yellow); }
.hero-actions, .visit-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-carousel-controls { position: absolute; z-index: 4; right: 0; bottom: 132px; left: 0; display: flex; align-items: center; justify-content: flex-end; gap: 9px; pointer-events: none; }
.hero-carousel-controls button { pointer-events: auto; }
.carousel-arrow, .carousel-toggle { width: 43px; height: 43px; display: grid; place-items: center; padding: 0; color: var(--white); border: 1px solid rgba(255,255,255,.48); border-radius: 50%; background: rgba(19,23,25,.48); cursor: pointer; backdrop-filter: blur(8px); transition: background .2s ease, transform .2s ease; }
.carousel-arrow:hover, .carousel-toggle:hover { background: var(--red); transform: translateY(-2px); }
.carousel-dots { display: flex; align-items: center; gap: 8px; padding: 10px 12px; border-radius: 999px; background: rgba(19,23,25,.48); backdrop-filter: blur(8px); pointer-events: auto; }
.carousel-dot { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.48); cursor: pointer; transition: width .2s ease, background .2s ease; }
.carousel-dot.is-active { width: 27px; border-radius: 999px; background: var(--yellow); }
.hero-facts { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: repeat(4, 1fr); background: rgba(255,255,255,.96); border-radius: var(--radius) var(--radius) 0 0; box-shadow: var(--shadow); }
.hero-facts div { padding: 24px 26px; border-right: 1px solid var(--line); }
.hero-facts div:last-child { border: 0; }
.hero-facts strong, .hero-facts span { display: block; }
.hero-facts strong { color: var(--charcoal); font-size: 1rem; }
.hero-facts span { color: var(--muted); font-size: .82rem; }

.notice-strip { background: var(--yellow); }
.notice-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.notice-card { display: flex; gap: 14px; align-items: flex-start; padding: 22px 28px; }
.notice-card + .notice-card { border-left: 1px solid rgba(34,39,43,.2); }
.notice-card > span { color: var(--red); }
.notice-card h2 { margin: 0 0 2px; font-size: 1rem; }
.notice-card p { margin: 0; font-size: .9rem; }

.section { padding-block: 100px; }
.section-heading { max-width: 740px; margin-bottom: 46px; }
.section-heading h2 { margin-bottom: 14px; }
.section-heading p { color: var(--muted); font-size: 1.08rem; }
.section-heading-light h2, .section-heading-light p { color: var(--white); }
.heading-row { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.heading-row h2 { margin-bottom: 0; }
.text-link, .service-card a, .source-note a { color: var(--red); font-weight: 800; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card { position: relative; min-height: 270px; padding: 28px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 12px 28px rgba(34,39,43,.06); transition: transform .2s ease, box-shadow .2s ease; }
.feature-card::before { content: ""; position: absolute; width: 100px; height: 100px; right: -38px; bottom: -38px; border-radius: 50%; background: var(--yellow); opacity: .25; }
.feature-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.feature-icon { display: grid; width: 54px; height: 54px; place-items: center; margin-bottom: 28px; color: var(--white); background: var(--red); border-radius: 18px; font-size: 1.45rem; }
.feature-card h3 { margin-bottom: 12px; }
.feature-card p { min-height: 56px; color: var(--muted); font-size: .95rem; }
.feature-card strong { color: var(--red); font-size: .88rem; }

.cinema-section { color: var(--white); background: var(--charcoal); }
.movie-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.movie-card { overflow: hidden; color: var(--ink); background: var(--white); border-radius: 18px; box-shadow: 0 15px 35px rgba(0,0,0,.2); }
.movie-poster { aspect-ratio: 2/3; display: grid; place-items: center; overflow: hidden; color: var(--red); background: #e9e9e7; font-size: 3rem; }
.movie-poster img { width: 100%; height: 100%; object-fit: cover; }
.movie-body { padding: 21px; }
.movie-body h3 { min-height: 2.2em; margin-bottom: 6px; font-size: 1.2rem; }
.movie-meta { color: var(--muted); font-size: .8rem; }
.movie-format { padding-top: 13px; margin-top: 13px; border-top: 1px solid var(--line); font-size: .8rem; }
.movie-times { display: grid; grid-template-columns: 75px 1fr; gap: 7px; padding-top: 6px; color: var(--muted); }
.movie-times span:last-child { color: var(--charcoal); font-weight: 700; }
.cinema-footer { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 34px; }
.cinema-footer p { max-width: 670px; margin: 0; color: #cfd2d3; font-size: .86rem; }
.cinema-section .button-outline { color: var(--white); }

.brands-preview { background: var(--cream); }
.brand-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.brand-card { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: 0 8px 25px rgba(34,39,43,.05); transition: transform .2s ease, box-shadow .2s ease; }
.brand-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.brand-image { aspect-ratio: 4/3; display: grid; place-items: center; padding: 20px; background: #fafafa; }
.brand-image img { width: 100%; height: 100%; object-fit: contain; }
.brand-image > span { display: grid; width: 78px; height: 78px; place-items: center; color: var(--white); background: var(--red); border-radius: 50%; font-size: 2.5rem; font-weight: 900; }
.brand-body { padding: 18px 20px 21px; border-top: 1px solid var(--line); }
.brand-body h2, .brand-body h3 { margin-bottom: 5px; font-size: 1.05rem; }
.brand-body p, .brand-body small { margin: 0; color: var(--muted); font-size: .85rem; }

.parking-section { position: relative; color: var(--white); background: var(--charcoal) var(--parking-image) center/cover no-repeat; }
.parking-section::before { content: ""; position: absolute; inset: 0; background: rgba(20,24,27,.85); }
.parking-grid { position: relative; display: grid; grid-template-columns: 1.2fr 1fr 1fr; align-items: stretch; gap: 22px; }
.parking-intro { padding-right: 30px; }
.parking-intro h2 { color: var(--white); }
.rate-card { padding: 28px; color: var(--ink); background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.rate-card h3 { padding-bottom: 15px; margin-bottom: 10px; border-bottom: 4px solid var(--yellow); }
.rate-card dl, .contact-panel dl, .brand-detail dl { margin: 0; }
.rate-card dl > div { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.rate-card dl > div:last-child { border: 0; }
.rate-card dt { color: var(--muted); }
.rate-card dd { margin: 0; font-weight: 900; text-align: right; }

.visit-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 70px; }
.visit-grid h2 { margin-bottom: 18px; }
.visit-grid p { margin-bottom: 28px; color: var(--muted); font-size: 1.15rem; }
.visit-image { overflow: hidden; border-radius: 28px; box-shadow: var(--shadow); }
.visit-image img { width: 100%; min-height: 430px; object-fit: cover; }

.page-hero { padding-block: 90px; color: var(--white); background: linear-gradient(120deg, var(--charcoal) 0%, #343c40 100%); }
.page-hero h1 { margin-bottom: 16px; color: var(--white); font-size: clamp(2.8rem, 6vw, 5rem); }
.page-hero p { max-width: 780px; margin: 0; color: #dfe1e2; font-size: 1.15rem; }
.page-hero-brands { background: #252a2e; }
.visual-page-hero { position: relative; min-height: clamp(460px, 68vh, 650px); display: grid; align-items: center; overflow: hidden; padding-block: 70px; }
.page-hero-image { position: absolute; inset: -3%; width: 106%; max-width: none; height: 106%; object-fit: cover; transform-origin: center left; animation: page-hero-kenburns 16s ease-in-out infinite alternate; }
@keyframes page-hero-kenburns { from { transform: scale(1.01); } to { transform: scale(1.13) translate3d(-1.5%, -.5%, 0); } }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(19,23,25,.82) 0%, rgba(19,23,25,.44) 58%, rgba(19,23,25,.14) 100%); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero-card { max-width: 680px; padding: clamp(27px, 5vw, 52px); border: 1px solid rgba(255,255,255,.28); border-radius: 26px; background: rgba(24,28,31,.55); box-shadow: 0 22px 60px rgba(0,0,0,.22); backdrop-filter: blur(10px); animation: hero-content-in .8s .12s ease both; }
.page-hero-card h1 { font-size: clamp(2.7rem, 6vw, 5rem); }
.directory-tools { display: grid; gap: 22px; padding: 25px; margin: -32px 0 44px; position: relative; z-index: 3; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.96); box-shadow: var(--shadow); }
.directory-tools input { width: min(620px, 100%); min-height: 58px; padding: 14px 20px; border: 1px solid #c9c8c5; border-radius: 999px; outline: 0; }
.directory-tools input:focus { border-color: var(--red); box-shadow: 0 0 0 4px rgba(239,27,36,.12); }
.category-filters { display: flex; flex-wrap: wrap; gap: 9px; }
.category-filters button { padding: 9px 16px; color: var(--charcoal); background: var(--cream); border: 1px solid var(--line); border-radius: 999px; cursor: pointer; }
.category-filters button:hover, .category-filters button.is-active { color: var(--white); background: var(--red); border-color: var(--red); }
.directory-card[hidden] { display: none; }
.has-reveal-effects .reveal-card { opacity: 0; transform: translateY(42px) scale(.985); transition: opacity .72s ease, transform .72s cubic-bezier(.2,.7,.2,1), box-shadow .2s ease; transition-delay: var(--reveal-delay, 0ms); }
.has-reveal-effects .reveal-card.is-visible { opacity: 1; transform: none; }
.directory-grid .brand-image { overflow: hidden; }
.directory-grid .brand-image img { transition: transform .5s ease; }
.directory-grid .brand-card:hover .brand-image img { transform: scale(1.06); }
.directory-empty, .ccbima-empty-state { padding: 40px; text-align: center; border: 1px dashed #b9b8b4; border-radius: var(--radius); background: rgba(255,255,255,.05); }
.cinema-section .ccbima-empty-state { border-color: #687075; }
.directory-empty { color: var(--muted); }

.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream); }
.service-card > span { font-size: 2.15rem; }
.service-card h2 { margin: 18px 0 10px; font-size: 1.35rem; }
.service-card p { color: var(--muted); font-size: .95rem; }
.parking-detail { background: var(--cream); }
.rates-wide { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.rates-wide .rate-card { border: 1px solid var(--line); box-shadow: none; }
.source-note { margin-top: 25px; color: var(--muted); font-size: .86rem; }

.event-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.event-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 10px 30px rgba(34,39,43,.06); }
.event-card > img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.event-card > div { padding: 25px; }
.event-date { color: var(--red); font-size: .8rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.event-card h2 { font-size: 1.4rem; }

.facturas-grid, .contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.factura-card, .contact-panel { padding: clamp(28px, 5vw, 50px); border-radius: var(--radius); background: var(--cream); }
.factura-card h2, .contact-panel h2 { font-size: 1.65rem; }
.contact-panel dl > div, .brand-detail dl > div { padding: 12px 0; border-bottom: 1px solid var(--line); }
.contact-panel dt, .brand-detail dt { color: var(--muted); font-size: .8rem; font-weight: 800; text-transform: uppercase; }
.contact-panel dd, .brand-detail dd { margin: 3px 0 0; font-weight: 700; }
.contact-panel .button { margin-top: 28px; }
.map-frame { min-height: 520px; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.map-frame iframe { width: 100%; height: 100%; min-height: 520px; border: 0; }
.brand-detail { display: grid; grid-template-columns: minmax(300px, .8fr) 1.2fr; align-items: start; gap: 70px; }
.brand-detail-image { min-height: 390px; display: grid; place-items: center; padding: 35px; border: 1px solid var(--line); border-radius: var(--radius); background: #fafafa; }
.brand-detail-image img { max-height: 360px; object-fit: contain; }
.brand-detail .button { margin-top: 28px; }

.legacy-services-hero { position: relative; min-height: clamp(540px, 72vh, 720px); display: grid; align-items: center; overflow: hidden; }
.legacy-services-image { position: absolute; inset: -2%; width: 104%; max-width: none; height: 104%; object-fit: cover; animation: page-hero-kenburns 18s ease-in-out infinite alternate; }
.legacy-services-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(25,29,31,.08) 30%, rgba(25,29,31,.54) 100%); }
.legacy-services-layout { position: relative; z-index: 2; display: flex; justify-content: flex-end; padding-block: 70px; }
.legacy-services-panel { width: min(600px, 100%); padding: clamp(30px, 5vw, 58px); color: var(--ink); border: 1px solid rgba(255,255,255,.72); border-radius: 26px; background: rgba(255,255,255,.88); box-shadow: 0 24px 65px rgba(18,22,24,.24); backdrop-filter: blur(12px); }
.legacy-services-panel h1 { margin-bottom: 24px; font-size: clamp(2.7rem, 5vw, 4.7rem); }
.legacy-services-panel ul { display: grid; gap: 7px; padding: 20px 0 20px 25px; margin: 0 0 25px; border-top: 1px solid var(--line); color: var(--charcoal); font-size: 1.08rem; font-weight: 700; }
.legacy-services-section { background: var(--cream); }
.legacy-service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.legacy-service-card { position: relative; min-height: 310px; padding: clamp(28px, 4vw, 42px); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 12px 30px rgba(34,39,43,.06); }
.legacy-service-card::after { content: ""; position: absolute; right: -45px; bottom: -45px; width: 130px; height: 130px; border-radius: 50%; background: var(--yellow); opacity: .2; }
.legacy-service-card:nth-child(2)::after { background: var(--red); }
.legacy-service-card:nth-child(3)::after { background: var(--green); }
.legacy-service-number { display: inline-block; margin-bottom: 25px; color: var(--red); font-size: .8rem; font-weight: 900; letter-spacing: .16em; }
.legacy-service-card h3 { font-size: 1.55rem; }
.legacy-service-card p { max-width: 580px; color: var(--muted); }
.legacy-service-card strong { display: block; margin: 20px 0 5px; }
.legacy-service-card a { position: relative; z-index: 1; color: var(--red); font-weight: 800; }
.services-about-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: clamp(38px, 7vw, 82px); }
.services-about-grid > div > p { color: var(--muted); font-size: 1.08rem; }
.services-video { margin: 0; }
.services-video video { display: block; width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 24px; background: #111; box-shadow: var(--shadow); }
.services-video figcaption { margin-top: 10px; color: var(--muted); font-size: .8rem; text-align: center; }
.event-services { color: var(--white); background: var(--charcoal); }
.event-services .section-heading h2, .event-services .section-heading p { color: var(--white); }
.event-services .eyebrow { color: var(--yellow); }
.event-service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.event-service-card { overflow: hidden; color: var(--ink); border-radius: var(--radius); background: var(--white); box-shadow: 0 17px 38px rgba(0,0,0,.22); }
.event-service-card > img { width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform .55s ease; }
.event-service-card:hover > img { transform: scale(1.05); }
.event-service-card > div { padding: 25px; }
.event-service-card span { color: var(--red); font-size: .78rem; font-weight: 900; letter-spacing: .14em; }
.event-service-card h3 { margin: 10px 0; font-size: 1.35rem; }
.event-service-card p { color: var(--muted); font-size: .92rem; }
.event-service-card a { color: var(--red); font-size: .86rem; font-weight: 800; }
.brand-events { background: linear-gradient(120deg, #fff8df, var(--cream)); }
.brand-events-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: start; gap: clamp(38px, 7vw, 80px); }
.brand-events-copy > p { color: var(--muted); font-size: 1.08rem; }
.brand-events-copy dl { margin: 28px 0; }
.brand-events-copy dl > div { display: grid; grid-template-columns: 150px 1fr; gap: 18px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.brand-events-copy dt { color: var(--muted); font-size: .8rem; font-weight: 800; text-transform: uppercase; }
.brand-events-copy dd { margin: 0; font-weight: 700; overflow-wrap: anywhere; }
.event-benefits { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px; }
.event-benefits article { min-height: 205px; padding: 27px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: 0 10px 25px rgba(34,39,43,.05); }
.event-benefits span { display: block; margin-bottom: 24px; color: var(--red); font-size: 1.45rem; font-weight: 900; }
.event-benefits h3 { margin-bottom: 8px; }
.event-benefits p { margin: 0; color: var(--muted); font-size: .88rem; }
.services-mosaic-section { background: var(--white); }
.services-mosaic { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; overflow: hidden; border-radius: 25px; background: var(--cream); box-shadow: var(--shadow); }
.services-mosaic > a, .services-mosaic-logo { position: relative; min-height: 260px; overflow: hidden; background: var(--white); }
.services-mosaic > a img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .5s ease; }
.services-mosaic > a:hover img { transform: scale(1.06); filter: brightness(.82); }
.services-mosaic > a > span { position: absolute; right: 0; bottom: 22px; max-width: 82%; padding: 11px 22px; color: var(--white); background: #2fcddd; font-weight: 900; text-align: right; }
.services-mosaic-logo { display: grid; place-items: center; padding: 55px; }
.services-mosaic-logo img { max-width: 210px; max-height: 160px; object-fit: contain; }
.services-mosaic .mosaic-wide { grid-column: 1 / -1; min-height: 300px; }
.services-mosaic .mosaic-wide img { object-position: center 42%; }
.mosaic-action { margin: 34px 0 0; text-align: center; }
.mass-section { background: var(--cream); }
.mass-grid { display: grid; grid-template-columns: 1.12fr .88fr; align-items: center; gap: clamp(38px, 7vw, 80px); }
.mass-image { overflow: hidden; border-radius: 26px; box-shadow: var(--shadow); }
.mass-image img { width: 100%; min-height: 440px; object-fit: cover; }
.mass-grid > div:last-child > p { color: var(--muted); font-size: 1.05rem; }
.administrative-services { background: var(--white); }
.administrative-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 24px; }
.cashpoint-panel, .dian-panel { padding: clamp(28px, 5vw, 45px); border-radius: var(--radius); }
.cashpoint-panel { border: 1px solid var(--line); background: var(--cream); }
.cashpoint-panel > h3 { margin-bottom: 25px; font-size: 1.5rem; }
.bank-logo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.bank-logo-grid img { width: 100%; aspect-ratio: 1/1; padding: 12px; object-fit: contain; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.dian-panel { color: var(--white); background: var(--charcoal); }
.dian-panel > span { display: inline-block; margin-bottom: 25px; padding: 7px 12px; color: var(--white); background: var(--red); border-radius: 8px; font-weight: 900; }
.dian-panel h3 { color: var(--white); }
.dian-panel p { color: #d7dadb; }
.dian-panel .source-note { color: #aeb4b7; }
.page-hero-events .page-hero-image { object-position: center 58%; }
.page-hero-contact .page-hero-image { object-position: center 48%; }
.services-contact-strip { padding-block: 54px; color: var(--white); background: var(--red); }
.services-contact-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.services-contact-strip .eyebrow { color: var(--yellow); }
.services-contact-strip h2 { margin: 0; color: var(--white); font-size: clamp(1.8rem, 4vw, 3rem); }
.services-contact-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.services-contact-strip .button-outline { color: var(--white); }

.global-parking { color: var(--white); background: var(--charcoal); }
.global-parking-main { position: relative; padding-block: 68px; overflow: hidden; background: #171b1e var(--global-parking-image) center/cover no-repeat; }
.global-parking-main::before { content: ""; position: absolute; inset: 0; background: rgba(18,22,24,.84); }
.global-parking-main > .container { position: relative; }
.global-parking-heading { margin-bottom: 34px; text-align: center; }
.global-parking-heading .eyebrow { color: var(--yellow); }
.global-parking-heading h2 { margin: 0; color: var(--white); font-size: clamp(1.9rem, 4vw, 3rem); }
.global-rate-grid { display: grid; grid-template-columns: 1fr .72fr 1fr; gap: 22px; align-items: stretch; }
.global-rate-column, .global-hours { padding: 26px; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; background: rgba(21,25,27,.56); backdrop-filter: blur(6px); }
.global-rate-column h3, .global-hours h3 { margin-bottom: 18px; color: var(--white); font-size: 1rem; letter-spacing: .08em; text-align: center; text-transform: uppercase; }
.global-rate-column dl { margin: 0; }
.global-rate-column dl > div { display: grid; grid-template-columns: 1fr auto; gap: 15px; padding: 10px 0; border-bottom: 1px dotted rgba(255,255,255,.48); }
.global-rate-column dl > div:last-child { border: 0; }
.global-rate-column dt { color: var(--yellow); }
.global-rate-column dd { margin: 0; color: var(--white); font-weight: 900; text-align: right; }
.global-rate-column .bicycle-rate dt, .global-rate-column .bicycle-rate dd { color: #77a6ff; }
.global-hours { display: flex; flex-direction: column; justify-content: center; text-align: center; }
.global-hours p { margin: 8px 0 18px; }
.global-hours span, .global-hours strong { display: block; }
.global-hours span { color: var(--yellow); font-size: .9rem; }
.global-hours strong { margin-top: 3px; font-size: 1.15rem; }
.global-parking-legal { padding-block: 34px; color: var(--charcoal); background: var(--yellow); }
.global-parking-legal-grid { display: grid; grid-template-columns: .85fr 1fr 1.15fr; gap: 36px; align-items: center; }
.global-parking-legal strong { display: block; margin-bottom: 5px; font-size: 1rem; text-transform: uppercase; }
.global-parking-legal p { margin: 0; font-size: .88rem; }
.global-policy-links { display: grid; gap: 7px; }
.global-policy-links a { padding: 8px 14px; color: var(--white); background: #477eea; border-radius: 7px; font-size: .84rem; font-weight: 800; text-align: center; transition: background .2s ease, transform .2s ease; }
.global-policy-links a:hover { background: var(--charcoal); transform: translateY(-1px); }

.floating-actions { position: fixed; z-index: 900; top: 35%; right: 0; display: flex; flex-direction: column; overflow: visible; border-radius: 17px 0 0 17px; box-shadow: 0 10px 30px rgba(0,0,0,.22); }
.floating-action { position: relative; width: 62px; height: 68px; display: grid; place-items: center; }
.floating-action:first-child { border-radius: 17px 0 0; }
.floating-action:last-child { border-radius: 0 0 0 17px; }
.floating-action img { width: 34px; height: 34px; object-fit: contain; }
.floating-action-events { background: var(--red); }
.floating-action-cinema { background: #ffdd27; }
.floating-action-brands { background: #9bdb00; }
.floating-tooltip { position: absolute; top: 50%; right: calc(100% + 10px); padding: 7px 10px; color: var(--white); background: var(--charcoal); border-radius: 7px; opacity: 0; visibility: hidden; font-size: .75rem; font-weight: 800; white-space: nowrap; transform: translate(8px,-50%); transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
.floating-action:hover .floating-tooltip, .floating-action:focus .floating-tooltip, .floating-whatsapp:hover .floating-tooltip, .floating-whatsapp:focus .floating-tooltip { opacity: 1; visibility: visible; transform: translate(0,-50%); }
.floating-whatsapp { position: fixed; z-index: 901; right: 20px; bottom: 24px; width: 74px; height: 74px; display: grid; place-items: center; border: 3px solid rgba(255,255,255,.92); border-radius: 50%; background: #24cf32; box-shadow: 0 9px 25px rgba(0,0,0,.3); transition: transform .2s ease, background .2s ease; }
.floating-whatsapp:hover { background: #12b623; transform: translateY(-4px) scale(1.03); }
.floating-whatsapp img { width: 39px; height: 39px; object-fit: contain; }

.site-footer { color: #d8dbdc; background: #191d20; }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 45px; padding-block: 70px; }
.footer-logo { width: 110px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-grid h2 { margin-bottom: 18px; color: var(--white); font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; }
.footer-grid p, .footer-grid li { font-size: .9rem; }
.footer-links { padding: 0; margin: 0; list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-grid a:hover { color: var(--yellow); }
.social-links { display: flex; flex-wrap: wrap; gap: 10px; }
.social-links a { padding: 7px 12px; border: 1px solid #4a5054; border-radius: 999px; font-size: .78rem; }
.footer-bottom { padding: 20px 0; color: #92989c; border-top: 1px solid #34393d; font-size: .76rem; }

@media (max-width: 1020px) {
  .topbar { display: none; }
  .header-inner { min-height: 76px; }
  .brand img { width: 86px; }
  .nav-toggle { display: block; margin-left: auto; }
  .header-cta { display: none; }
  .primary-navigation { position: fixed; z-index: 999; inset: 76px 0 0; display: none; padding: 34px 28px; margin: 0; background: var(--white); }
  .primary-navigation.is-open { display: block; }
  .menu { display: block; }
  .menu a { padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .menu a::after { display: none; }
  .feature-grid, .service-grid { grid-template-columns: repeat(2, 1fr); }
  .movie-grid, .brand-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .parking-grid { grid-template-columns: repeat(2, 1fr); }
  .parking-intro { grid-column: 1 / -1; max-width: 720px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .global-rate-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .global-hours { grid-column: 1 / -1; grid-row: 1; }
  .global-parking-legal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .global-policy-links { grid-column: 1 / -1; grid-template-columns: repeat(3, 1fr); }
  .services-about-grid, .brand-events-grid, .mass-grid, .administrative-grid { grid-template-columns: 1fr; }
  .services-about-grid { gap: 44px; }
  .mass-grid { gap: 38px; }
}

@media (max-width: 760px) {
  :root { --container: min(100% - 28px, 1180px); }
  body { font-size: 16px; }
  .section { padding-block: 72px; }
  .hero { min-height: 720px; }
  .hero-content { padding-block: 90px 260px; }
  .hero h1, .hero h2 { font-size: clamp(2.5rem, 12vw, 4rem); }
  .hero-carousel-controls { bottom: 184px; justify-content: center; }
  .hero-facts { grid-template-columns: repeat(2, 1fr); }
  .hero-facts div { padding: 16px; }
  .hero-facts div:nth-child(2) { border-right: 0; }
  .hero-facts div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .notice-grid, .parking-grid, .rates-wide, .facturas-grid, .contact-grid, .brand-detail, .visit-grid { grid-template-columns: 1fr; }
  .notice-card + .notice-card { border-top: 1px solid rgba(34,39,43,.2); border-left: 0; }
  .feature-grid, .service-grid, .event-grid { grid-template-columns: 1fr; }
  .legacy-service-grid, .global-rate-grid, .global-parking-legal-grid { grid-template-columns: 1fr; }
  .event-service-grid { grid-template-columns: 1fr; }
  .services-mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-mosaic .mosaic-wide { grid-column: 1 / -1; }
  .bank-logo-grid { grid-template-columns: repeat(2, 1fr); }
  .global-hours, .global-policy-links { grid-column: auto; }
  .global-policy-links { grid-template-columns: 1fr; }
  .legacy-services-layout { justify-content: center; }
  .legacy-services-shade { background: rgba(18,22,24,.3); }
  .services-contact-strip .container { align-items: flex-start; flex-direction: column; }
  .movie-grid, .brand-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .heading-row, .cinema-footer { align-items: flex-start; flex-direction: column; }
  .visit-grid { gap: 36px; }
  .visit-image img { min-height: 300px; }
  .page-hero { padding-block: 65px; }
  .visual-page-hero { min-height: 540px; padding-block: 52px; }
  .page-hero-card { max-width: 92%; }
  .directory-tools { margin-top: -24px; padding: 20px; }
  .brand-detail { gap: 35px; }
  .footer-grid { gap: 30px; }
  .floating-action { width: 52px; height: 57px; }
  .floating-action img { width: 29px; height: 29px; }
  .floating-whatsapp { right: 13px; bottom: 14px; width: 64px; height: 64px; }
}

@media (max-width: 480px) {
  .hero { min-height: 780px; }
  .hero-content { padding-block: 76px 300px; }
  .hero-carousel-controls { bottom: 220px; }
  .carousel-arrow { display: none; }
  .hero-actions .button, .visit-actions .button { width: 100%; }
  .movie-grid, .brand-grid, .footer-grid { grid-template-columns: 1fr; }
  .movie-card { display: grid; grid-template-columns: 115px 1fr; }
  .movie-poster { aspect-ratio: auto; min-height: 100%; }
  .movie-body { padding: 17px; }
  .movie-times { grid-template-columns: 1fr; }
  .category-filters { flex-wrap: nowrap; padding-bottom: 8px; overflow-x: auto; }
  .category-filters button { white-space: nowrap; }
  .legacy-services-hero { min-height: 620px; }
  .legacy-services-panel { padding: 27px; }
  .event-benefits, .services-mosaic { grid-template-columns: 1fr; }
  .services-mosaic .mosaic-wide { grid-column: auto; }
  .services-mosaic > a, .services-mosaic-logo, .services-mosaic .mosaic-wide { min-height: 250px; }
  .brand-events-copy dl > div { grid-template-columns: 1fr; gap: 2px; }
  .mass-image img { min-height: 300px; }
  .global-parking-main { padding-block: 54px; }
  .global-rate-column, .global-hours { padding: 21px; }
  .floating-actions { top: auto; right: 11px; bottom: 91px; flex-direction: row; border-radius: 14px; }
  .floating-action { width: 48px; height: 48px; }
  .floating-action:first-child { border-radius: 14px 0 0 14px; }
  .floating-action:last-child { border-radius: 0 14px 14px 0; }
  .floating-tooltip { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .hero-slide-image, .page-hero-image { transform: none !important; }
  .legacy-services-image { transform: none !important; }
  .has-reveal-effects .reveal-card { opacity: 1; transform: none; }
}
