:root {
  --plum: #190020;
  --plum-soft: #2d123f;
  --sun: #ffb238;
  --sky: #008dd5;
  --green: #2f9e69;
  --surface: #f7f8f9;
  --surface-strong: #e8eaec;
  --ink: #191c1d;
  --muted: #5f6268;
  --line: rgba(25, 28, 29, .12);
  --shadow: 0 10px 30px rgba(20, 24, 28, .08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html {
  scroll-padding-top: 96px;
}

body {
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: #fff;
  letter-spacing: 0;
}

a { text-decoration: none; }

.nav-link,
.btn,
.agenda-link,
.instagram-link,
.hero-control {
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    background-color .22s ease,
    color .22s ease,
    border-color .22s ease,
    opacity .22s ease;
}

.nav-link:hover,
.agenda-link:hover,
.instagram-link:hover,
.btn:hover,
.hero-control:hover {
  transform: translateY(-1px);
}

.nav-link:active,
.agenda-link:active,
.instagram-link:active,
.btn:active,
.hero-control:active,
.is-link-pressed {
  transform: translateY(0) scale(.985);
  opacity: .94;
}

.reveal-target {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .65s ease,
    transform .65s ease;
}

.reveal-target.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

body.is-scrolling .hero-media,
body.is-scrolling .agenda-image,
body.is-scrolling .agenda-side-image {
  transition-duration: .08s;
}

.glass-nav {
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(255, 255, 255, .7);
  box-shadow: 0 4px 26px rgba(0, 0, 0, .06);
  backdrop-filter: blur(14px);
}

.brand-logo {
  width: 136px;
  height: auto;
}

.nav-link {
  color: var(--plum);
  font-size: .92rem;
  font-weight: 700;
}

.nav-link:hover,
.nav-link.active { color: var(--sky); }

.btn {
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-weight: 800;
}

.btn-primary {
  --bs-btn-bg: var(--plum);
  --bs-btn-border-color: var(--plum);
  --bs-btn-hover-bg: #31053f;
  --bs-btn-hover-border-color: #31053f;
}

.btn-accent {
  --bs-btn-color: #211400;
  --bs-btn-bg: var(--sun);
  --bs-btn-border-color: var(--sun);
  --bs-btn-hover-color: #211400;
  --bs-btn-hover-bg: #ffc45f;
  --bs-btn-hover-border-color: #ffc45f;
}

.hero-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
  min-height: 100vh;
}

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

.hero-media {
  background-image: url("../img/shopping-fachada.jpg");
  background-position: center;
  background-size: cover;
  --parallax-y: 0px;
  --media-scale: 1.03;
  transform: translate3d(0, var(--parallax-y), 0) scale(var(--media-scale));
  transition: transform .2s ease-out;
  will-change: transform;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(14, 0, 28, .9) 0%, rgba(14, 0, 28, .62) 48%, rgba(14, 0, 28, .2) 100%),
    linear-gradient(0deg, rgba(14, 0, 28, .75) 0%, transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-row {
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  justify-content: center;
}

.eyebrow,
.section-kicker,
.panel-label {
  color: var(--sun);
  display: inline-block;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: .8rem;
  text-transform: uppercase;
}

.hero-section h1 {
  font-size: clamp(2rem, 5vw, 4.8rem);
  font-weight: 900;
  line-height: 1;
  max-width: 680px;
}

.hero-title {
  color: #fff;
  font-size: clamp(1.9rem, 4.6vw, 4.2rem);
  font-weight: 900;
  line-height: 1;
  max-width: 680px;
}

.lead {
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  max-width: 620px;
}

.hero-panel {
  background: rgba(255, 255, 255, .92);
  border-radius: 8px;
  color: var(--plum);
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.hero-panel strong,
.hero-panel small { display: block; }

.hero-panel small { color: var(--muted); }

.hero-control {
  align-items: center;
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 1.4rem;
  height: 52px;
  justify-content: center;
  width: 52px;
}

.hero-indicators {
  bottom: 1.6rem;
  gap: .5rem;
}

.hero-indicators [data-bs-target] {
  background-color: #fff;
  border: 0;
  border-radius: 999px;
  height: 10px;
  margin: 0;
  opacity: .45;
  width: 10px;
}

.hero-indicators .active { opacity: 1; }

.section-pad { padding: 88px 0; }

.surface-section { background: var(--surface); }

.dark-section {
  background: var(--plum);
  color: #fff;
}

.section-heading { max-width: 640px; }

h2 {
  color: var(--plum);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
}

.dark-section h2,
.cinema-section h2 { color: #fff; }

p { color: var(--muted); font-size: 1.05rem; line-height: 1.7; }

.dark-section p,
.cinema-section p { color: rgba(255, 255, 255, .78); }

.stat-card,
.service-card,
.store-card,
.contact-card,
.instagram-card {
  border-radius: 8px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.stat-card {
  background: #fff;
  border: 1px solid var(--line);
  min-height: 132px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.stat-card strong {
  color: var(--plum);
  display: block;
  font-size: 2rem;
  font-weight: 900;
}

.stat-card span {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.accent-blue { border-top: 5px solid var(--sky); }
.accent-green { border-top: 5px solid var(--green); }

.promo-strip {
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: block;
  height: auto;
  max-width: 100%;
}

.instagram-section {
  background:
    radial-gradient(circle at top right, rgba(255, 178, 56, .12), transparent 26%),
    linear-gradient(180deg, #fff 0%, #f7f8f9 100%);
}

.instagram-link {
  --bs-btn-color: var(--plum);
  --bs-btn-border-color: var(--plum);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--plum);
  --bs-btn-hover-border-color: var(--plum);
  align-items: center;
  font-weight: 900;
  gap: .45rem;
  min-height: 52px;
  padding-inline: 1.1rem;
}

.instagram-link i {
  color: #d62976;
  font-size: 1.2rem;
}

.instagram-grid {
  align-items: stretch;
}

.instagram-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.instagram-media {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, rgba(25, 0, 32, .08), rgba(255, 178, 56, .12));
  overflow: hidden;
}

.instagram-media img {
  display: block;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  width: 100%;
}

.instagram-body {
  display: grid;
  gap: .85rem;
  padding: 1.25rem;
}

.instagram-meta {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.instagram-meta span {
  color: var(--sun);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.instagram-meta small {
  color: var(--muted);
  font-weight: 700;
}

.instagram-body h3 {
  color: var(--plum);
  font-size: 1.3rem;
  font-weight: 900;
  margin: 0;
}

.instagram-body p {
  font-size: .95rem;
  margin: 0;
}

.agenda-section {
  background:
    radial-gradient(circle at top right, rgba(255, 178, 56, .14), transparent 24%),
    linear-gradient(180deg, #fff 0%, #f7f8f9 100%);
}

.agenda-link {
  color: var(--secondary, #835500);
  display: inline-flex;
  font-weight: 800;
  gap: .45rem;
  white-space: nowrap;
}

.agenda-feature {
  border-radius: 8px;
  min-height: 100%;
  overflow: hidden;
  position: relative;
  will-change: transform;
}

.agenda-large {
  box-shadow: var(--shadow);
  min-height: 520px;
}

.agenda-row {
  align-items: stretch;
}

.agenda-row > [class*="col-"] {
  display: flex;
}

.agenda-image,
.agenda-side-overlay {
  inset: 0;
  position: absolute;
}

.agenda-image {
  background-position: center;
  background-size: cover;
  --parallax-y: 0px;
  --media-scale: 1;
  transform: translate3d(0, var(--parallax-y), 0) scale(var(--media-scale));
  transition: transform .6s ease;
  will-change: transform;
}

.agenda-feature:hover .agenda-image,
.agenda-feature:hover .agenda-side-image {
  --media-scale: 1.04;
}

.agenda-content {
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
  min-height: 100%;
  padding: 2rem;
  position: relative;
  z-index: 2;
  width: 100%;
}

.agenda-large .agenda-content {
  justify-content: center;
  gap: 1.25rem;
  padding-block: 3rem;
}

.agenda-side .agenda-content {
  justify-content: center;
  gap: 1rem;
  padding-block: 3rem;
}

.agenda-content h3 {
  font-size: clamp(1.85rem, 3.2vw, 3.25rem);
  font-weight: 900;
  line-height: 1.02;
  margin-bottom: .8rem;
}

.agenda-side .agenda-content h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}

.agenda-content p {
  color: rgba(255, 255, 255, .88);
  max-width: 620px;
}

.agenda-badge {
  align-self: flex-start;
  background: transparent;
  border: 2px solid var(--sun);
  border-radius: 999px;
  color: #fff;
  font-size: .75rem;
  font-weight: 900;
  margin-bottom: 1rem;
  padding: .45rem .8rem;
  text-transform: uppercase;
}

.agenda-badge.danger {
  background: #cb2f2f;
  color: #fff;
}

.agenda-layout {
  align-items: center;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: minmax(0, 1fr) auto;
}

.agenda-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
}

.agenda-copy .btn {
  margin-top: .5rem;
}

.agenda-date-card {
  align-items: center;
  align-self: center;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 138px;
  padding: 1.2rem .9rem;
  text-align: center;
}

.agenda-date-card span,
.agenda-date-card small {
  color: rgba(255, 255, 255, .9);
  display: block;
  font-weight: 800;
  text-transform: uppercase;
}

.agenda-date-card span {
  font-size: .75rem;
  letter-spacing: .08em;
  margin-bottom: .4rem;
}

.agenda-date-card strong {
  color: #fff;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: .9;
}

.agenda-date-card small {
  font-size: 1.15rem;
  margin-top: .2rem;
  letter-spacing: .08em;
}

.agenda-meta {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 1.4rem;
}

.agenda-meta span {
  color: rgba(255, 255, 255, .74);
  font-weight: 700;
}

.agenda-action {
  align-items: center;
  background: var(--sun);
  border-radius: 999px;
  color: #271900;
  display: inline-flex;
  font-size: 1.2rem;
  height: 52px;
  justify-content: center;
  width: 52px;
}

.agenda-side {
  min-height: 520px;
}

.agenda-side-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  --parallax-y: 0px;
  --media-scale: 1;
  transform: translate3d(0, var(--parallax-y), 0) scale(var(--media-scale));
  transition: transform .6s ease;
  will-change: transform;
  width: 100%;
}

.agenda-side-overlay {
  background: linear-gradient(180deg, rgba(5, 6, 8, .1), rgba(5, 6, 8, .92));
}

.service-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  height: 100%;
  padding: 1.4rem;
}

.service-card:hover,
.store-card:hover {
  box-shadow: 0 16px 38px rgba(0, 0, 0, .12);
  transform: translateY(-3px);
}

.service-card i {
  color: var(--sun);
  font-size: 1.55rem;
}

.service-card h3,
.store-card h3,
.hours-box h3,
.site-footer h3 {
  font-size: 1rem;
  font-weight: 900;
  margin: .9rem 0 .45rem;
}

.service-card p { font-size: .95rem; margin: 0; }

.search-box { position: relative; }

.search-box i {
  color: var(--muted);
  left: 1rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.search-box .form-control {
  border: 1px solid var(--line);
  border-radius: 8px;
  height: 54px;
  padding-left: 2.7rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--plum);
  box-shadow: 0 0 0 .25rem rgba(113, 83, 131, .16);
}

.category-scroll {
  display: flex;
  gap: .65rem;
  overflow-x: auto;
  padding-bottom: .3rem;
}

.chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--plum);
  flex: 0 0 auto;
  font-size: .78rem;
  font-weight: 900;
  padding: .62rem 1rem;
  text-transform: uppercase;
}

.chip.active {
  background: var(--plum);
  border-color: var(--plum);
  color: #fff;
}

.store-card {
  background: #fff;
  border: 1px solid transparent;
  box-shadow: 0 4px 22px rgba(0, 0, 0, .05);
  height: 100%;
  padding: 1rem;
}

.store-logo {
  align-items: center;
  aspect-ratio: 1;
  background: #101010;
  border-radius: 8px;
  color: #fff;
  display: flex;
  font-size: 1.05rem;
  font-weight: 900;
  justify-content: center;
  margin-bottom: 1rem;
  width: 100%;
}

.store-logo.image {
  background: #f6f7f8;
  border: 1px solid var(--line);
  overflow: hidden;
  padding: 1rem;
}

.store-logo.image img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.store-card p {
  font-size: .78rem;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
}

.store-card.orange .store-logo { background: #f6a41d; color: #4b2b00; }
.store-card.magenta .store-logo { background: #a81887; }
.store-card.black .store-logo { background: #050505; }
.store-card.teal .store-logo { background: #008a8f; }
.store-card.blue .store-logo { background: var(--sky); }
.store-card.green .store-logo { background: var(--green); }
.store-card.yellow .store-logo { background: #ffd449; color: #332300; }

.store-item.is-hidden { display: none; }

.store-carousel {
  position: relative;
}

.store-carousel.compact-mode .carousel-item {
  min-height: 0;
}

.store-compact-grid {
  margin-inline: auto;
  max-width: 920px;
  padding: 0 .25rem 3rem;
}

.store-carousel .carousel-inner {
  padding: 0 .25rem 3rem;
}

.store-carousel .carousel-item {
  transition: transform .5s ease, opacity .5s ease;
}

.store-carousel .carousel-control-prev,
.store-carousel .carousel-control-next {
  align-items: center;
  bottom: 0;
  opacity: 1;
  top: auto;
  width: auto;
}

.store-carousel .carousel-control-prev { left: auto; right: 3.5rem; }
.store-carousel .carousel-control-next { right: 0; }

.carousel-control-icon {
  align-items: center;
  background: var(--plum);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 1.1rem;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.store-carousel .carousel-indicators {
  bottom: 0;
  justify-content: flex-start;
  margin: 0;
}

.store-carousel .carousel-indicators [data-bs-target] {
  background-color: var(--plum);
}

.store-feature-slide {
  align-items: stretch;
  background: linear-gradient(135deg, #fff 0%, #f2f0f6 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  min-height: 420px;
  overflow: hidden;
  padding: 1.5rem;
}

.store-feature-copy {
  align-self: center;
  padding: 1rem;
}

.store-feature-copy h3 {
  color: var(--plum);
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.02;
  margin: 0 0 .8rem;
}

.store-feature-copy p {
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.store-feature-art {
  border-radius: 8px;
  overflow: hidden;
}

.store-feature-image {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.food-carousel {
  position: relative;
}

.food-carousel .carousel-inner {
  padding: 0 .25rem 3rem;
}

.food-carousel .carousel-item {
  transition: transform .5s ease, opacity .5s ease;
}

.food-carousel .carousel-control-prev,
.food-carousel .carousel-control-next {
  bottom: 0;
  opacity: 1;
  top: auto;
  width: auto;
}

.food-carousel .carousel-control-prev { left: auto; right: 3.5rem; }
.food-carousel .carousel-control-next { right: 0; }

.food-carousel .carousel-indicators {
  bottom: 0;
  justify-content: flex-start;
  margin: 0;
}

.food-carousel .carousel-indicators [data-bs-target] {
  background-color: var(--plum);
}

.food-card {
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 1rem;
  height: 100%;
  min-height: 154px;
  padding: 1.15rem;
}

.food-card-logo {
  align-items: center;
  aspect-ratio: 1;
  background: #f8f4fb;
  border: 1px solid rgba(25, 0, 32, .08);
  border-radius: 14px;
  display: inline-flex;
  flex: 0 0 auto;
  height: 64px;
  justify-content: center;
  overflow: hidden;
  padding: .55rem;
  width: 64px;
}

.food-card-logo img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.food-card-kicker {
  color: var(--sun);
  display: block;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: .35rem;
  text-transform: uppercase;
}

.food-card h3 {
  color: var(--plum);
  font-size: 1.1rem;
  font-weight: 900;
  margin: 0 0 .35rem;
}

.food-card p {
  font-size: .92rem;
  margin: 0;
}

.cinema-section {
  color: #fff;
  min-height: 76vh;
  overflow: hidden;
  position: relative;
}

.cinema-bg,
.cinema-shade {
  position: absolute;
  inset: 0;
}

.cinema-bg {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.cinema-shade {
  background: linear-gradient(90deg, rgba(8, 0, 18, .94), rgba(8, 0, 18, .6) 48%, rgba(8, 0, 18, .08));
}

.cinema-content {
  position: relative;
  z-index: 2;
}

.min-vh-75 { min-height: 76vh; }

.section-kicker.light { color: #fff; }

.cinema-content .row {
  min-height: 76vh;
}

.cinema-content .col-lg-7 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cinema-content .col-lg-7 > * {
  max-width: 640px;
}

.contact-card,
.address-box,
.hours-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.info-stack {
  display: grid;
  gap: 1rem;
}

.address-box {
  align-items: center;
  background: var(--plum-soft);
  color: #fff;
  display: grid;
  gap: 1rem;
  grid-template-columns: auto 1fr auto;
}

.address-box i {
  color: var(--sun);
  font-size: 1.6rem;
}

.address-box span,
.address-box strong,
.address-box small { display: block; }

.address-box small { color: rgba(255, 255, 255, .7); }

.map-btn {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
  color: var(--plum-soft);
  display: inline-flex;
  font-weight: 900;
  gap: .6rem;
  justify-content: center;
  min-width: 136px;
  padding: .85rem 1.1rem;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.map-btn i {
  color: var(--sun);
  font-size: 1.05rem;
}

.map-btn:hover {
  background: #f7f2ff;
  box-shadow: 0 8px 22px rgba(25, 0, 32, .18);
  color: var(--plum);
  transform: translateY(-1px);
}

.hours-box {
  background: var(--sun);
  color: #211400;
}

.hours-header {
  align-items: center;
  display: flex;
  gap: .9rem;
  margin-bottom: 1.1rem;
}

.hours-header > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hours-icon {
  align-items: center;
  background: rgba(255, 255, 255, .28);
  border-radius: 14px;
  color: #211400;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 1.15rem;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.hours-header h3 {
  color: #211400;
  font-size: 1.4rem;
  margin: 0;
}

.hours-list {
  display: grid;
  gap: .7rem;
}

.hours-row {
  align-items: baseline;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(33, 20, 0, .08);
  border-radius: 8px;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: .85rem 1rem;
}

.hours-row span {
  font-weight: 800;
}

.hours-row strong {
  font-weight: 900;
  text-align: right;
}

.hours-footer {
  align-items: center;
  border-top: 1px solid rgba(33, 20, 0, .12);
  display: flex;
  gap: .65rem;
  margin-top: 1rem;
  padding-top: 1rem;
}

.hours-footer i {
  font-size: 1rem;
}

.hours-footer-icon {
  align-items: center;
  background: rgba(255, 255, 255, .28);
  border-radius: 14px;
  color: #211400;
  display: inline-flex;
  flex: 0 0 auto;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.hours-footer a {
  color: #211400;
  font-weight: 900;
}

.commercial-section {
  background:
    radial-gradient(circle at top right, rgba(255, 178, 56, .18), transparent 24%),
    linear-gradient(180deg, #fff 0%, #f7f8f9 100%);
}

.commercial-cta {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  padding: 1.6rem;
}

.commercial-cta h2 {
  margin-bottom: .4rem;
  max-width: 720px;
}

.commercial-cta p {
  margin-bottom: 0;
  max-width: 760px;
}

.commercial-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: flex-end;
}

.site-footer {
  background: #08000f;
  color: #fff;
  padding: 56px 0 24px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, .72);
  display: block;
}

.site-footer a { margin-bottom: .45rem; }

.site-footer a:hover { color: #fff; }

.footer-logo {
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
  max-width: 142px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .5);
  font-size: .82rem;
  margin-top: 2rem;
  padding-top: 1.2rem;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    margin-top: .8rem;
    padding: 1rem;
  }

  .hero-section h1 { max-width: 520px; }
  .hero-title { max-width: 520px; }
  .section-pad { padding: 64px 0; }
  .address-box { grid-template-columns: 1fr; }
  .address-box > i { display: none; }
  .commercial-cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .commercial-actions {
    justify-content: flex-start;
  }

  .instagram-link {
    margin-top: .2rem;
  }
}

@media (max-width: 575.98px) {
  .brand-logo { width: 118px; }
  .hero-panel { margin-top: 1rem; }
  .hero-control {
    height: 44px;
    width: 44px;
  }
  .hero-indicators { bottom: 1rem; }
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(14, 0, 28, .92), rgba(14, 0, 28, .72)),
      linear-gradient(0deg, rgba(14, 0, 28, .78), transparent 48%);
  }
  .agenda-large,
  .agenda-side { min-height: 420px; }
  .agenda-content { padding: 1.35rem; }
  .agenda-layout {
    grid-template-columns: 1fr;
  }
  .agenda-date-card {
    justify-self: flex-start;
    min-width: 120px;
  }
  .store-carousel .carousel-inner {
    padding-bottom: 3.5rem;
  }
  .store-feature-slide {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hours-row {
    flex-direction: column;
    gap: .25rem;
  }
  .food-card {
    min-height: auto;
  }

  .food-card-logo {
    height: 56px;
    width: 56px;
  }

  .commercial-cta {
    padding: 1.25rem;
  }

  .instagram-body {
    padding: 1rem;
  }

  .instagram-media {
    aspect-ratio: 4 / 5;
  }

  .cinema-content .row {
    min-height: 68vh;
  }
  .cinema-content .col-lg-7 {
    align-items: flex-start;
    justify-content: flex-start;
  }
}

@media (max-width: 767.98px) {
  .food-carousel .carousel-inner {
    padding-bottom: 3.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .reveal-target,
  .reveal-target.is-revealed,
  .hero-media,
  .agenda-image,
  .agenda-side-image,
  .store-feature-image {
    transition: none !important;
    transform: none !important;
  }
}
